@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara.eot');
  src: url('../fonts/Candara.eot?#iefix') format('embedded-opentype'), url('../fonts/Candara.woff2') format('woff2'), url('../fonts/Candara.woff') format('woff'), url('../fonts/Candara.ttf') format('truetype');
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Candara';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara-Bold.eot');
  src: url('../fonts/Candara-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Candara-Bold.woff2') format('woff2'), url('../fonts/Candara-Bold.woff') format('woff'), url('../fonts/Candara-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Candara';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara-Light.eot');
  src: url('../fonts/Candara-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Candara-Light.woff2') format('woff2'), url('../fonts/Candara-Light.woff') format('woff'), url('../fonts/Candara-Light.ttf') format('truetype');
  font-weight: 630;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Candara";
  max-width: 1920px;
  --color: #0091a7;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1750px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.body-overflow-box.inner {
    background-color: #f2efe7;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 35px;
  left: 0;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu {
  margin: 0 auto;
  height: 90px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 5%;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}
#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;
  gap: 2.5em;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:first-child {
  display: none;
}
#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: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .box {
  height: 100%;
}
#header .nav .ui.menu .inquiry {
  padding-left: 2.5em;
  padding-right: 1.5em;
  text-align: center;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .inquiry:before {
  content: '';
  width: 150%;
  padding-top: 150%;
  position: absolute;
  left: 0;
  bottom: -100%;
  background-color: var(--color);
  z-index: -1;
  border-radius: 100%;
}
#header.active {
  background-color: #11375f;
  top: 0;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1;
  font-style: italic;
}
.text {
  line-height: 1.55555556;
  font-weight: 500;
}
.more {
  height: 2.77777778em;
  padding: 0 1.66666667em;
  background-color: white;
  color: black;
  font-style: italic;
  font-weight: bold;
  padding-bottom: .2em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  background-color: var(--color);
  color: white;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
@-webkit-keyframes wordsloop {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-1250px);
    transform: translateX(-1250px);
  }
}
@-moz-keyframes wordsloop {
  0% {
    -moz-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-1250px);
    transform: translateX(-1250px);
  }
}
@keyframes wordsloop {
  0% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-1250px);
    -moz-transform: translateX(-1250px);
    transform: translateX(-1250px);
  }
}
@-webkit-keyframes pd {
  0% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-moz-keyframes pd {
  0% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes pd {
  0% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    transform: translateY(15px);
  }
}
#index-body span.tag {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
  text-transform: uppercase;
}
#index-body .title {
  font-size: 80px;
  line-height: 1.2;
  color: #000526;
  font-weight: bold;
  font-style: italic;
}
#index-body .init-1 {
  padding: 23px 0 22px;
  -webkit-animation: wordsloop 24s linear infinite;
  -moz-animation: wordsloop 24s linear infinite;
  animation: wordsloop 24s linear infinite;
}
#index-body .init-1 p {
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 650;
}
#index-body .init-1 p span {
  padding: 0 71px;
  position: relative;
}
#index-body .init-1 p span:before {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 3px;
  -webkit-transform: skew(-15deg);
  -moz-transform: skew(-15deg);
  -ms-transform: skew(-15deg);
  transform: skew(-15deg);
}
#index-body .init-2 {
  position: relative;
}
#index-body .init-2 .box .item {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
#index-body .init-2 .box .item .text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: .8;
}
#index-body .init-2 .box .item .ig {
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 98px;
  text-align: center;
  color: #fff;
}
#index-body .init-2 .box .item .title {
  color: #fff;
  font-size: 110px;
  line-height: 1;
  margin-top: 24px;
}
#index-body .init-2 .box .item .link {
  font-size: 18px;
  line-height: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 14px;
}
#index-body .init-2 .box .item .link img {
  display: inline-block;
  margin-left: 9px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .box .item .link:hover img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .init-2 .box .item .img {
  margin-top: 52px;
}
#index-body .init-2 .box .item .img img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#index-body .init-3 {
  background: #f6f6f6;
  padding: 120px 0 90px;
  position: relative;
}
#index-body .init-3 .ui.container {
  max-width: 1722px;
}
#index-body .init-3 .header .title {
  margin-top: 12px;
  font-weight: 650;
  color: var(--color);
  letter-spacing: .04em;
}
#index-body .init-3 .header .right .link {
  font-size: 18px;
  line-height: 1;
  color: #2e2c2a;
}
#index-body .init-3 .header .right .link img {
  display: inline-block;
  margin-left: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .header .right .link:hover img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .init-3 .header .right .arrow {
  text-align: center;
  margin-top: 43px;
}
#index-body .init-3 .header .right .arrow a {
  display: inline-block;
  width: 48px;
  height: 37px;
  border-radius: 25px;
  text-align: center;
  line-height: 36px;
  border: 1px solid #babab9;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .header .right .arrow a .iconfont {
  font-size: 20px;
}
#index-body .init-3 .header .right .arrow a.next {
  margin-left: 5px;
}
#index-body .init-3 .header .right .arrow a:hover {
  background: #091733;
  color: #fff;
  border-color: #091733;
}
#index-body .init-3 .content {
  margin-top: 91px;
  overflow: hidden;
}
#index-body .init-3 .content img {
    background-color: white;
}
#index-body .init-3 .content ul li .img-box .i1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .content ul li .img-box:hover .i1 {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#index-body .init-3 .content ul li .text {
  padding: 19px 40px 0 5px;
}
#index-body .init-3 .content ul li .text .tit {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 9px;
}
#index-body .init-3 .content ul li .text .color {
  margin: -6px;
}
#index-body .init-3 .content ul li .text .color span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 6px;
  cursor: pointer;
}
#index-body .init-3 .content .swiper-scrollbar {
  position: relative;
  width: 9.575%;
  height: 2px;
  background-color: #ffffff;
  margin: 55px auto 0;
  border-radius: 0;
  left: 0;
  bottom: 0;
}
#index-body .init-3 .content .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color);
}
#index-body .init-3 .gd {
  position: absolute;
  z-index: 1;
  top: -41px;
  left: 0;
  width: 100%;
  text-align: center;
}
#index-body .init-3 .gd span {
  display: inline-block;
  width: 29px;
  height: 60px;
  background-color: var(--color);
  border-radius: 15px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 0 6px 18px 0;
  font-size: 10px;
  position: relative;
  -webkit-animation: pd 5s linear infinite alternate;
  -moz-animation: pd 5s linear infinite alternate;
  animation: pd 5s linear infinite alternate;
  cursor: pointer;
}
#index-body .init-3 .gd span em {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
}
#index-body .init-3 .gd span:after {
  content: '';
  width: 1px;
  height: 14px;
  background-color: #ffffff;
  position: absolute;
  bottom: 7px;
  left: 14px;
}
#index-body .init-4 {
  padding: 112px 0 146px;
  background: #fff;
  position: relative;
}
#index-body .init-4 .ui.container {
  max-width: 1650px;
}
#index-body .init-4 .top {
  padding-top: 74px;
  position: relative;
  z-index: 1;
}
#index-body .init-4 .top .title {
  font-weight: 650;
  color: var(--color);
}
#index-body .init-4 .top .desc {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #000526;
  width: 80%;
  margin: 45px auto 0;
  text-align: left;
  font-weight: 630;
  font-style: italic;
}
#index-body .init-4 .top .desc h1 {
  display: inline;
}
#index-body .init-4 .top .con {
  max-width: 495px;
  margin: 40px auto 0;
}
#index-body .init-4 .top .con p {
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  letter-spacing: .02em;
}
#index-body .init-4 .top .con .link {
  font-size: 18px;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 33px;
}
#index-body .init-4 .top .con .link img {
  margin-left: 7px;
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .top .con .link:hover img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#index-body .init-4 .bottom {
  margin-top: 157px;
}
#index-body .init-4 .bottom ul {
  margin-right: -94px;
}
#index-body .init-4 .bottom ul li {
  padding-right: 94px;
  text-align: center;
}
#index-body .init-4 .bottom ul li .num {
  font-size: 80px;
  letter-spacing: 3px;
  color: #000526;
  line-height: 1;
}
#index-body .init-4 .bottom ul li .num sub {
  display: inline-block;
  vertical-align: bottom;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 6px;
}
#index-body .init-4 .bottom ul li p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #2e2c2a;
  margin-top: 13px;
}
#index-body .init-4 .img-box {
  position: absolute;
  overflow: unset;
}
#index-body .init-4 .icon {
  top: 0;
  left: 8%;
  width: 17.576%;
}
#index-body .init-4 .icon1 {
  top: 35%;
  left: 38px;
  width: 27.758%;
}
#index-body .init-4 .icon2 {
  right: 35px;
  top: 20%;
  width: 28.849%;
}
#index-body .init-4 .icon3 {
  right: 20%;
  bottom: 0px;
  width: 27.576%;
}
#footer .f-header {
  background: #000526;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
}
#footer .f-content {
  background: #11375f;
  padding: 100px 0 200px;
  color: #fff;
}
#footer .f-content .tit {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-weight: 650;
}
#footer .f-content ul li {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 22px;
}
#footer .f-content ul li a {
  position: relative;
  display: inline-block;
}
#footer .f-content ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content ul li a:hover:after {
  width: 100%;
}
#footer .f-content ul li:last-child {
  margin-bottom: 0;
}
#footer .f-content .f-contact {
  max-width: 387px;
}
#footer .f-content .f-contact .tit {
  padding-left: 21px;
}
#footer .f-content .f-contact ul li {
  margin-bottom: 35px;
}
#footer .f-content .f-contact ul li i {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  margin-top: 5px;
}
#footer .f-content .f-contact ul li span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
  width: 92%;
}
#footer .f-content .f-contact ul li:nth-child(1) i {
  vertical-align: top;
  margin-top: 3px;
}
#footer .f-content .f-contact ul li:nth-child(2) i {
  vertical-align: top;
  margin-top: -3px;
}
#footer .f-content .f-contact ul li:nth-child(2) span {
  vertical-align: top;
}
#footer .f-copy {
  font-size: 14px;
  background: #60b7c6;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
  position: relative;
  color: white;
  font-weight: 300;
}
#footer .f-copy .zdy {
  padding-left: 18px;
}
#footer .f-copy svg {
  display: inline-block;
  vertical-align: top;
  width: auto;
  max-height: 26px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  fill: white;
  margin-top: -2px;
}
#footer .f-copy .share a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 21px;
}
#footer .f-copy .share a:last-child {
  margin-right: 0;
}
#footer .f-copy .share #ewm {
  width: 42px;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid #fff;
}
@media screen and (max-width: 1680px) {
  .ui.container,
  #banner .ui.container,
  #index-body .init-3 .ui.container {
    max-width: 1400px;
  }
  #header .nav {
    padding: 35px 0 35px 40px;
  }
  #index-body .title {
    font-size: 76px;
  }
  #header .nav1 .ui.menu .menu-box {
    padding: 17px 40px;
  }
  #header .nav1 .ui.menu .menu-box ul.menu > li {
    margin-right: 40px;
  }
  #header .inquirys {
    zoom: .8;
  }
  #header .nav1 .ui.menu .sl {
    margin: 0 102px 0 30px;
  }
  #header .nav1 .ui.menu .sl .h-search {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .ui.container,
  #banner .ui.container,
  #index-body .init-3 .ui.container {
    max-width: 1220px;
  }
  #header .nav1 .ui.menu .menu-box {
    padding: 17px 30px;
  }
  #header .nav1 .ui.menu .menu-box ul.menu > li {
    margin-right: 22px;
    font-size: 16px;
  }
  #banner .swiper-slide .text .box .title {
    font-size: 80px;
  }
  #index-body .title {
    font-size: 65px;
  }
  #index-body .init-2 .box .item .title {
    font-size: 96px;
  }
}
@media screen and (max-width: 1280px) {
  .ui.container,
  #banner .ui.container,
  #index-body .init-3 .ui.container {
    max-width: 1080px;
  }
  #banner .swiper-slide .text .box .title {
    font-size: 72px;
  }
  #header .nav1 .ui.menu .menu-box {
    padding: 17px 20px;
  }
  #header .nav1 .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
    margin-right: 20px;
  }
  #header .nav1 .ui.menu .sl {
    padding: 18px 20px 14px;
  }
  #header .nav1 .ui.menu .sl .h-language span,
  #header .nav1 .ui.menu .sl .h-search span {
    font-size: 14px;
  }
  #index-body .init-2 .box .item .title {
    font-size: 80px;
  }
  #index-body .init-2 .box .item .img {
    width: 70%;
    margin: 52px auto 0;
  }
  #index-body .init-4 .top .desc {
    font-size: 30px;
  }
  #index-body .init-4 .icon3 {
    right: 14%;
  }
  #index-body .title {
    font-size: 57px;
  }
  #footer .f-content .f-contact {
    max-width: 320px;
  }
  #footer .f-content .f-contact ul li span {
    width: 90%;
  }
  #footer .f-copy .zdy {
    padding-left: 6px;
  }
}
@media screen and (max-width: 1100px) {
  #index-body .init-3 .ui.container {
    max-width: 970px;
  }
  #index-body .init-2 .box .item .title {
    font-size: 70px;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-2 .box .item .ig {
    padding-top: 60px;
    background-size: cover;
  }
  #index-body .init-2 .box .item .img {
    width: 90%;
  }
  #index-body .init-2 .box .item .title {
    font-size: 50px;
  }
  #index-body .init-3 {
    padding: 60px 0;
  }
  #index-body .init-3 .content {
    margin-top: 40px;
  }
  #index-body .init-4 {
    padding: 60px 0;
  }
  #index-body .init-4 .icon {
    width: 28%;
  }
  #index-body .init-4 .icon1 {
    width: 32%;
  }
  #index-body .init-4 .icon2 {
    width: 36%;
  }
  #index-body .init-4 .icon3 {
    width: 40%;
    bottom: 15%;
  }
  #index-body .init-4 .top .desc {
    font-size: 24px;
  }
  #footer .f-content {
    padding: 60px 0;
  }
  #footer .f-content .f-nav,
  #footer .f-content .f-link,
  #footer .f-content .f-product {
    display: none;
  }
  #footer .f-content .f-contact {
    max-width: 420px;
  }
  #footer .f-copy {
    padding: 20px 0;
  }
  #footer .f-copy .ui.container {
    display: block;
  }
  #footer .f-copy .share {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .more {
    font-size: 16px;
    padding: 12px 26px;
  }
  #banner .swiper-slide .text .box .btn {
    margin-top: 20px;
  }
  #banner .swiper-slide .text .box .more:nth-child(2) {
    padding: 12px 44px;
  }
  #index-body .init-2 .box .item .ig {
    padding-top: 30px;
  }
  #index-body .init-2 .box .item .title {
    font-size: 36px;
  }
  #index-body .init-3 {
    padding: 30px 0;
  }
  #index-body .init-3 .header {
    display: block;
  }
  #index-body .init-3 .header .title {
    margin-top: 0;
  }
  #index-body .init-3 .header .right {
    padding-top: 20px;
  }
  #index-body .init-3 .header .right .arrow {
    text-align: left;
    margin-top: 20px;
  }
  #index-body .init-3 .content {
    margin-top: 20px;
  }
  #index-body .init-3 .content ul li .text {
    padding: 16px 0 0 0;
  }
  #index-body .init-3 .content .swiper-scrollbar {
    width: 20%;
    margin: 30px auto 0;
  }
  #index-body .init-4 {
    padding: 30px 0;
  }
  #index-body .init-4 .img-box {
    display: none;
  }
  #index-body .init-4 .top {
    padding-top: 0;
  }
  #index-body .init-4 .top .desc {
    width: 100%;
    margin: 20px auto 0;
  }
  #index-body .init-4 .top .con {
    margin-top: 30px;
  }
  #index-body .init-4 .bottom {
    margin-top: 30px;
  }
  #index-body .init-4 .bottom ul {
    margin-right: -30px;
  }
  #index-body .init-4 .bottom ul li {
    padding-right: 30px;
  }
  #footer .f-content {
    padding: 30px 0;
  }
  #footer .f-content .ui.container {
    display: block;
  }
  #footer .f-content .f-logo {
    width: 100%;
  }
  #footer .f-content .f-contact {
    max-width: 100%;
    margin-top: 20px;
  }
  .fixed-toolbar {
    right: 10px;
    bottom: 13%;
  }
}
@media screen and (max-width: 500px) {
  .more {
    font-size: 14px;
    padding: 10px 20px;
  }
  #index-body .title {
    font-size: 40px;
  }
  #index-body .init-1 p span {
    padding: 0 30px;
  }
  #index-body .init-2 .box .item .title {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 0;
  }
  #index-body .init-2 .box .item .link {
    font-size: 16px;
  }
  #index-body .init-3 .header .title {
    font-size: 40px;
  }
  #index-body .init-3 .content .swiper-scrollbar {
    width: 30%;
  }
  #index-body .init-4 .top .desc {
    font-size: 20px;
    line-height: 1.4;
  }
  #index-body .init-4 .top .con p {
    line-height: 1.6;
  }
  #index-body .init-4 .bottom ul {
    margin-right: -15px;
  }
  #index-body .init-4 .bottom ul li {
    padding-right: 15px;
  }
  #index-body .init-4 .bottom ul li .num {
    font-size: 40px;
  }
  #index-body .init-4 .bottom ul li p {
    font-size: 14px;
    line-height: 2;
  }
}
img {
  width: auto;
}
#index-body .init-5 {
  color: white;
}
#index-body .init-5 span.h6 {
  font-weight: bold;
  line-height: 1;
  letter-spacing: .04em;
}
#index-body .init-5 span.h6 em {
  font-style: italic;
}
#index-body .init-5 span.h6 sub {
  vertical-align: baseline;
}
#index-body .init-6 {
  background-color: #f6f6f6;
}
#index-body .init-6 .title {
  letter-spacing: .04em;
  color: #60b7c6;
  font-weight: 650;
}
#index-body .init-6 .text {
  line-height: 1.5;
  color: #575757;
  font-weight: 300;
}
#index-body .init-6 span.h6 {
  font-weight: 500;
}
#index-body .init-7 .title {
  letter-spacing: .04em;
  color: #60b7c6;
  font-weight: 650;
}
#index-body .init-7 .list li {
  border-top: 1px solid #e1e1e1;
}
#index-body .init-7 .list li span.cat {
  min-width: 13%;
}
#index-body .init-7 .list li .link {
  margin-left: auto;
  margin-right: 1em;
}
#index-body .init-7 .list li span.h6 {
  line-height: 1.2;
  font-weight: 650;
}
@media screen and (max-width: 700px) {
  #index-body .init-6 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-6 .box .left,
  #index-body .init-6 .box .right {
    width: 100%;
    text-align: left;
  }
  #index-body .init-6 .box .left .slide,
  #index-body .init-6 .box .right .slide {
    margin-bottom: 30px;
  }
  #index-body .init-6 .box .center {
    display: none;
  }
  #index-body .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 500px) {
  #banner .text,
  #banner .more {
    display: none;
  }
  .font-100 {
    font-size: 28px;
  }
}
.inner-banner .container,
.inner-page .container {
    max-width: 1480px;
}
.inner-banner {
    position: relative;
    /*height: 630px;*/
    border-radius: 0 0 75px 75px;
    
}
.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{
    
}
.about-page .about-1 {
    padding-top: 100px;
    z-index: 1;
}
.about-page .about-1 .num{
    font-family: "Arial";
}
.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;
    min-height: 130px;
}
.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: 1px 0;
    }
    .about-page .about-6 .left .img {

        height: 540px;
    }
    .about-page .about-4 ul li .ig .con{
        min-height: 162px;
    }
}
@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: 100%;
    right: 0;
    position: absolute;
    top: 0;
    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: auto;
    max-height: 200px;
    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: 50px;
}

.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;
    color: #0091A7;
}

.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: #ebebeb;
}
.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;
    }
    p.foothaite.font-16 {
        display: none !important;
    }
    .font-22,
    .font-18,
    .font-24 {
        font-size: 16px !important;
        line-height: 30px !important;
    }
}

/*26-7-14 add css kaishi*/
.xbli{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.xbli .xb{
    display: flex;
    width: 160px;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}
.xbli .xb .btnxb{
    font-size: 18px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.xbli .xb .btnxb input{
    height: 20px;
    width: 40px;
}

.case-page .case-nav ul{
  margin: 0 -10px;
}
.case-page .case-nav ul li{
  padding: 0 10px;
  margin: 5px 0;
}
.case-page .case-nav ul li a.btn{
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #f7f7f7;
  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-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  padding: 0 20px 0 35px;
  height: 90px;
  position: relative;
}
.case-page .case-nav ul li.active a.btn{
  background-color: var(--color);
}
.case-page .case-nav ul li.active a.btn i {
  background-color: white;
  color: var(--color);
}
.case-page .case-nav ul li a.btn i {
  font-size: 20px;
  width: 35px;
  height: 35px;
  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;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: white;
  margin-left: 15px;
}

.case-page .case-nav ul li a.btn span {
  font-size: 20px;
  font-weight: 600;
  color: #666;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.case-page .init-1 .content ul li{
  padding: 60px 55px;
  background-color: #f7f7f7;
  margin-bottom: 80px;
}
.case-page .init-1 .content ul li ol li{
  padding: 0;
  margin: 0;
}
.case-page .init-1 .content ul li ol .slick-dots{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.case-page .init-1 .content ul li ol .slick-dots li{
  margin: 0 10px;
}
.case-page .init-1 .content ul li ol .slick-dots li button{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ccc;
  color: transparent;
  overflow: hidden;
  border:none;
}
.case-page .init-1 .content ul li ol .slick-dots li.slick-active button{
  background-color: var(--color);
}
.case-page .init-1 .content ul li .con{
  max-height: 330px;
  overflow-y: auto;
  padding-right: 30px;
}
.case-page .init-1 .content ul li .con table{
  margin-bottom: 0;
  word-break: normal;
  border:none;
}
.case-page .init-1 .content ul li .con table tr td{
  padding: 8px 30px;
}
.case-page .init-1 .content ul li .con table tbody{
  min-width: unset;
}
@media (max-width: 1000px) {
   .case-page .init-1 .content ul li .img_box{
     width: 100%;
   }
   .case-page .init-1 .content ul li .text{
     width: 100%;
     margin-top: 45px;
     padding: 0;
   }
}

@media (max-width: 500px) {
  .case-page .init-1 .content ul li {
    padding:35px 20px;
  }
}
