@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.eot');
    src: url('../fonts/Mulish-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mulish-Regular.woff2') format('woff2'),
        url('../fonts/Mulish-Regular.woff') format('woff'),
        url('../fonts/Mulish-Regular.ttf') format('truetype');
    font-weight: normal; 
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/FreightNeoPro-Book.eot');
    src: url('../fonts/FreightNeoPro-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FreightNeoPro-Book.woff2') format('woff2'),
        url('../fonts/FreightNeoPro-Book.woff') format('woff'),
        url('../fonts/FreightNeoPro-Book.ttf') format('truetype');
    font-weight: bold; 
    font-display: swap;
}

::-webkit-scrollbar{
  width:6px;
}



body {
  font-family: "Mulish";
  max-width: 1920px;
  --color: #bb986b;
  font-weight: normal;
  margin: 0 auto;
  background: #f2efe7;
}
.container {
  width: 1480px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 20px 0;
}
#header .nav {
  max-width: 1920px;
  margin: auto;
}
#header .nav .ui.menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 4.2%;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
}
#header .nav .ui.menu .logo img{
  filter: brightness(0) invert(1);
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 16px;
  margin: 0 32px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: 0px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  /*width: 100%;*/
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: var(--color);
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .yuy span {
  font-size: 16px;
  color: white;
}
#header .nav .ui.menu .yuy span img {
  margin-right: 10px;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .more {
  min-width: unset;
  height: 51px;
  line-height: 51px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 25px;
}
#header.active {
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#header.active .nav .ui.menu .yuy span,
#header.active .nav .ui.menu .menu-box ul.menu > li {
  color: black;
}
#header.active .nav .ui.menu .logo img{
  filter: brightness(1) invert(0);
}
#header.active .nav .ui.menu .h-search img,
#header.active .nav .ui.menu .yuy span img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.more {
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  height: 55px;
  line-height: 55px;
  background-color: var(--color);
  color: white;
  border-radius: 5px;
  border: 2px solid transparent;
  min-width: 200px;
  text-align: center;
  padding: 0 15px;
}
.more:hover {
  background-color: transparent;
  border-color: var(--color);
  color: var(--color);
}
@-webkit-keyframes ks1 {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks1 {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks1 {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes jdt2 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes jdt2 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
@keyframes jdt2 {
  0% {
    stroke-dasharray: 0 190;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 190 0;
    stroke-dashoffset: 0;
  }
}
#banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  /*background: url(../images/header-bg.png) no-repeat left top;*/
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content h2 {
  line-height: 1.2;
  color: white;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.21);
}
#banner .slickBtn div {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  background-color: transparent;
  opacity: 0.5;
}
#banner .slickBtn div img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: unset;
}
#banner .slickBtn div.prev {
  left: 5%;
  right: auto;
}
#banner .slickBtn div.prev img {
  right: 28px;
}
#banner .slickBtn div.next {
  right: 5%;
  left: auto;
}
#banner .slickBtn div.next img {
  left: 26px;
  top: 22px;
}
#banner .slickBtn div:hover {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .undetected-fire__videos-wrapper {
    -webkit-clip-path: inset(0 0 0 0 round var(--clip-path-border));
    clip-path: inset(0 0 0 0 round var(--clip-path-border));
  }
}
.undetected-fire__videos-wrapper {
  --clip-path-border: 1000px;
}
.undetected-fire__videos-wrapper {
  z-index: 3;
  width: 57%;
  min-width: 57%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.undetected-fire__iframe {
  z-index: 2;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  inset: 0% auto auto 50%;
}
#index-body {
  background-color: #f2efe7;
}
#index-body .i-category {
  background-color: #f2efe7;
  overflow: hidden;
  z-index: 4;
  position: relative;
}
#index-body .i-category .top .txt {
  width: 50%;
  line-height: 28px;
}
#index-body .i-category ul li .box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
#index-body .i-category ul li .box .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 50px;
  text-align: center;
  color: white;
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(rgba(0, 0, 0, 0.6)), to(transparent));
  background: -webkit-linear-gradient(bottom, black, rgba(0, 0, 0, 0.6), transparent);
  background: -moz-linear-gradient(bottom, black, rgba(0, 0, 0, 0.6), transparent);
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.6), transparent);
}
#index-body .i-category ul li .box .content .more {
  background-color: white;
  color: black;
}
#index-body .i-category ul li .box:hover .content .more {
  background-color: var(--color);
  color: white;
}
#index-body .i-category .slickBtn div {
  width: 94px;
  height: 94px;
  background-color: white;
  color: var(--color);
  font-size: 28px;
}
#index-body .i-category .slickBtn div:hover {
  background-color: var(--color);
  color: white;
}
#index-body .i-about {
  position: relative;
}
#index-body .i-about .bg1 {
  position: absolute;
  left: 0;
  top: -6%;
}
#index-body .i-about .bg2 {
  position: absolute;
  right: 0;
  top: 7%;
}
#index-body .i-about .top {
  position: relative;
}
#index-body .i-about .top .h5 {
  color: #ab7d41;
}
#index-body .i-about .top .content {
  line-height: 28px;
  opacity: 0.8;
}
#index-body .i-about .img .ui.container {
  width: 100%;
  padding: 0 4.2%;
}
#index-body .i-about .img .img2 {
  border-radius: 71px;
  overflow: hidden;
  margin: auto;
  position: relative;
}
#index-body .i-about .img .img2 #video{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 1;
   -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#index-body .i-about .img .img2 video{
  width: 100%; 
  /*position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;*/
  opacity: 0;
   -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 3;
    position: relative;
    cursor: pointer;
}
#index-body .i-about .img .img2 video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.4) !important;
  background: rgba(0, 0, 0, 0) !important;
  opacity: 1 !important;
}
/* 必须一起加，否则新版浏览器不生效 */
#index-body .i-about .img .img2 video::-webkit-media-controls {
  background-color: transparent !important;
}
#index-body .i-about .img .img2 video::-webkit-media-controls-enclosure {
  background-color: transparent !important;
}
/* 进度条圆点变小 */
/*#index-body .i-about .img .img2 video::-webkit-media-controls-timeline-thumb {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background: red !important;
  transform: scale(0.3) !important;
}*/

/* hover 时稍微放大，好拖拽 */
/*#index-body .i-about .img .img2 video::-webkit-media-controls-timeline-thumb:hover {
  transform: scale(1.2);
}*/

/* 轨道也可以微调 */
/*#index-body .i-about .img .img2 video::-webkit-media-controls-timeline {
  height: 4px !important;
}*/
#index-body .i-about .img .img2 .play_btn{
  -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 5;
    cursor: pointer;
}
#index-body .i-about .img .img2 .play_btn img{
   -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#index-body .i-about .img .img2 .play_btn .play_img2{
  opacity: 0;
}
#index-body .i-about .img .img2 .play_btn.active .play_img2{
  opacity: 1;
}
#index-body .i-about .img .img2 .play_btn.active .play_img1{
  opacity: 0;
}
#index-body .i-about .play {
  cursor: pointer;
}
#index-body .i-about .play:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks1 3s infinite;
  -moz-animation: ks1 3s infinite;
  animation: ks1 3s infinite;
  display: block;
  z-index: -1;
}
#index-body .i-about .play:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks1 3s infinite;
  -moz-animation: ks1 3s infinite;
  animation: ks1 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
#index-body .i-about .bottom ul {
  position: relative;
}
#index-body .i-about .bottom ul .num {
  position: relative;
  z-index: 1;
}
#index-body .i-about .bottom ul .num::after {
  content: "";
  position: absolute;
  left: -55px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 137px;
  height: 137px;
  background-color: #f1e3ce;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  border-radius: 50%;
}
#index-body .i-about .bottom ul p {
  color: rgba(0, 0, 0, 0.8);
  margin-top: 11px;
}
#index-body .i-about .bottom ul p img {
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
#index-body .i-about .bottom ul::after {
  content: "";
  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%);
  width: 1px;
  height: 155px;
  background-color: #dcdad2;
}
#index-body .i-about .bottom li:hover .num::after {
  width: 160px;
  height: 160px;
  background-color: #f0d2a8;
}
#index-body .i-why {
  position: relative;
}
#index-body .i-why ul.bg li {
  position: relative;
  height: 800px;
  background-attachment: fixed;
  background-size: cover;
}
#index-body .i-why ul.bg li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .i-why ul.bg li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/why-bg.png) no-repeat;
  background-size: 100% 100%;
}
#index-body .i-why .left {
  position: absolute;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45%;
  padding-left: 13%;
}
#index-body .i-why .left .i-title {
  color: white;
  margin-bottom: 220px;
}
#index-body .i-why .left ul li .text {
  color: white;
  margin-bottom: 30px;
}
#index-body .i-why .right ul li {
  position: absolute;
  z-index: 5;
  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;
}
#index-body .i-why .right ul li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: white;
  position: relative;
  display: block;
}
#index-body .i-why .right ul li i svg {
  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%);
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .i-why .right ul li i svg .jdt2 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 32px;
  -moz-transform-origin: 32px;
  -ms-transform-origin: 32px;
  transform-origin: 32px;
}
#index-body .i-why .right ul li span {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  margin-left: 35px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}
#index-body .i-why .right ul li:nth-child(1) {
  top: 50%;
  left: -webkit-calc(100% * (1196 / 1920));
  left: -moz-calc(100% * (1196 / 1920));
  left: calc(100% * (1196 / 1920));
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
}
#index-body .i-why .right ul li:nth-child(2) {
  top: 50%;
  left: -webkit-calc(100% * (1211 / 1920));
  left: -moz-calc(100% * (1211 / 1920));
  left: calc(100% * (1211 / 1920));
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}
#index-body .i-why .right ul li:nth-child(3) {
  top: 50%;
  left: -webkit-calc(100% * (1214 / 1920));
  left: -moz-calc(100% * (1214 / 1920));
  left: calc(100% * (1214 / 1920));
}
#index-body .i-why .right ul li:nth-child(4) {
  top: 50%;
  left: -webkit-calc(100% * (1205 / 1920));
  left: -moz-calc(100% * (1205 / 1920));
  left: calc(100% * (1205 / 1920));
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}
#index-body .i-why .right ul li:nth-child(5) {
  top: 50%;
  left: -webkit-calc(100% * (1185 / 1920));
  left: -moz-calc(100% * (1185 / 1920));
  left: calc(100% * (1185 / 1920));
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}
#index-body .i-why .right ul li.active i svg {
  opacity: 1;
}
#index-body .i-why .right ul li.active i svg .jdt2 {
  -webkit-animation: jdt2 forwards 8.9s linear;
  -moz-animation: jdt2 forwards 8.9s linear;
  animation: jdt2 forwards 8.9s linear;
}
#index-body .i-why .right ul li.active span {
  color: white;
}
#index-body .init-4 .top .des {
  width: 60%;
  line-height: 28px;
}
#index-body .init-4 ul li {
  border-top: 1px solid #ddd4cd;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
#index-body .init-4 ul li .left .icon {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-width: 78px;
  text-align: center;
}
#index-body .init-4 ul li .right {
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33.3%;
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
#index-body .init-4 ul li .right .img {
  border-radius: 24px;
  overflow: hidden;
}
#index-body .init-4 ul li:last-child {
  border-bottom: 1px solid #ddd4cd;
}
#index-body .init-4 ul li:hover {
  background-color: var(--color);
  color: white;
}
#index-body .init-4 ul li:hover .left .icon img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .init-4 ul li:hover .right {
  opacity: 1;
  top: 50%;
}
#index-body .init-4 .more {
  padding: 0 30px;
}
#index-body .i-sus {
  /*height: 1000px;*/
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
}
#index-body .i-sus .ui.container {
  /*height: 100%;*/
  position: unset;
}
#index-body .i-sus .i-title span {
  display: inline-block;
}
.o2-wrap {
  background-position: 87% 0;
  background-size: 40%;
  bottom: 0;
  -webkit-clip-path: circle(60px at 56.5% 13.6%);
  clip-path: circle(60px at 56.5% 13.6%);
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  z-index: 10;
}
.cont-wrap[data-v-6b11053a] {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 3;
}
.etpo {
  height: 100%;
}
#index-body .i-sus .box {
  background-size: cover;
  width: 100%;
}
#index-body .i-sus .box .content {
  width: 65%;
  margin: auto;
  color: white;
}
#index-body .i-sus .box .content .line {
  width: 100%;
  height: 1px;
  background-color: white;
}
#index-body .i-sus .box .content ul li {
  position: relative;
  padding-left: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  padding-top: 19px;
  padding-bottom: 14px;
}
#index-body .i-sus .box .content ul li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 22px;
  width: 37px;
  height: 37px;
  background: url(../images/sel.png) no-repeat left top;
}
#index-body .i-sus .box .content ul li:last-child {
  border-bottom: none;
}
#index-body .i-news .txt a {
  text-decoration: underline;
}
#index-body .i-news ul li .title {
  line-height: 29px;
}
#index-body .i-news ul li .line {
  width: 100%;
  height: 1px;
  background-color: #d9d7cf;
}
#index-body .i-news ul li .time img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
#index-body .i-news ul li .img-box {
  border-radius: 24px;
  overflow: hidden;
}
#index-body .i-news .slickDots ul li {
  background-color: #e7dece;
  border: none;
}
#index-body .i-news .slickDots ul li.slick-active {
  background-color: var(--color);
}
#footer {
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
  color: white;
}
#footer .top {
  color: white;
}
#footer .line {
  height: 1px;
  width: -webkit-calc(100% + 300px);
  width: -moz-calc(100% + 300px);
  width: calc(100% + 300px);
  margin-left: -150px;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.1);
}
#footer .wrap .one {
  max-width: 335px;
}
#footer .wrap .one p {
  position: relative;
  padding-left: 35px;
  font-weight: 300;
  margin-bottom: 13px;
}
#footer .wrap .one p img {
  position: absolute;
  left: 0;
  top: 4px;
}
#footer .wrap ul li {
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 9px;
}
#footer .wrap ul li:hover {
  color: var(--color);
}
#footer .wrap .three ul li {
  position: relative;
  padding-left: 17px;
}
#footer .wrap .three ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
}
#footer .wrap .four {
  max-width: 430px;
}
#footer .wrap .four form {
  position: relative;
}
#footer .wrap .four form input,
#footer .wrap .four form textarea {
  width: 100%;
  background-color: white;
  color: black;
  border: none;
  height: 50px;
  margin-bottom: 13px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 18px;
}
#footer .wrap .four form textarea {
  padding: 10px 20px;
  height: 115px;
  margin-bottom: 0;
}
#footer .wrap .four form input[type="submit"] {
  width: auto;
  background-color: var(--color);
  color: white;
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 40px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 2px solid transparent;
  margin-bottom: 0;
}
#footer .wrap .four form input[type="submit"]:hover {
  border: 2px solid var(--color);
  color: var(--color);
  background-color: transparent;
}
#footer .f-copy {
  padding: 15px 0;
}
#footer .f-copy svg {
  width: auto;
  height: 26px;
  fill: white;
  vertical-align: middle;
}
#footer .f-copy .share a {
  display: inline-block;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 6px;
  font-size: 18px;
  color: black;
}
#footer .f-copy .share a:hover {
  background-color: var(--color);
  color: white;
}
@media screen and (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
  .font-18 {
      font-size: 18px;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li{
    font-size: 14px;
    margin: 0 12px;
  }
  .font-18 {
      font-size: 17px;
  }
  #header .nav .ui.menu .logo img{
    width: 150px;
  }
  #header .nav .ui.menu {
    padding: 0 15px;
  }
  #banner li .content {
    padding-left: 120px;
  }
  #index-body .i-category .slickBtn div {
    width: 60px;
    height: 60px;
  }
  #index-body .i-why .left {
    padding-left: 5%;
  }
  .font-84 {
    font-size: 60px;
  }
  #footer .wrap .four {
    max-width: 330px;
  }
}
@media screen and (max-width: 1250px) {
  
  #index-body .i-why ul.bg li {
    height: 620px;
  }
  #index-body .i-why .right ul li:nth-child(1) {
    left: -webkit-calc(100% * (1169 / 1920));
    left: -moz-calc(100% * (1169 / 1920));
    left: calc(100% * (1169 / 1920));
  }
  .font-84 {
    font-size: 49px;
  }
  .font-72 {
    font-size: 36px;
  }
  #index-body .i-sus .i-title img {
    vertical-align: middle;
  }
  #footer .wrap .one {
    max-width: 260px;
  }
  #footer .wrap ul li {
    font-size: 16px;
  }
  #footer .wrap .four {
    max-width: 260px;
  }
}
@media screen and (max-width: 1000px) {
  .font-18 {
      font-size: 16px;
  }
  #banner .slickBtn {
    display: none;
  }
  #banner::after {
    content: none;
  }
  #banner li .content {
    padding-left: 15px;
  }
  #index-body .i-category .top .txt {
    width: 100%;
  }
  #index-body .i-about .img .img2 {
    width: 100%;
  }
  #index-body .i-why .left .i-title {
    margin-bottom: 85px;
  }
  #index-body .i-why ul.bg li {
    height: 470px;
  }
  #index-body .i-about .bottom ul p {
    z-index: 3;
    position: relative;
  }
  #index-body .i-about .bottom ul .num::after {
    width: 80px;
    height: 80px;
    left: -30px;
  }
  #index-body .i-about .bottom ul li:hover .num::after {
    width: 100px;
    height: 100px;
  }
  #index-body .init-4 .top .des {
    width: 100%;
  }
  .font-84 {
    font-size: 35px;
  }
  #index-body .i-sus .i-title img {
    width: 60px;
  }
  #index-body .i-sus .box .content {
    width: 85%;
  }
  #index-body .i-sus .box .content ul li::after {
    width: 25px;
    height: 25px;
    background-size: contain;
  }
  #index-body .i-sus .box .content ul li {
    padding-left: 53px;
  }
  #footer .wrap .two,
  #footer .wrap .three {
    display: none;
  }
  .font-72 {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  #index-body .i-about .bottom ul {
    padding: 0;
    padding-left: 20px;
  }
  #index-body .i-about .bottom ul::after {
    height: 90px;
  }
  #index-body .i-why {
    display: none;
  }
  #index-body .init-4 ul li .left .icon {
    width: 35px;
  }
  #footer .wrap .one {
    max-width: 100%;
  }
  #footer .wrap .four {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #index-body .i-category .slickBtn div {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .more {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    min-width: 135px;
  }
  #index-body .i-category {
    z-index: 2;
    position: relative;
  }
  #index-body .i-about .play {
    width: 50px;
  }
  #index-body .i-about .bottom ul .num::after {
    content: none;
  }
  #index-body .i-about .bottom ul::after {
    content: none;
  }
  .font-72 {
    font-size: 20px;
  }
}


.inner-banner {
  position: relative;
  /*height: 630px;*/
  border-radius: 0 0 75px 75px;
  background: #f2efe7;
}
.inner-banner > img{
  border-radius: 0 0 75px 75px;
}
.inner-banner .box {
  /*position: absolute;
  left: 0;
  bottom: -78px;
  right: 0;*/
  padding-top: 20px;
}
.inner-banner .box h2,
h1.banneryr {
  font-size: 72px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 35px;

}
.inner-banner .box .mbx {
  color: #000;
  font-size: 24px;
  font-weight: 400;
}
.inner-banner .box .mbx span {
  color: var(--color);
}
@media screen and (max-width: 1450px){
  .inner-banner .box h2, h1.banneryr{
    font-size: 52px;
  }
  .inner-banner .box .mbx{
    font-size: 20px;
  }
}
@media screen and (max-width: 1250px){
  .inner-banner .box h2{
    font-size: 40px;
  }
  .inner-banner{
    height: 320px;
  }
}
@media screen and (max-width: 700px){
   .inner-banner .box h2{
    margin-bottom: 0;
    font-size: 22px;
  }
  .inner-banner .box .mbx{
    font-size: 16px;
  }
  .inner-banner{
    height: 230px;
  } 
}
@media screen and (max-width: 500px) {
  .inner-banner .box{
    bottom: 50px;
  }
}
.inner-page{
  background: #f2efe7;
}
.about-page .about-1 {
  padding-top: 100px;
  z-index: 1;
}
.about-page .about-1 .con {
  line-height: 2;
}
.about-page .about-1 video{
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
.about-page .about-1 video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.4) !important;
  background: rgba(0, 0, 0, 0) !important;
  opacity: 1 !important;
}
/* 必须一起加，否则新版浏览器不生效 */
.about-page .about-1 video::-webkit-media-controls {
  background-color: transparent !important;
}
.about-page .about-1 video::-webkit-media-controls-enclosure {
  background-color: transparent !important;
}


.about-page .about-1 video::-webkit-media-controls {
  display: none !important;
}
.about-page .about-1 videoo::-moz-media-controls {
  display: none !important;
}

  /* 播放时显示控件 */
.about-page .about-1 video.playing::-webkit-media-controls {
  display: flex !important;
}
.about-page .about-1 video.playing::-moz-media-controls {
  display: flex !important;
}

.about-page .about-2 {
  background-color: #f4f4f4;
  padding: 10.7% 0 5%;
  margin-top: -117px;
}
.about-page .about-2 ul li {
  border-right: 1px solid #ccc;
}
.about-page .about-2 ul li i {
  width: 109px;
  height: 109px;
  border: solid 1px #cccccc;
  border-radius: 50%;
  text-align: center;
  line-height: 109px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 ul li i img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-2 ul li .text {
  margin-top: 15px;
}
.about-page .about-2 ul li .text span {
  font-size: 16px;
  line-height: 1.8;
}
.about-page .about-2 ul li .text .num {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 1px;
}
.about-page .about-2 ul li:hover i {
  background: var(--color);
  border-color: var(--color);
}
.about-page .about-2 ul li:hover i img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.about-page .about-2 ul li:nth-child(even):hover img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
}
.about-page .about-2 ul li:last-child {
  border-right: 0;
}
.about-page .about-3 .con {
  line-height: 2;
}
.about-page .about-3 .left {
  width: 62%;
}
.about-page .about-3 .right {
  width: 100vw;
  margin-right: -39vw;
}
.about-page .about-4 {
  padding: 5% 0 5%;
  background-color: #f4f4f4;
  background-size: 100% 100%;
}
.about-page .about-4 ul {
  margin: -40px -28px;
}
.about-page .about-4 ul li {
  padding: 40px 28px;
}
.about-page .about-4 ul li .ig {
  background-color: #ffffff;
  height: 100%;
  padding-bottom: 30px;
}
.about-page .about-4 ul li .ig i {
  width: 99px;
  text-align: center;
  line-height: 99px;
}
.about-page .about-4 ul li .ig i img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-4 ul li .ig span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
.about-page .about-4 ul li .ig .con {
  line-height: 1.8;
}
.about-page .about-5 {
  padding: 5% 0 5%;
}
.about-page .about-5 .header {
  max-width: 1214px;
  margin: 0 auto;
}
.about-page .about-5 .header .con {
  line-height: 2;
}
.about-page .about-5 .content .ui.container {
  width: 1696px;
}
.about-page .about-5 .content .icon {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  text-align: center;
  line-height: 175px;
  background: rgba(9, 113, 53, 0.3);
  z-index: 1;
  top: 17.8%;
  right: 20.2%;
}
.about-page .about-5 .content .icon img {
  display: inline-block;
  vertical-align: middle;
}
.about-page .about-5 .content .icon::before,
.about-page .about-5 .content .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-5 .content .icon::before {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.about-page .about-6 {
  position: relative;
  color: white;
  padding-top: 20px;
}
.about-page .about-6:before {
  content: '';
  width: 94%;
  height: 100%;
  left: 3%;
  top: 0;
  position: absolute;
  /*background-color: #b1b1b1;
  background-image: url("../images/about-6-bg.png");*/
  background-repeat: no-repeat;
  background-position: center right;
  border-radius: 100px;
  background-size: contain;
  background-attachment: fixed;
}
.about-page .about-6 .left {
  
}
.about-page .about-6 .left .img {
    border-radius: 24px;
  height: 700px;
  background-size: cover;
  background-position: center;
}
.about-page .about-6 .right {
  color: #000;
  padding-left: 5%;
}
.about-page .about-6 .right .list {

}
.about-page .about-6 .right .list ul li {
  padding: 40px 0;
  border-bottom: 1px solid rgba(000, 000, 000, 0.1);
}
.about-page .about-6 .right .list ul li i.fa {
  font-size: 40px;
}
.about-page .about-6 .right .list ul li span.h6 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  display: block;
  margin: 1em 0 .5em;
}
.about-page .about-6 .right .list ul li .text {
  color: inherit;
}
.about-page .about-6 .right .list ul li:last-child {
  border-bottom: none;
}

.about-page .init-4 .container {
  width: 100%;
}
.about-page .init-4 .container .list {
  position: relative;
  width: 50%;
}
.about-page .init-4 .container .list .tip_1 {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}
.about-page .init-4 .container .list .tip_1 span {
  border-bottom: 1px solid #000;
}
.about-page .init-4 .container .list .tip_2 {
  
  text-transform: uppercase;
  line-height: 1;
  margin-top: 290px;
  word-break: break-word;
}
.about-page .init-4 .container .list .img {
  width: 35%;
  height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-page .init-4 .container .list .text_cont {
  width: 50%;
}
.about-page .init-4 .container .list .tip_3 {
  padding: 30px 10px;
  border-top: 1px solid #616161;
  border-bottom: 1px solid #616161;
}
.about-page .init-4 .container .list .des {
  padding: 30px 10px;
}
.about-page .init-4 .container .list .des div {
  max-width: 400px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}
.about-page .init-4 .container .list1 {
  padding: 40px 80px;
}
.about-page .init-4 .container .list2 .text_cont {
  margin-top: 150px;
}
.about-page .about-7{
  position: relative;
  /*margin-top: 80px;*/

}
.about-page .about-7 > img{
  background-attachment: fixed;
    height: 700px;
  width: 100%;
  object-fit: cover;
}
.about-page .about-7 .text{
  position: absolute;
  width: 100%;
  left: 0;
  bottom:150px;
  color: #fff
}
.about-page .about-7 .text .box{

  margin: 0 0 0 auto
}
@media screen and (max-width: 1700px){
   .about-page .about-3 .right {
    margin-right: -3vw;
  }
  .about-page .about-6{
    padding: 70px 0;
  }
  .about-page .about-6 .right .list ul li i{
    font-size: 32px;
  }
   .about-page .about-6:before {
    width: 100%;
    left: 0;
  }
  .about-page .about-6 .right .list {
    margin-top: 40px;
  }
  .about-page .about-6 .right .list ul li {
    padding: 20px 0;
  }
  .about-page .about-6 .left .img {
  
    height: 540px;
  }
}
@media screen and (max-width: 1450px){
   .about-page .about-5 .content .icon {
    top: 14.8%;
    right: 18.2%;
  }
   .about-page .about-6 .right .list ul li i {
    font-size: 28px;
  }
  .about-page .about-4 ul li .ig i{
    width: 65px;
  }
  .about-page .about-4 ul {
    margin: -20px -12px;
  }
  .about-page .about-4 ul li{
    padding: 20px 12px;
  }
}
@media screen and (max-width: 1250px){
   .about-page .about-3 .right {
    padding-left: 30px;
    margin-right: -12vw;
  }
  .about-page .about-4 ul {
    margin: -20px -14px;
  }
  .about-page .about-4 ul li {
    padding: 20px 14px;
  }
  .about-page .about-5 .content .img {
    margin-left: 0;
  }
  .about-page .about-5 .content .icon {
    right: 16.2%;
  }
   .about-page .about-6 .right .list ul li i {
    font-size: 24px;
  }
   .about-page .init-4 .container .list1 {
    padding: 20px;
  }
  .about-page .init-4 .container .list2 .text_cont {
    margin-top: 0;
  }
  .about-page .init-4 .container .list .tip_3 {
    padding: 20px;
  }
  .about-page .init-4 .container .list .des {
    padding: 20px;
  }
  .about-page .init-4 .container .list .tip_2 {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-1 .right {
    padding-left: 30px;
  }
  .about-page .about-2 {
    margin-top: -30px;
  }
  .about-page .about-2 ul {
    margin: -30px 0;
  }
  .about-page .about-2 ul li {
    width: 50%;
    margin: 30px 0;
  }
  .about-page .about-2 ul li:nth-child(even) {
    border-right: 0;
  }
  .about-page .about-3 {
    padding: 30px 0;
  }
  .about-page .about-3 .right {
    margin-right: 0;
    margin-top: 30px;
  }
  .about-page .about-4 ul li {
    width: 50%;
  }
  .about-page .about-5 .content .icon {
    zoom: .7;
    top: 12.8%;
  }
  .about-page .about-6 .left {
    position: static;
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-6 .right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
   .about-page .about-6 .left .img {
    height: 300px;
  }
   .about-page .init-4 .container .list {
    width: 100%;
    text-align: center;
  }
  .about-page .init-4 .container .list .tip_2 {
    margin-top: 20px;
  }
  .about-page .init-4 .container .list .des div {
    width: 100%;
    max-width: 100%;
  }
  .about-page .init-4 .container .list1 {
    padding: 40px 20px;
  }
   .about-page .about-7 .text .box{
    width: 100%
  }
}
@media screen and (max-width: 700px){
   .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .left .img {
    display: none;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding-left: 0;
  }
  .about-page .about-5 .content .icon {
    zoom: .5;
  }
   .about-page .about-6 {
    padding: 50px 0;
  }
   .about-page .about-6 .right .list ul li i {
    font-size: 20px;
  }
   .about-page .init-4 .container .list .img {
    width: 100%;
    height: auto;
  }
  .about-page .init-4 .container .list .text_cont {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .init-4 .container .list2 .text_cont {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .init-4 .container .list3 img {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .about-page .init-4 .container .list4 img {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
   .about-page .about-7>img{
    height: 320px;
    object-fit: cover;
  }
  .about-page .about-7 .text{
    bottom: 40px
  }
}
@media screen and (max-width: 500px){
   .about-page .about-2 ul li .text span {
    font-size: 14px;
    line-height: 2;
  }
  .about-page .about-2 ul li .text .num {
    font-size: 30px;
  }
  .about-page .about-4 ul li {
    width: 100%;
  }
  .about-page .about-5 {
    display: none;
  }
  .about-page .init-4 .container .list1 {
    padding: 40px 0;
  }
  .about-page .init-4 .container .list .tip_3 {
    padding: 10px;
  }
  .about-page .init-4 .container .list .des {
    padding: 16px 0;
  }
   .about-page .about-7>img{
    height: 420px
  }
}

.service-page .service-1 .h2,
.service-page .service-3 .h2{
  font-weight: bold; 
}
.service-page .service-1 .text {
  max-width: 1330px;
  margin: 20px auto 0;
  text-align: left;
  line-height: 1.8;
}
.service-page .service-1 .list {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  height: 560px;
  padding: 15px;
}
.service-page .service-1 .list:after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(white));
  background-image: -webkit-linear-gradient(bottom, transparent, white);
  background-image: -moz-linear-gradient(bottom, transparent, white);
  background-image: linear-gradient(to top, transparent, white);
  z-index: 2;
  top: 0;
}
.service-page .service-1 .list .swiper {
  -webkit-transform: rotate3d(1, 0, 0, 15deg);
  -moz-transform: rotate3d(1, 0, 0, 15deg);
  transform: rotate3d(1, 0, 0, 15deg);
  width: 100%;
  height: 100%;
  overflow: unset;
}
.service-page .service-1 .list ul {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  transition-timing-function: linear;
  flex-direction: row;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
}
.service-page .service-1 .list ul li {
  width: 100%;
  margin: 0 !important
}
.service-page .service-1 .list ul li a.img {
  height: 120px;
  padding: 5% 14%;
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  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;
}
.service-page .service-1 .list ul li a.img img {
  max-width: 100%;
}
.service-page .service-2 .ui.container {
  width: auto;
  max-width: 1700px;
}
.service-page .service-2 .box {
  height: 780px;
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  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;
  padding: 5%;
  flex-wrap: wrap;
}
.service-page .service-2 .box .mask i {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .box .mask i.active {
  opacity: 1;
}
.service-page .service-2 .box .content {
  width: 660px;
  border: 1px solid #e5e5e5;
  padding: 4% 3%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background-color: white;
}
.service-page .service-2 .box .content span.tag {
  display: block;
  color: #e60012;
  margin-bottom: .5em;
  font-weight: 500;
}
.service-page .service-2 .box .content .text {
  margin: 1.5em 0;
  color:#666666;
  line-height: 30px;
}
.service-page .service-2 .box .content .slickBtn {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -moz-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.service-page .service-2 .box .content .slickBtn .btn{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  color: #565656;
  margin-left: 16px;
  cursor: pointer;
  justify-content: center;
}
.service-page .service-2 .box .content .slickBtn .btn:hover{
  background: var(--color);
  color: #fff;
}
.service-page .service-2 .box .sPage{
  width: 100%;
  z-index: 2;
}
.service-page .service-2 .box .sPage .swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
}
.service-page .service-2 .box .sPage .swiper-pagination-bullet::before{
  background: #fff;
  content: '';
  position: relative;
  display: block;
  width: 10px;
  border-radius: 50%;
  height: 10px;
  opacity: 1;
  padding: 0;
  
}
.service-page .service-2 .box .sPage .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border: 1px solid var(--color) !important;
}
.service-page .service-2 .box .sPage .swiper-pagination-bullet-active::before{
  background: var(--color);
}
.service-page .service-3 .swiper .swiper-slide {
  padding: 106px 3%;
  border-bottom-left-radius: 80px;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: white;
  overflow: hidden;
}
.service-page .service-3 .swiper .swiper-slide .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
}
/*.service-page .service-3 .swiper .swiper-slide:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}*/
.service-page .service-3 .list{
  margin-top: 50px;
}
.service-page .service-3 .swiper .swiper-slide i {
  display: block;
}
.service-page .service-3 .swiper .swiper-slide span.h6 {
  margin-top: 1.4em;
  display: block;
  font-weight: 500;
  font-size: 24px;
}
.service-page .service-3 .swiper .swiper-slide span.h6_2{
  padding: 0 10px;
  max-width: 340px;
  margin: 1.4em auto 0;
}
.service-page .service-3 .swiper .swiper-slide .text {
  color: inherit;
  margin-top: 1em;
  font-weight: 300;
  max-height: 9em;
  overflow: auto;
}
.service-page .service-3 .swiper .swiper-slide .text::-webkit-scrollbar-thumb {
  background-color:black;
}
.service-page .service-3 .swiper .swiper-slide .content {
  opacity: 0;
  -webkit-transition: .5s;
  position: relative;
  z-index: 2;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 .swiper .swiper-slide .center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 .swiper .swiper-slide:hover:before {
  background-color: var(--color);
}
.service-page .service-3 .swiper .swiper-slide:hover .bg{
  opacity: 1;
}
.service-page .service-3 .swiper .swiper-slide:hover .content {
  opacity: 1;
}
.service-page .service-3 .swiper .swiper-slide:hover .center {
  top: 40%;
  opacity: 0;
}
.service-page .service-3 .sPage{
  margin-top: 60px;
}
.service-page .service-3 .sPage .swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: rgba(0, 0, 0, 0);
}
.service-page .service-3 .sPage .swiper-pagination-bullet::before{
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background: #f0f0f0;
}
.service-page .service-3 .sPage .swiper-pagination-bullet-active{
  border: 1px solid var(--color);
}
.service-page .service-3 .sPage .swiper-pagination-bullet-active::before{
  background: var(--color);
}
@media screen and (max-width: 1500px) {
  .service-page .service-1 .list {
    height: 450px;
  }
  .service-page .service-1 .list ul li a.img {
    height: 90px;
  }
  .service-page .service-2 .box {
    height: 600px;
  }
}

@media screen and (max-width: 1250px) {
  .service-page .service-2 .box {
    height: 500px;
  }
  .service-page .service-3 .swiper .swiper-slide i img {
    max-height: 50px;
  }
  .service-page .service-3 .swiper .swiper-slide {
    padding: 50px 3%;
  }
}

@media screen and (max-width: 1000px) {
  .service-page .service-1 .list {
    height: 300px;
  }
  .service-page .service-1 .list ul li a.img {
    height: 70px;
  }
  .service-page .service-1 .list ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-page .service-1 .list ul li {
    width: 25%;
  }
  .service-page .service-2 .box {
    height: 420px;
  }
  .service-page .service-3 .swiper .swiper-slide {
    border-bottom-left-radius: 20px;
  }
}

@media screen and (max-width: 700px) {
  .service-page .service-1 .list {
    height: 200px;
  }
  .service-page .service-1 .list ul li {
    width: 33.33%;
  }
  .service-page .service-1 .list ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-page .service-2 .box .content {
    max-width: 100%;
  }
  .service-page .service-2 .box {
    height: auto;
  }
  .service-page .service-2 .box .content {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

@media screen and (max-width: 500px) {
  .service-page .service-3 .swiper .swiper-slide {
    border-radius: 0;
  }
  .service-page .service-3 .list{
    margin-top: 20px;
  }
  .service-page .service-1 .list ul li {
    width: 50%;
  }
  .service-page .service-1 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-page .service-3 .sPage{
    margin-top: 20px;
  }
}
.production-page .init-1 {
  position: relative;
  overflow: hidden;

}
.production-page .init-1 .subImg {
  position: absolute;
  width: 1250px;
  max-width: 100%;
  height: 190px;
  top: 60px;
  left: -50px;
}
.production-page .init-1 .container .content ul li .box .left {
  padding-right: 40px;
  width: 54%;
}
.production-page .init-1 .container .content ul li .box .left .title {
  font-weight: bold; 
}
.production-page .init-1 .container .content ul li .box .left .des {
  color: #000;
  line-height: 30px;
}
.production-page .init-1 .container .content ul li .box .left .des strong {
  display: block;
  font-size: 26px;
  line-height: 1.6;
  color: #242424;
  margin-bottom: 10px; 
}
.production-page .init-1 .container .content ul li .box .right {
  width: 46%;
}
.production-page .init-1 .container .content ul li .box .right img {
  width: 100%;
  border-radius: 28px;
}
.production-page .init-1 .container .listCont {
  padding-top: 20px;
  position: relative;
}
.production-page .init-1 .container .listCont .listC {
  width: 100%;
  position: relative;
}
.production-page .init-1 .container .listCont::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
  z-index: -1;
}
.production-page .init-1 .container .listCont .listC.listC2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.production-page .init-1 .container .listCont .list {
  margin-top: 40px;
  font-weight: 500;
  position: relative;
}
.production-page .init-1 .container .listCont .list .title{
  min-height: 60px;
  font-family: "Microsoft YaHei";
  font-weight: bold;
}
.production-page .init-1 .container .listCont .list .listText {
  cursor: pointer;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.production-page .init-1 .container .listCont .list .icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 20px auto 0;
  transition: 0.5s;
  background: #e6e6e6;
}
.production-page .init-1 .container .listCont ul li.swiper-slide-thumb-active .icon,
.production-page .init-1 .container .listCont .slick-current .list .icon,
.production-page .init-1 .container .listCont .list.active .icon{
  background: var(--color);
}
.production-page .init-1 .container .listCont .list .listImg {
  display: none;
}
.production-page .init-1 .container .listCont ul li.swiper-slide-thumb-active .listText,
.production-page .init-1 .container .listCont .slick-current .list .listText,
.production-page .init-1 .container .listCont .list.active .listText {
  border-bottom: 1px solid var(--color);
  color: var(--color);
}
.production-page .init-1 .container .listCont .listImg {
  width: 36px;
  height: 26px;
  margin: 40px 10px 0;
}
.production-page .init-1 .container .listCont .listImg.listImg2 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*.production-page .init-1 .container .listCont .list3 .listImg {
  display: block;
  bottom: -34px;
  right: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
}*/
@media (max-width: 1200px){
  .production-page .init-1 .container .listCont{
    display: none;
  }
}
@media (max-width: 1000px) {
  .production-page .init-1 .container .listCont .listImg {
    width: 20px;
    height: 10px;
    margin: 40px 2px 0;
  }
  /*.production-page .init-1 .container .listCont .list3 .listImg {
    bottom: -26px;
  }*/
  .production-page .init-1 .container .content ul li .box .right {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
  }
  .production-page .init-1 .container .content ul li .box .left {
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }
  .production-page .init-1 .container .listCont .listImg {
    display: none;
  }
  .production-page .init-1 .container .listCont .list3 .listImg {
    display: none;
  }
  .production-page .init-1 .container .listCont .listC {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .production-page .init-1 .container .listCont .list {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .production-page .init-1 .container .listCont .listImg {
    display: none;
  }
  .production-page .init-1 .container .listCont .list3 .listImg {
    display: none;
  }
  .production-page .init-1 .container .listCont .listC {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .production-page .init-1 .container .listCont .list {
    width: 50%;
  }
  .production-page .init-1 .container .listCont .listC.listC2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 500px) {
  .production-page .init-1 .container .listCont .list {
    width: 100%;
    margin-top: 10px;
    line-height: 2;
  }
  .production-page .init-1 .container .content ul li .box .left .des strong {
    font-size: 22px;
  }
}

.oem-page .init-1 .container .left {
  width: 44%;
}
.oem-page .init-1 .container .left img {
  width: 100%;
  border-radius: 28px;
}
.oem-page .init-1 .container .right {
  width: 56%;
  padding-left: 60px;
}
.oem-page .init-1 .container .right .tipsTitle {
  font-weight: bold; 
}
.oem-page .init-1 .container .right .tipsDes {
  font-weight: bold; 
  color: var(--color);
}
.oem-page .init-1 .container .right .content ul li .box {
  position: relative;
}
.oem-page .init-1 .container .right .content ul li .box .title {
  padding: 16px 60px 16px 30px;
  position: relative; 
  cursor: pointer;
  line-height: 1.6;
  border-radius: 12px;
}
.oem-page .init-1 .container .right .content ul li .box .title i {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.oem-page .init-1 .container .right .content ul li .box .des {
  border-top: 1px solid #dedade;
  color: #666666;
  padding: 20px 50px;
  background-color: #fffdfb;
  display: none;
  line-height: 30px;
}
.oem-page .init-1 .container .right .content ul li.active .box .title {
  background-color: #fffdfb;
}
.oem-page .init-1 .container .right .content ul li.active .box .title i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
@media (max-width: 1000px) {
  .oem-page .init-1 .container .left {
    width: 100%;
    max-width: 400px;
  }
  .oem-page .init-1 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .oem-page .init-1 .container .right .content ul li .box .title i {
    top: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .oem-page .init-1 .container .right .content ul li .box .title {
    padding: 16px 30px 16px 16px;
  }
  .oem-page .init-1 .container .right .content ul li .box .des {
    padding: 16px;
  }
}
.service-page .service-66 .swiper{
  overflow: hidden
}
/*
.service-page .service-66 .ui.container {
    width: auto;
  
}*/

.service-page .service-66 .box {
    height: 700px;
    position: relative;
    overflow: hidden;
    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;
    padding: 5% 5%;
    border-radius: 80px;
}

.service-page .service-66 .box .mask i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.service-page .service-66 .box .mask i.active {
    opacity: 1
}

.service-page .service-66 .box .content {
    width: 660px;
   
    padding: 4% 3%;
    position: relative;
    z-index: 1;
    border-radius: 28px;
    background-color: #fff
}

.service-page .service-66 .box .content span.tag {
    display: block;
    color: #d4ab57;
    margin-bottom: .5em;
    font-weight: 500
}

.service-page .service-66 .box .content .text {
    margin: 1.5em 0;
  
}

.service-page .service-66 .box .content .slickBtn {
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -moz-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right
}



@media screen and (max-width: 1450px) {
    .service-page .service-66 .box {
        height: 600px
    }
}

@media screen and (max-width: 1250px) {
    .service-page .service-66 .box {
        height: 500px
    }
}


@media screen and (max-width: 1000px) {
    .service-page .service-66 .box {
        height: 420px
    }
}

@media screen and (max-width: 700px) {
    .service-page .service-66 .box .content {
        max-width: 100%
    }

    .service-page .service-66 .box {
        height: auto
    }

    .service-page .service-66 .box .content {
        background-color: rgba(255,255,255,.6)
    }
}

.faq-page .marginBox {
  padding: 0px 0 100px;
  text-align: center;
}
.faq-page .marginBox .box {
  margin-top: 50px;
  text-align: left;
}
.faq-page .marginBox .box .left {
  width: 40%;
}
.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: var(--color);
}
.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}
.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1.8em;
  display: block;
  color: #fff;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1em;
  line-height: 32px;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}
.faq-page .marginBox .box .right {
  width: 100%;
  padding-left: 0%;
}
.custom-page .faq-page .marginBox .box .right {
  width: 100%;
  padding-left: 0;
}
.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 25px;
  background: #f3f3f3;
  border: 1px solid #dddddd;
  border-radius: 28px;
}
.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: bold;
  font-size: 19px;
  line-height: 32px;
  color: #242424;
  display: block;
  position: relative;
  cursor: pointer;

  
}
.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  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%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .marginBox .box .right .list ul li span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  margin: 30px 0;
  display: none;
}
.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}
.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1600px){
  .faq-page .marginBox .box .left .box2 {
    padding: 30px 20px;
  }
  .faq-page .marginBox .box .left .box2 .slide span.h6 {
    font-size: 16px;
    margin-bottom: 1em;
    line-height: 30px;
  }
  .faq-page .marginBox .box .left .box2 .slide .nav ul li {
    font-size: 16px;
    margin-bottom: .8em;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 18px;
  }
  .faq-page .marginBox .box .right .list ul li .text {
    margin: 20px 0;
  }
  .faq-page .marginBox .box .right .list ul li {
    padding: 24px;
    margin-bottom: 10px;
  }
  .faq-page .marginBox {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1250px){
  .faq-page .marginBox .box {
    margin-top: 30px;
  }
  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }
  .faq-page .marginBox .box .left {
    display: none;
  }
}
@media screen and (max-width: 700px){
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 14px;
    padding-left: 10px;
    line-height: 2;
  }
   .faq-page .marginBox .box .right .list ul li span.title i{
    width: 10px;
    height: 10px;
    font-size: 14px;
  }
}

.warr-page .warr-3 {
  padding: 3.75% 0 4.5%;
  background-color: #f2efe7;
  background-size: 100% 100%;
}
.warr-page .warr-3 .ny-title {
  margin-top: 0;
}
.warr-page .warr-3 .tit {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 33px;
}
.warr-page .warr-3 .tit::after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: #cccccc;
  margin-left: 107px;
}
.warr-page .warr-3 label {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.warr-page .warr-3 ul {
  margin: -29px;
}
.warr-page .warr-3 ul li {
  padding: 29px;
}
.warr-page .warr-3 ul li label {
  margin-bottom: 11px;
}
.warr-page .warr-3 ul li input[type="text"] {
  width: 100%;
  height: 68px;
  border: solid 1px #a7a7a7;
  background: transparent;
  font-size: 16px;
  padding: 0 15px;
  border-radius: 10px;
}
.warr-page .warr-3 textarea,
.design-page .design-5 .add select{
  border-radius: 10px;
}
.warr-page .warr-3 .section ul li:last-child {
  padding-top: 20px;
}
.warr-page .warr-3 .check ul {
  margin: 0;
  list-style: none; 
  padding: 0;
}
.warr-page .warr-3 .check ul li {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative; 
  margin-bottom: 10px; 
}

.warr-page .warr-3 .check ul li input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 23px; 
  height: 23px;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}

.warr-page .warr-3 .check ul li input[type="checkbox"] + label {
  position: relative;
  padding-left: 35px; 
  cursor: pointer;
  line-height: 23px;
}

.warr-page .warr-3 .check ul li input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 23px; 
  height: 23px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.warr-page .warr-3 .check ul li input[type="checkbox"]:checked + label::before {
  background-color: var(--color); 
  border-color: var(--color);
}

.warr-page .warr-3 .check ul li input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.warr-page .warr-3 .installer .tit::after {
  margin-left: 55px;
}
.warr-page .warr-3 .installer ul {
  margin: -28px -28px -28px 13px;
}
.warr-page .warr-3 .installer ul li {
  padding: 28px;
}
.warr-page .warr-3 .product .tit::after {
  margin-left: 48px;
}
.warr-page .warr-3 .product ul {
  margin: -14px -14px -14px 17px;
}
.warr-page .warr-3 .product ul li {
  padding: 14px;
}
.warr-page .warr-3 .invoice .tit {
  margin-bottom: 12px;
}
.warr-page .warr-3 .invoice .tit::after {
  display: none;
}
.warr-page .warr-3 .invoice .con {
  max-width: 576px;
}
.warr-page .warr-3 .invoice .con p {
  margin-top: 2px;
}
.warr-page .warr-3 .invoice .con p:first-child {
  margin-top: 0;
}
.warr-page .warr-3 .upload {
  height: 131px;
  border: dashed 1px #a7a7a7;
}
.warr-page .warr-3 .upload label {
  margin-bottom: 0;
}
.warr-page .warr-3 .upload span {
  background: rgba(51, 51, 51, 0.4);
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 8px 22px 7px 19px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.warr-page .warr-3 .upload input[type="file"] {
  width: 100%;
  height: 100%;
}
.warr-page .warr-3 .upload:hover span{
  background: var(--color);
  color: #fff;
}
.warr-page .warr-3 textarea {
  width: 100%;
  height: 246px;
  border: solid 1px #a7a7a7;
  font-size: 16px;
  padding: 0 15px;
  background: transparent;
  margin-top: 13px;
}
.warr-page .warr-3 .more {
  /*border: 0;*/
  font-size: 18px;
  /*background: transparent;*/
}
.warr-page .warr-3 .more span {
  padding: 12px 53px;
}
.design-page .design-5 .section .tit {
  margin-bottom: 15px;
}
.design-page .design-5 .section .tit::after {
  margin-left: 19px;
}
.design-page .design-5 .add .tit {
  margin-bottom: 0;
}
.design-page .design-5 .add p {
  line-height: 1.8;
}
.design-page .design-5 .add .left {
  width: 51.8%;
}
.design-page .design-5 .add .right {
  width: 48.2%;
}
.design-page .design-5 .add select {
  width: 100%;
  height: 68px;
  border: solid 1px #a7a7a7;
  background: transparent;
  font-size: 16px;
  opacity: .9;
  padding: 0 16px 0 24px;
  background-image: url(../images/select-down.png);
  background-position: 98% center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.design-page .design-5 .add select::-ms-expand {
  display: none;
}
@media screen and (max-width: 1680px) {
  
  .warr-page .warr-3 .product .text ul {
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
  }
  .warr-page .warr-3 .product .text ul li:first-child {
    padding-left: 0;
  }
  
}
@media screen and (max-width: 1250px) {
   .warr-page .warr-3 ul {
    margin: -15px;
  }
  .warr-page .warr-3 ul li {
    padding: 15px;
  }
  .warr-page .warr-3 .product .text ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .warr-page .warr-3 .product .text ul li {
    width: 50%;
  }
  .warr-page .warr-3 .product .text ul li:nth-child(odd) {
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px){
   .warr-page .warr-3 ul li {
    width: 50%;
  }
  .warr-page .warr-3 ul li.wid-100 {
    width: 100%;
  }
}
@media screen and (max-width: 700px){
   .warr-page .warr-3 ul li {
    width: 100%;
  }
  .warr-page .warr-3 .installer ul {
    margin: -7px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .warr-page .warr-3 .installer ul li {
    padding: 7px;
    width: 100%;
  }
  .warr-page .warr-3 .product .text ul li {
    width: 100%;
  }
  .warr-page .warr-3 .product .text ul li:nth-child(even) {
    padding-left: 0;
  }
}
@media screen and (max-width:500px){
   .warr-page .warr-3 .check ul li {
    font-size: 14px;
  }
   .design-page .design-5 .add .left {
    width: 100%;
  }
  .design-page .design-5 .add .right {
    width: 100%;
    margin-top: 20px;
  }
}

.customize-page .service-1 {
  padding-bottom: 110px;
}
.customize-page .service-1 .img {
  border-radius: 50px;
  overflow: hidden;
  float: right;
  margin-left: 80px;
  margin-bottom: 110px;
}
.customize-page .service-1 .text {
  margin-top: 30px;
}
@media screen and (max-width: 1450px){
  .customize-page .service-1 .i-title{
    font-size: 32px;
  }
  .customize-page .service-1 .img{
    width: 45%;
    padding-left: 38px;
  }
}
@media screen and (max-width: 1250px){
   .customize-page .service-1 .img{
    margin-left: 30px;
    margin-bottom: 40px;
    width: 56%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 1000px){
  .customize-page .service-1 .img{
    margin-left: 0;
    display: none;
  }
}


.z_index_ys {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-left:12vw;
    padding-right:12vw;
    padding-top: 6.25vw;
    padding-bottom: 6.25vw
}

@media screen and (max-width: 980px) {
    .z_index_ys {
        padding-left:12px;
        padding-right: 12px
    }
}

@media screen and (max-width: 980px) {
    .z_index_ys {
        padding-top:40px;
        padding-bottom: 40px
    }
}

.z_index_ys .z_index_tit {
    /*padding-left: 16.6666666667vw;*/
    margin-bottom: 2.7708333333vw
}
.z_index_ys .z_index_tit .btn{
  position: absolute;
  right:270px ;
  top: 152px;
}
.z_index_ys .z_index_tit .btn > div{
  position: unset;
  display: inline-block;
  margin: 0 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background: white;
}
.z_index_ys .z_index_tit .btn > div::after{
  font-size: 24px;
  color: var(--color);
  line-height: unset;
}
@media screen and (max-width: 980px) {
    .z_index_ys .z_index_tit {
        padding-left:0px
    }
}

@media screen and (max-width: 980px) {
    .z_index_ys .z_index_tit {
        margin-bottom:40px
    }
}
.z_ys_swiper ul {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.z_ys_swiper li {
    height: 22.3958333333vw;
    position: relative
}

@media screen and (max-width: 980px) {
    .z_ys_swiper li {
        height:auto
    }
}

.z_ys_swiper li a {
    display: block;
    height: 100%
}

.z_ys_swiper li.active .topbox {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1
}

.z_ys_swiper li.active .btmbox {
    padding-top: 1.3020833333vw;
    border-radius: 1.5625vw 1.5625vw 7.2916666667vw 7.2916666667vw;
    background: #fff
}

@media screen and (max-width: 980px) {
    .z_ys_swiper li.active .btmbox {
        padding-top:20px
    }
}

.z_ys_swiper li.active .btmbox .ico {
    height: 0;
    overflow: hidden
}

.z_ys_swiper li.active .btmbox .dot {
    opacity: 1;
    margin-top: 1.0416666667vw
}

@media screen and (max-width: 980px) {
    .z_ys_swiper li.active .btmbox .dot {
        margin-top:10px
    }
}

.z_ys_swiper .topbox {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 11.9791666667vw;
    background:rgb(186 152 109 / 50%);
    border-radius: 7.2916666667vw 7.2916666667vw 0 0;
    overflow: hidden;
    padding-bottom: 2.6041666667vw;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    margin-bottom: -2.6041666667vw
}
.z_ys_swiper .topbox img{
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 980px) {
    .z_ys_swiper .topbox {
        height:0
    }
}
.z_ys_swiper{
  overflow: hidden;
}
.z_arr {
    width: 30px;
    height: 30px;
    background: var(--color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin-left: .5208333333vw;
    cursor: pointer;
}
.z_ys_swiper .topbox .imgbg {
    position: absolute;
    left: 0;
    top: 0%;
    opacity: .7;
    z-index: -1;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.z_ys_swiper .ico {
    height: 3.75vw;
    -webkit-transition: ease .8s;
    transition: ease .8s
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .ico {
        height:36px
    }
}

.z_ys_swiper .ico img {
    display: block;
    height: 100%;
    margin: 0 auto
}

.z_ys_swiper .btmbox {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    background: rgba(255,255,255,.8);
    border-radius: 2.6041666667vw 2.6041666667vw 7.2916666667vw 7.2916666667vw;
    padding-top: 2.0833333333vw;
    padding-bottom: 2.0833333333vw;
    text-align: center
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox {
        padding-top:20px;
        padding-bottom: 20px
    }
}

.z_ys_swiper .btmbox .ico {
    margin-bottom: 1.0416666667vw
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .ico {
        margin-bottom:10px
    }
}

.z_ys_swiper .btmbox .tit {
    font-size: 24px;
    font-weight: 700;
    /*line-height: 1.5625vw*/
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .tit {
        font-size:16px
    }
}

@media screen and (max-width: 1680px) {
    .z_ys_swiper .btmbox .tit{
      font-size: 16px;
    }
}

@media screen and (max-width: 980px) {
    
}

.z_ys_swiper .btmbox .dot {
    width: 70%;
    margin: 0 auto;
    height: 3px;
    background: url(../images/dot.png) no-repeat center;
    background-size: auto 100%;
    -webkit-transition: ease 1s;
    transition: ease 1s;
    overflow: hidden;
    opacity: 0
}

.z_ys_swiper .btmbox .desc {
    color: #727272;
    opacity: .8;
    min-height: 2.5vw;
    margin-bottom: 1.25vw;
    margin-top: .78125vw;
    font-size: 1vw;
    line-height: 1.25vw;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;

}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .desc {
        margin-bottom:10px
    }
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .desc {
        margin-top:10px
    }
}

@media screen and (max-width: 1680px) {
    .z_ys_swiper .btmbox .desc {
        font-size:.9453125vw;
        font-size: 1vw
    }
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .desc {
        font-size:14px
    }
}

@media screen and (max-width: 1680px) {
    .z_ys_swiper .btmbox .desc {
        line-height:1.45vw
    }
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .btmbox .desc {
        line-height:24px
    }
}

.z_ys_swiper .btmbox .z_arr {
    margin: 0 auto;
    font-size: 16px;
}

@media screen and (max-width: 980px) {
    .z_ys_swiper .topbox {
        display:none
    }

    .z_ys_swiper .btmbox {
        position: relative;
        border-radius: 10px
    }

    .z_ys_swiper li .dot {
        display: none
    }

    .z_ys_swiper li.active .btmbox {
        border-radius: 10px
    }

    .z_ys_swiper li.active .btmbox .ico {
        height: 36px
    }
}
.z_index_ys .lazy {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background-attachment: fixed;
}
@media screen and (max-width:700px){
  .z_index_ys .z_index_tit .btn{
    position: relative;
  }
}

.sus-page .sus-4 {


  background-color: #f2efe7;
}
.sus-page .sus-4 .i-title {
  margin-bottom: 20px;
}
.sus-page .sus-4 ul {
  margin: -18px;
}
.sus-page .sus-4 ul li {
  padding: 50px;
  text-align: center;
}
.sus-page .sus-4 ul li .img-box {
  border-radius: 50px;
}
.service-page.sus-page .sus-4 ul li .img-box,
.quality-page.sus-page .sus-4 ul li .img-box{
  border-radius: 50%;
}
.sus-page .sus-4 ul li .h4 {
  font-size: 20px;

  color: #011e1a;
  margin: 24px 0 4px;
}
.sus-page .sus-4 ul li .text {
  line-height: 1.6;
  height: 160px;
  overflow: auto;
}
@media screen and (max-width: 1250px){
   .sus-page .sus-4 ul li{
    width: 33% !important;
  }
   .sus-page .sus-4 ul li .h4{
    font-size: 22px;
  }
  .sus-page .sus-4 ul li .text{
    font-size: 16px;
  }
}
@media screen and (max-width: 700px){
   .sus-page .sus-4 ul li .h4{
    font-size: 18px;
  }
  .sus-page .sus-4 ul li .text{
    font-size: 15px !important;
    height: auto;
  }
   .sus-page .sus-4 ul li{
    width: 100% !important;
  }
}
@media screen and (max-width: 500px){
   .sus-page .sus-4 ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sus-page .sus-4 ul li {
    width: 100% !important;
  }
}
.seo_block .Auxil-form {
  padding-top: 100px;
  padding-bottom: 110px;
}
.seo_block .Auxil-form .i-title {
  color: #011e1a;
}
.seo_block .Auxil-form .text {
  text-align: center;
  margin: 20px 0 57px;
}
.seo_block .Auxil-form .box {
  background-color: #f8faf5;
  border-radius: 50px;
  padding: 70px;
}
.seo_block .Auxil-form .box ul {
  margin: -5px;
}
.seo_block .Auxil-form .box ul li {
  padding: 5px;
  position: relative;
}
.seo_block .Auxil-form .box ul li i{
    font-size: 25px;
    color: var(--color);
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.seo_block .Auxil-form .box ul li:nth-child(4) i{
  top: 35px;
}
.seo_block .Auxil-form .box ul li input,
.seo_block .Auxil-form .box ul li textarea {
  width: 100%;
  background-color: transparent;
  /*border: none;*/
  height: 75px;
  border-radius: 10px;
  font-size: 18px;
  padding: 0 20px;
  border: 1px solid #aaa;
}
.seo_block .Auxil-form .box ul li textarea {
  height: 150px;
  padding: 20px;
}
.seo_block .Auxil-form .box ul li input[type="submit"] {
  background-color: var(--color);
  color: white;
  height: 55px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.seo_block .Auxil-form .box ul li input[type="submit"]:hover {
  background-color: #222;
}
.seo_block .Auxil-form .box ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1000px){
   .seo_block .Auxil-form .box{
    padding: 30px;
    border-radius: 20px;
  }
}


.m-page a,
.m-page span {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  line-height: 46px;
  text-align: center;
  font-weight: 500;
  margin: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a:hover,
.m-page span:hover {
  border: 1px solid var(--color);
  color: #fff;
  background-color: var(--color);
}
.m-page .current {
  border: 1px solid var(--color);
  color: #fff;
  background-color: var(--color);
}
.product-page .init-2 .fl-list {
  display: inline-block;
  position: relative;
  width: 370px;
  margin-top: 10px;
  border: solid 1px #474747;
  text-align: left;
  padding: 20px 40px 20px 28px;
  cursor: pointer;
  color: #474747;
  font-weight: 600;
}
.product-page .init-2 .fl-list span {
  display: block;
  position: relative;
}
.product-page .init-2 .fl-list span em {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .init-2 .fl-list span i {
  position: absolute;
  line-height: 1;
  font-size: 30px;
  top: -4px;
  right: -20px;
}
.product-page .init-2 .fl-list .box {
  background-color: #fff;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 2;
  -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);
  opacity: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.product-page .init-2 .fl-list ul li {
  font-size: 14px;
  padding: 10px;
  /*line-height: 2;*/
}
.product-page .init-2 .fl-list > .box > ul > li:not(:last-child){
  padding-bottom: 0;
}
.product-page .init-2 .fl-list ul li ul{
  padding-left: 20px;
}
.product-page .init-2 .fl-list ul li ul li{
  padding: 10px 0;
}
.product-page .init-2 .fl-list ul li ul li:last-child{
  padding-bottom: 0;
}
.product-page .init-2 .fl-list ul li a {
  display: block;
}
.product-page .init-2 .fl-list ul li a:hover {
  color: var(--color);
}
.product-page .init-2 .fl-list:hover .box {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.product-page .init-2 .product-search {
  margin-left: 70px;
}
.product-page .init-2 .product-search form {
  height: 64px;
  position: relative;
  font-weight: 700;
  margin-top: 10px;
}
.product-page .init-2 .product-search form .list {
  width: 360px;
  padding: 20px 40px 20px 28px;
  border: solid 1px #474747;
  position: relative;
}
.product-page .init-2 .product-search form .btn {
  width: 75px;
  background-color: var(--color);
  border: none;
  border-radius: 0;
  -o-background-size: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.product-page .init-3 .sideBox .side_left{
  position: sticky;
  top: 110px;
}
.product-page .init-3 .sideBox .side_left .search_cont {
    position: relative;
}
.product-page .init-3 .sideBox .side_left .search_cont .text {
    width: 100%;
    /*border-radius: 72px;*/
    border: 1px solid #eee;
    padding: 20px 20px;
    padding-right: 80px;
    color: #000;
    border-radius: 8px;
    line-height: 1;
}
.product-page .init-3 .sideBox .side_left .search_cont .btn {
  border-radius: 8px;
    width: 62px;
    height: 62px;
    right: 1px;
    position: absolute;
    top: 1px;
    border: none;
    background: url(../images/search.png) no-repeat center var(--color);
}
.product-page .init-3 .sideBox .side_left .item {
    margin-top: 30px;
    /*border: 1px solid #eee;*/
    /*padding: 40px;*/
}
.product-page .init-3 .sideBox .side_left .item .tips {
    font-weight: bold;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont {
    margin-top: 26px;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li {
    margin-top: 10px;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li:first-child {
    margin-top: 0;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li a {
    display: block;
    padding: 16px;
    border-radius: 8px;
  
    font-size: 18px;

    line-height: 28px;
    /*text-transform: uppercase;*/
    position: relative;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li a i {
    position: absolute;
    right: 20px;
    top: 19px;
    display: inline-block;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont .nav_cont_item li a i{
  top: 8px;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li a i.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li a:hover,
.product-page .init-3 .sideBox .side_left .item .nav_cont li a.active {
    color: #fff;
    background-color: var(--color);
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item {
    display: none;
    padding-left: 20px;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item.active{
    display: block;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item li {
    margin-top: 10px;
}
.product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item li a {
    padding: 10px 20px ;
}
.product-page .init-3 .sideBox .side_left .item .contact_cont {
    margin-top: 30px;
}
.product-page .init-3 .sideBox .side_left .item .contact_cont li {
    margin-top: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
    box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
        background: #f1f1f1;
}
.product-page .init-3 .sideBox .side_left .item .contact_cont li .img {
    width: 34px;
    height: 34px;
    border-radius: 50%
}
.product-page .init-3 .sideBox .side_left .item .contact_cont li .text {
    width: -webkit-calc(66%);
    width: -moz-calc(66%);
    width: calc(100% - 34px);
    padding-left: 15px;
    margin-top: 4px;
}
.product-page .init-3 .sideBox .side_left .item .contact_cont li:first-child {
    margin-top: 0;
}
.product-page .init-3 .container .tipsTitle {
  font-weight: bold; 
  /*text-align: center;*/
}
.product-page .init-3 .container .content ul {
  margin: 0 -15px;
}
.product-page .init-3 .container .content ul li {
  margin-top: 20px;
  padding: 0 15px;
}
.product-page .init-3 .container .content ul li .box .img {
  display: block;
  border: solid 1px #e9e9e9;
  position: relative;
}
.product-page .init-3 .container .content ul li .box .img img {
  width: 100%;
  transition: all .5s;
}
.product-page .init-3 .container .content ul li .box .img .img2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .5s;
}
.product-page .init-3 .container .content ul li .box .title {
  display: block;
  font-weight: 500;
 
  min-height: 3.5rem;
}
.product-page .init-3 .container .content ul li .box:hover .img1{
  opacity: 0;
}
.product-page .init-3 .container .content ul li .box:hover .img2{
  opacity: 1;
}
.product-page .init-3 .container .content ul li .box .moreC .more {
  text-transform: uppercase; 
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreText {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreImg {
  background-color: #e7ce77;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreImg .moreImg2 {
  width: 14px;
  height: 8px;
  display: block;
}
.product-page .init-3 .container .content ul li .box:hover .title {
  color: var(--color);
}
.product-page .init-3 .container .content ul li .box:hover .moreC .more .moreText {
  border-bottom: 1px solid var(--color);
  color: var(--color);
}
.product-page .init-3 .container .content ul li .box:hover .moreC .more .moreImg {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--color);
}
.product-page .init-3 .container .catDes {
  color: #666666;
 
  overflow-y: auto;
  padding-right: 6px;
  line-height: 28px;
}
@media (max-width: 1450px){
  .product-page .init-3 .sideBox .side_left .item .nav_cont li a{
    padding: 10px;
  }
  .product-page .init-3 .sideBox .side_left .item .nav_cont li li a{
    font-size: 14px;
  }
  .product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item li{
    margin-top: 7px;
  }
  .product-page .init-3 .sideBox .side_left .item .nav_cont li .nav_cont_item li a{
    padding: 5px 15px;
  }
  .product-page .init-3 .sideBox .side_left .item .nav_cont li a i{
    top: 11px;
  }
}
@media (max-width: 1250px){
  .product-page .init-3 .sideBox .side_left {
    display: none;
  }
  .product-page .init-3 .sideBox .side_right{
    width: 100%;
  }
}
@media (max-width: 1000px){
  .product-page .init-3 .container .content ul li {
    width: 33.33%;
  }
}
@media (max-width: 700px) {
  .product-page .init-3 .container .content ul li {
    width: 50%;
  } 
}
@media (max-width: 500px) {
  .product-page .init-3 .container .content ul li {
    width: 100%;
  }
}

.product-page .pro_init_1 {
  padding-top: 150px;
}

.product-page .pro_init_1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
}

.product-page .pro_init_1 .container .left {
  width: 49%;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.product-page .pro_init_1 .container .left .smallImg {
    width: 22.6%;
    float: left;
}
.product-page .pro_init_1 .container .left .smallImg ul {
    margin: -10px;
}
.product-page .pro_init_1 .container .left .smallImg ul .slick-track{
  display: block;
}
.product-page .pro_init_1 .container .left .smallImg ul li {
    padding: 10px;
}
.product-page .pro_init_1 .container .left .smallImg ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-page .pro_init_1 .container .left .smallImg ul li a img {
    display: block;
     border-radius: 16px;
    border: 1px solid #dcdcdc;
}
.product-page .pro_init_1 .container .left .bigImg {
    width: 77.4%;
    padding-left: 4%;
    display: inline-block;
}
.product-page .pro_init_1 .container .left .bigImg img{
  width: 100%;
}
.product-page .pro_init_1 .container .left .bigImg ul li{
  padding: 1px;

}
.product-page .pro_init_1 .container .left .bigImg ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.product-page .pro_init_1 .container .left .bigImg img{
  border-radius: 16px;
    border: 1px solid #dcdcdc;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow {
    width: 40px;
    height: 40px;
    background: #fffef9;
    color: transparent;
    font-size: 0;
    border: none;
    opacity: .8;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev {
    left: 12px;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev:after {
    background-image: url("../images/banner-btn-l.png");
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next {
    right: 12px;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next:after {
    background-image: url("../images/banner-btn-r.png");
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow:hover {
    background: var(--color);
}

.product-page .pro_init_1 .container .left .big_img {
  width: 100%;
  display: block;
}

.product-page .pro_init_1 .container .left .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-page .pro_init_1 .container .right .share ul li {
  width: 45px;
    text-align: center;
    margin-right: 10px;
    background: white;
    color: black;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .pro_init_1 .container .right .share ul li a {
    display: block;
}
.product-page .pro_init_1 .container .right .share ul li:hover {
    background: var(--color);
}

.product-page .pro_init_1 .container .shangxia{
  width: 100%;
  justify-content: space-between;
}

.product-page .pro_init_1 .container .shangxia a{
  display: block;
  padding-right: 10px;
  margin-top: 10px;
}



.product-page .pro_init_1 .container .left .swiper {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
  height: 115px;
  display: block;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-page .pro_init_1 .container .right {
  width: 45%;
}

.product-page .pro_init_1 .container .right .sub_img {
  width: 36px;
  margin-bottom: 15px;
}

.product-page .pro_init_1 .container .right .text_1 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #a8a8a8;
  font-weight:500;
}

.product-page .pro_init_1 .container .right .text_2 {
  font-size: 36px;
  line-height: 1.4;
  color: #4a4a4a;
  font-weight: bold;
  justify-content: space-between; 
}
.product-page .pro_init_1 .container .right .text_2 .text1{
 
  /*width: calc(100% - 160px);*/
}
.product-page .pro_init_1 .container .right .text_2 .img2{
  width: 150px;
  margin-left: 10px;
  margin-top: 10px;
}
.product-page .pro_init_1 .container .right .shangxia a{
  display: block;
}
.product-page .pro_init_1 .container .right .cont_list {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .right .cont_list .list {
  position: relative;
}

.product-page .pro_init_1 .container .right .cont_list .list .title {
  font-size: 18px;
  padding: 25px 0;
  padding-right: 30px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .title span {
  color: #4a4a4a;
  font-weight:bold;
  text-transform: uppercase;
}

.product-page .pro_init_1 .container .right .cont_list .list .title i {
  width: 20px;
  position: absolute;
  top: 22px;
  right: 0;
  font-size: 30px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .content {
  /*padding: 40px 0 0;*/
  font-size: 16px;
  color: #3f3f3f;
  line-height: 2;
  /*display: none;*/
  max-height: 510px;
  overflow: auto;
  padding-right: 10px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content table{
  width: 100% !important;
}
.product-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar {
  background: var(--color);
  height: 2px;
  width: 2px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar-thumb{
  background: var(--color);
  height: 2px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content::-webkit-scrollbar-thumb{
  background: var(--color);
  height: 2px;
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title i {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.product-page .pro_init_1 .container .right .cont_list .list:last-child .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li{
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li .con{
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li:last-child{
  margin-bottom: 0;
}
.product-page .pro_init_1 .container .right .btn{
  min-width: 210px;
  text-align: center;
  background: var(--color);
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 10px;
  transition: all .5s;
}
.product-page .pro_init_1 .container .right .btn:hover{
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.product-page .pro_init_1 .container .right .more{
  margin-top: 30px;
}

.product-page .pro_init_1 .container .right .more_cont {
  margin-top: 55px;
  border-color: #000;
  color: #000;
}
.product-page .pro_init_1 .container .right .editCont{
  justify-content: space-between;
}
.product-page .pro_init_1 .container .right .editCont .list{
  margin-top: 20px;
  cursor: pointer;
}
.product-page .pro_init_1 .container .right .editCont .list .img{
  width: 30px;
  height: 30px;
  filter: grayscale(1);
  transition: all .5s;
}
.product-page .pro_init_1 .container .right .editCont .list .text{
  width: calc(100% - 30px);
  padding-left: 10px;
  font-size: 18px;
}
.product-page .pro_init_1 .container .right .editCont .list .text span{
  border-bottom: 1px solid rgba(235,99, 12, 0);
  transition: all .5s;
}
.product-page .pro_init_1 .container .right .editCont .list:hover .img{
  filter: grayscale(0);
}
.product-page .pro_init_1 .container .right .editCont .list:hover .text span{
  border-bottom: 1px solid rgba(235,99, 12, 1);
  color:  rgba(235,99, 12, 1);
}
.product-page .pro_init_1 .container .left .colorCont{
  text-align: left;
}
.product-page .pro_init_1 .container .left .colorCont .tips{
  font-weight: bold;
}
.product-page .pro_init_1 .container .left .colorCont ul{
  margin: 0 -8px;
}
.product-page .pro_init_1 .container .left .colorCont ul li{
  padding: 0 8px;
  margin-top: 10px;
}
.product-page .pro_init_1 .container .left .colorCont ul li .box .img{
  height: 60px;
  background-size: cover;
}
.product-page .pro_init_1 .container .left .colorCont ul li .box .text{
  text-align: center;
  margin-top: 10px;
}

.product-page .prodet-2 {
    padding: 90px 0;
}
.product-page .prodet-2 .options ul {
    border-bottom: 1px solid #d2d2d2;
}
.product-page .prodet-2 .options ul li {
    margin-right: 100px;
    font-size: 24px;
    color: #b7b7b7;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 10px 10px;
    cursor: pointer;
    line-height: 1.4;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-page .prodet-2 .options ul li:after {
    content: '';
    height: 3px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: var(--color);
}
.product-page .prodet-2 .options ul li:hover,
.product-page .prodet-2 .options ul li.active {
    color: #373330;
}
.product-page .prodet-2 .options ul li:hover:after,
.product-page .prodet-2 .options ul li.active:after {
    width: 100%;
}
.product-page .prodet-2 .ret {
    margin-top: 50px;
}
.product-page .prodet-2 .ret .content {
    font-size: 18px;
    line-height: 32px;
}
.product-page .prodet-2 .ret .content dl dd {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f8f8f8;
}
.product-page .prodet-2 .ret .content dl dd h4 {
    font-size: 20px;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-page .prodet-2 .ret .content dl dd .con {
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 18px;
    line-height: 1.8;
}

.product-page .form ul {
    margin: -17px;
}
.product-page .form ul li {
    padding: 17px;
}
.product-page .form ul li input,
.product-page .form ul li textarea {
    width: 100%;
    line-height: 24px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d2d2d2;
    font-size: 18px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-align: left;
}
.product-page .form ul li input:focus,
.product-page .form ul li textarea:focus {
    border-color: var(--color);
    background: rgba(130, 216, 205, 0.03);
}
.product-page .form ul li input::-webkit-input-placeholder, .product-page .form ul li textarea::-webkit-input-placeholder {
    color: #898989;
}
.product-page .form ul li input:-moz-placeholder, .product-page .form ul li textarea:-moz-placeholder {
    color: #898989;
}
.product-page .form ul li input::-moz-placeholder, .product-page .form ul li textarea::-moz-placeholder {
    color: #898989;
}
.product-page .form ul li input:-ms-input-placeholder, .product-page .form ul li textarea:-ms-input-placeholder {
    color: #898989;
}
.product-page .form ul li input::placeholder,
.product-page .form ul li textarea::placeholder {
    color: #898989;
}
.product-page .form ul li.wid-100 {
    width: 100%;
}
.product-page .form ul li textarea {
    height: 210px;
}
.product-page .form ul li input[type="submit"] {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    background: #000;
    background: var(--color);
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    width: auto;
    border: none;
}
.product-page .form ul li input[type="submit"]:hover {
    opacity: .7;
}

@media screen and (max-width: 1800px) {
    .product-page .form ul li input,
    .product-page .form ul li textarea {
        padding: 15px;
    }
}
@media screen and (max-width: 1500px) {
  .product-page .pro_init_1 .container .right .share ul li {
      width: 35px;
      height: 35px;
      line-height: 36px;
  }
    .product-page .prodet-2 {
        padding: 70px 0;
    }
    .product-page .prodet-2 .options ul li {
        font-size: 20px;
    }
     .product-page .form ul li input,
    .product-page .form ul li textarea {
        font-size: 16px;
    }
}

@media screen and (max-width: 1250px) {
  .product-page .pro_init_1 .container .left .bigImg {
        padding-left: 2.5%;
  }
  .product-page .form ul li {
        padding: 10px;
    }
    .product-page .form ul {
        margin: -10px;
    }
}

@media screen and (max-width: 1000px) {
  .product-page .pro_init_1 .container .left .bigImg {
        padding-left: 4%;
  }
  .product-page .pro_init_1 .container .left .bigImg {
        padding-left: 2%;
  }
  .product-page .pro_init_1 .container .left .smallImg {
        display: none;
    }
   .product-page .pro_init_1 .container .left .bigImg {
        width: 100%;
        padding-left: 0;
  }

    .product-page .pro_init_1 .container .left {
    width: 100%;
    position: relative;
    top: 0;
  }

  .product-page .pro_init_1 .container .right {
    width: 100%;
    margin-top: 30px;
  }

  .product-page .pro_init_1 .container .right {
    text-align: left;
  }

  .product-page .pro_init_1 .container .right .sub_img {
    display: block;
    margin: auto;
  }

  .product-page .pro_init_1 .container .right .more {
    margin: auto;
    margin-top: 40px;
  }

  
  .product-page .pro_init_1 {
    margin-top: 40px;
    padding-top: 40px;
  }

  .product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 90vw;
  }

  .product-page .pro_init_1 .container .right .text_1 {
    margin-top: 10px;
    font-size: 16px;
  }

  .product-page .pro_init_1 .container .right .text_2 {
    font-size: 22px;
    line-height: 40px;
    margin-top: 10px;
  }

  .product-page .pro_init_1 .container .right .cont_list {
    margin-top: 20px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title {
    padding: 15px 0;
    font-size: 18px;
    padding-right: 25px;
    padding-bottom: 5px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title i {
    top: 16px;
    font-size: 24px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .content {
    padding: 20px 0;
  }

    .product-page .prodet-2 .options ul li {
        margin-right: 25px;
    }
    .product-page .prodet-2 .options {
        display: none;
    }
    .product-page .prodet-2 .ret .slide {
        display: block;
        margin-top: 30px;
    }
    .product-page .prodet-2 {
        padding-top: 0;
    }
    .product-page .prodet-2 .ret .content {
        font-size: 14px;
        line-height: 2;
        margin-top: 20px;
    }
    .product-page .prodet-2 .ret .det {
      overflow-x: auto;
    }
    .product-page .prodet-2 .ret .det table{
      table-layout: auto;
    }
    .product-page .prodet-2 .ret .det table td{
      min-width: 200px;
      width: auto;
      font-size: 14px;
line-height: 28px;

    }

    .product-page .form ul li input,
    .product-page .form ul li textarea {
        padding: 10px;
    }
    .product-page .form ul li input[type="submit"] {
        padding-left: 25px;
        padding-right: 25px;
        font-size: 16px;
    }
}


@media screen and (max-width: 1000px) {
  .product-page .pro_init_1 .container .left .colorCont ul li{
    width: 20%;
  }
}

@media screen and (max-width: 500px) {
  .product-page .pro_init_1 .container .left .colorCont ul li{
    width: 50%;
  }
  .product-page .prodet-2 .ret {
        margin-top: 0;
    }
  .product-page .prodet-2 .ret .slide:first-child {
      margin-top: 0;
  }
  .product-page .form ul li{
    width: 100%;
  }
  .product-page .form ul li input, .product-page .form ul li textarea{
    width: 100%;
  }
}

.news-page .ny-title {
  margin-top: 4px;
}
.news-page .top .left {
  width: 55.14%;
}
.news-page .top .left time {
  color: #999999;
}
.news-page .top .left .title {
  margin-top: 4px;
}
.news-page .top .left .con {
  color: #000;
}
.news-page .top .left .link {
  font-size: 16px;
  padding: 9px 9px 10px 8px;
  color: #fff;
  background: var(--color);
  border-radius: 19px;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
}
.news-page .top .left .link::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .top .left .link:hover::after {
  width: 100%;
}
.news-page .top .right {
  width: 44.86%;
}
.news-page ul li {
  border-top: 1px solid #e3e3e3;
}
.news-page ul li .text {
  width: 80%;
}
.news-page ul li .icon {
  width: 41px;
  height: 41px;
  border: solid 1px var(--color);
  border-radius: 50%;
  text-align: center;
  line-height: 41px;
  font-size: 20px;
  color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page ul li .icon i{
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page ul li .icon:hover {
  background-color: var(--color);
  color: #fff;
}
.news-page ul li:last-child {
  border-bottom: 1px solid #e3e3e3;
}
.news-page ul li .icon:hover i{
  -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.news-page .m-page {
  margin-top: 92px;
}
@media screen and (max-width: 500px){
   .news-page .top .left{
    width: 100%;
  }
  .news-page .top .right{
    width: 100%;
    margin-top: 20px;
  }
}
.contact-1 {
  padding: 120px 0;
}
.contact-1 .ui.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-1 .ui.container .formbox {
  width: 55%;
}
.contact-1 .ui.container .formbox .h2 {
  color: #000;
}
.contact-1 .ui.container .formbox .h2.active{
  color: var(--color);
}
.contact-1 .ui.container .formbox .h2:before {
  left: 0!important;
}
.contact-1 .ui.container .formbox p {
  opacity: 0.5;
  margin-top: 35px;
}
.contact-1 .ui.container .infobox {
  width: 35%;
}
.contact-1 .ui.container .infobox .infos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  /*-webkit-align-items: center;*/
  -moz-box-align: center;
  -ms-flex-align: center;
  /*align-items: center;*/
  margin-bottom: 45px;
}
.contact-1 .ui.container .infobox .infos i {
  font-size: 30px;
  color: var(--color);
  margin-right: 20px;
}
.contact-1 .ui.container .infobox .infos .text {
  padding-bottom: 50px;
  position: relative;
}
.contact-1 .ui.container .infobox .infos .text:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: var(--color);
  left: 20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
.contact-1 .ui.container .infobox .infos .text h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color);
}
.contact-1 .ui.container .infobox .infos .text p {
  opacity: 0.5;
  line-height: 1.5;
  color: #000;
    font-weight: 500;
}
.contact-1 .ui.container .infobox .sharebox {
  margin-top: 45px;
}
.contact-1 .ui.container .infobox .sharebox ul.sharelist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-1 .ui.container .infobox .sharebox ul.sharelist li {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  background: #000;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  margin-right: 10px;
  border-radius: 100%;
}
.contact-1 .ui.container .infobox .sharebox ul.sharelist li:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--color);
}
.contact-1 .form {
  margin-top: 35px;
}
.contact-1 .form form ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-1 .form form ul li {
  width: 48%;
  position: relative;
  margin-bottom: 40px;
}
.contact-1 .form form ul li i {
  font-size: 25px;
  color: var(--color);
  position: absolute;
  right: 15px;
  top: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-1 .form form ul li input[type="text"],
.contact-1 .form form ul li textarea {
  width: 100%;
  border: 1px solid #aaa;
  line-height: 50px;
  padding: 0 15px;
  color: #000;
  border-radius: 10px;
  font-size: 16px;
}
.contact-1 .form form ul li input[type="text"]::-webkit-input-placeholder, 
.contact-1 .form form ul li textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact-1 .form form ul li input[type="text"]:-moz-placeholder, 
.contact-1 .form form ul li textarea:-moz-placeholder {
  color: #aaa;
}
.contact-1 .form form ul li input[type="text"]::-moz-placeholder, 
.contact-1 .form form ul li textarea::-moz-placeholder {
  color: #aaa;
}
.contact-1 .form form ul li input[type="text"]:-ms-input-placeholder, 
.contact-1 .form form ul li textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact-1 .form form ul li input[type="text"]::placeholder,
.contact-1 .form form ul li textarea::placeholder {
  color: #aaa;
}
.contact-1 .form form ul li input[type="text"] {
  height: 50px;
}
.contact-1 .form form ul li textarea {
  height: 250px;
}
.contact-1 .form form ul li input[type="submit"] {
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 40px;
  display: inline-block;
  border-radius: 8px;
  
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 20px;
  border: none;
  background: var(--color);
}
.contact-1 .form form ul li input[type="submit"]:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000;
}
.contact-1 .form form ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1000px){
   .contact-1 .ui.container .infobox .infos i {
    font-size: 70px;
  }
   .contact-1 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 700px){
  .contact-1 .ui.container .formbox {
    width: 100%;
  }
  .contact-1 .ui.container .infobox {
    width: 100%;
  }
}

.dz-body .dz5 {
  overflow: hidden; 
}
.dz-body .dz5 .container .d5-m { 
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dz-body .dz5 .container .d5-m .d5-c {
  background: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dz-body .dz5 .container .d5-m .d5-c .d5-bg {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/d5-2.jpg) no-repeat center / cover;
  clip-path: circle(0% at 50% 50%);
}
.dz-body .dz5 .container .d5-m .d5-c:hover .d5-bg {
  clip-path: circle(100% at 50% 50%);
}
.dz-body .dz5 .container .d5-m .d5-c:hover .d5-box .d5-box-t {
  background: #fff;
}
.dz-body .dz5 .container .d5-m .d5-c:hover .d5-box .d5-box-b .d5-box-l {
  color: #fff;
}
.dz-body .dz5 .container .d5-m .d5-c .d5-box {
  position: relative;
  z-index: 2; 
}
.dz-body .dz5 .container .d5-m .d5-c .d5-box .d5-box-t {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  width: 40px;
  height: 40px;
    background: rgb(242 239 231);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dz-body .dz5 .container .d5-m .d5-c .d5-box .d5-box-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.dz-body .dz5 .container .d5-m .d5-c .d5-box .d5-box-b .d5-box-l {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}
.dz-body .dz5 .container .d5-m .d5-c .d5-box .d5-box-b .d5-box-r {
  
  font-weight: 400;
  font-size: 24px;
  color: #e6e6e6;
  line-height: 1;
}
@media screen and (max-width: 1250px){
   .dz-body .dz5 .container .d5-m {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .dz-body .dz5 .container .d5-m {
    grid-template-columns: repeat(3, 1fr);
  } 
}
@media screen and (max-width: 700px) {
  .dz-body .dz5 .container .d5-m {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .dz-body .dz5 .container .d5-m {
    grid-template-columns: repeat(1, 1fr);
  }
   
}

#sidebar{
  right: 90px;
  bottom: 10%;
  /*position: absolute;*/
}
#sidebar ul li{
  border-radius: 50% !important;
  height: 4em;
  width: 4em;
}
#sidebar ul li.totop{
  opacity: 0;
}
@media screen and (max-width: 1700px){
  #sidebar ul li.totop{
    zoom: 0.7;
  }
   #sidebar{
    right: 30px;
  }
}
@media screen and (max-width: 1450px){
  #sidebar{
    right: 30px;
  }
}
.releted-product{
  overflow: hidden;
}
.releted-product ul li .img2{
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
  opacity: 0;
}
.releted-product ul li:hover .img2{
  opacity: 1;
}
.releted-product .slick-arrow{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
   -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  border-radius: 50%;
  border: none;
  background: white;
}
.releted-product .slick-prev{
  left: -60px;
}
.releted-product .slick-next{
  right: -60px;
}
.releted-product .slick-prev::after{
  content: "\e6de";
  font-family: "iconfont";
  font-size: 18px;
}
.releted-product .slick-next::after{
  content: "\e618";
  font-family: "iconfont";
  font-size: 18px;
}



.production-page .service-1 {
  /*background-color: #eff3eb;*/
  position: relative;
}
.production-page .service-1:before {
  content: '';
  position: absolute;
  bottom: 100%;
  height: 10%;
  left: 0;
  width: 100%;
  background-color: inherit;
  z-index: -1;
}
.production-page .service-1 .left {
  padding-right: 9%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.production-page .service-1 .left .text {
  margin: 2.5em 0;
}
.production-page .service-1 .left .text p {
  margin-top: 2em;
}
.production-page .service-1 .left .list {
  text-align: center;
  font-weight: bold;
}
.production-page .service-1 .left .list ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.production-page .service-1 .left .list li {
  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;
  color: var(--color);
  margin-top: 2em;
  cursor: pointer;
  cursor: hand;
  position: relative;
  z-index: 1;
}
.production-page .service-1 .left .list li:before {
  content: '';
  width: 1px;
  height: 3.5em;
  background-color: var(--color);
  position: absolute;
  left: 0.38888889em;
  top: 50%;
  z-index: -1;
}
.production-page .service-1 .left .list li:first-child {
  margin-top: 0;
}
.production-page .service-1 .left .list li i {
  width: 0.77777778em;
  height: 0.77777778em;
  border-radius: 100%;
  border: 1px solid var(--color);
  background-color: white;
  margin-right: 1.4em;
}
.production-page .service-1 .left .list li span {
  opacity: .3;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.production-page .service-1 .left .list li.active span {
  opacity: 1;
}
.production-page .service-1 .left .list li:last-child:before {
  display: none;
}

.production-page .service-1 .right .list ul {
  margin: -20px 0;
}
.production-page .service-1 .right .list ul li {
  padding: 20px 0;
}
.production-page .service-1 .right .list ul li .box {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}
.production-page .service-1 .right .list ul li .box .img {
  width: 50%;
  height: 310px;
  border-radius: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.production-page .service-1 .right .list ul li .box .content {
  margin-left: 5%;
  width:50%;
}
.production-page .service-1 .right .list ul li .box .content span.h6 {
  font-weight: bold;
}
.production-page .service-1 .right .list ul li .box .content .text {
  margin-top: 1em;
}
.production-page .service-1 .right .list ul .slick-slide:nth-child(odd) li .box .img {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 150px;
}
@media screen and (max-width: 1250px) {
   .production-page .service-1 .right .list ul li .box .content span.h6 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px){
   .production-page .service-1 .left {
    width: 100%;
    padding-right: 0;
  } 
  .production-page .service-1 .right {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  } 
  .production-page .service-1 .ui > .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
   .production-page .service-1 .left {
    position: static;
  }
  .production-page .service-1 .left .list {
    display: none;
  }
  .production-page .service-1 .right .list ul li .box .img {
    height: 250px;
  }
}
@media screen and (max-width: 700px){
   .production-page .service-1 .right .list ul li .box .content {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
  }
  .production-page .service-1 .right .list ul li .box .img {
    height: 250px;
    width: 100%;
  }
  .production-page .service-1 .right .list ul li .box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px){
   .production-page .service-1 .right .list ul li .box .img {
    height: 120px;
    width: 100%;
    border-radius: 15px !important;
  }
  .production-page .service-1 .right .list ul li .box .content {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .production-page .service-1 .right .list ul li .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}