/*** Swiper 4.5.3* Most modern mobile touch slider and framework with hardware accelerated transitions* http://www.idangero.us/swiper/** Copyright 2014-2019 Vladimir Kharlampidi** Released under the MIT License**/
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  /* background-image: none; */
  left: 0px;
  right: auto;
}
/* .swiper-button-prev::before {
  content: "\e730";
} */
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  /* background-image: none; */
  right: 0px;
  left: auto;
}
/* .swiper-button-next::before {
  content: "\e731";
} */
.swiper-button-next,
.swiper-button-prev {
  font-family: "iconfont";
  font-size: 18px;
  text-align: center;
  color: #333;
  z-index: 10;
}

html {
  font-size: 62.5%;
  height: 100%;
}
body {
  margin: 0 auto;
  font-family: Jost-Regular, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  height: 100%;
  background: #fff;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
img {
  border: none;
}
ul li {
  list-style-type: none;
}
ul,
form,
p,
a,
img,
table,
tr,
td,
li,
dd,
dt,
dl,
span {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #333;
  outline: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
}
a:hover,
button:hover {
  color: #db915e;
}
h1,
h2 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: #333;
}
.clear {
  clear: both;
}
.maln {
  margin-left: auto !important;
}
input,
textarea,
select {
  font-family: Jost-Regular, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #999999;
  border: none;
  outline: none;
}
input,
textarea {
  border: none;
  background: none;
  font-family: inherit;
}
input[type="submit"],
textarea[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"],
textarea[type="checkbox"] {
  cursor: pointer;
}
input[type="radio"],
textarea[type="radio"] {
  cursor: pointer;
}
input:focus,
textarea:focus {
  outline: none;
}
textarea {
  resize: none;
}

.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.clear {
  clear: both;
}
/* .fix {
  *zoom: 1;
} */

.fix:after,
.fix:before {
  display: block;
  content: "clear";
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
::selection {
  color: #fff;
  background: #db915e;
}
* {
  margin: 0px;
  padding: 0px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.self-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.self-ellipsis-2 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.self-ellipsis-3 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.self-ellipsis-4 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.self-ellipsis-5 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.self-ellipsis-6 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.self-ellipsis-7 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.self-ellipsis-8 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.common-vc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.common-hc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.common-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.nlazy {
  min-width: 20%;
}
::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}

.email {
  word-break: break-all;
}

.scale-big img {
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  -moz-transition: all 350ms;
  transition: all 350ms;
}

.scale-big:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.scale-small img {
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  -moz-transition: all 350ms;
  transition: all 350ms;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.scale-small:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

[class*="-item"] .item-pic,
[class*="-item"] .item-pics {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}
[class*="-item"] .item-pic a,
[class*="-item"] .item-pics a {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}
[class*="-item"] .item-title a {
  display: block;
  overflow: hidden;
}

[class*="-item"] .item-title a:hover {
  color: #db915e;
}

[class*="-item"] .item-subt {
  overflow: hidden;
}

[class*="-item"] .item-subt a {
  display: block;
}

[class*="-item"] .item-subt a:hover {
  color: #db915e !important;
}

[class*="-item"] .item-desc {
  overflow: hidden;
  color: #666;
}

[class*="-item"] .item-desc a {
  display: block;
  color: #666;
}

[class*="-item"] .item-desc a:hover {
  color: #db915e;
}

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 99999999999999999999999999999999999999;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: Verdana, Geneva, sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left 0.4s ease, -webkit-transform 0.4s ease;
  transition: left 0.4s ease, -moz-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight 0.4s ease-out;
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  animation: bounceFromLeft 0.4s ease-out;
}
.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}
.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}
.spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999999;
  opacity: 1;
}
:-o-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999999;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999999;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999999;
  opacity: 1;
}

.sousuo input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #333;
  opacity: 1;
}
.sousuo input:-o-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333;
  opacity: 1;
}
.sousuo input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333;
  opacity: 1;
}
.sousuo input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #333;
  opacity: 1;
}
.container {
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 980px;
  }
}
@media (min-width: 1260px) {
  .container {
    width: 1230px;
  }
}
@media (min-width: 1380px) {
  .container {
    width: 1350px;
  }
}
@media (min-width: 1500px) {
  .container {
    width: 1470px;
  }
}
.contains {
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contains {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .contains {
    width: 980px;
  }
}
@media (min-width: 1260px) {
  .contains {
    width: 1230px;
  }
}
@media (min-width: 1360px) {
  .contains {
    width: 1330px;
  }
}

.contain {
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contain {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .contain {
    width: 980px;
  }
}
@media (min-width: 1260px) {
  .contain {
    width: 1230px;
  }
}

.at-resp-share-element .at4-share-count-container {
  text-decoration: none;
  float: right;
  padding-right: 15px;
  line-height: 25px !important;
}
.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}
.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}
.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}
.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}
.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}
.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}
.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}
.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}
.an-bd3 {
  position: relative;
}
.an-bd3 .item-backdrop {
  content: "";
  background-color: #000;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .an-bd3 .item-backdrop {
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@media screen and (min-width: 992px) {
  .an-bd3:hover .item-backdrop {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.item-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.item-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

/*  head  */
.head {
  background: #ffffff;
  position: relative;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 99;
}
.logo {
  display: block;
  float: left;
  width: 138px;
  font-size: 0px;
  letter-spacing: 0;
}
.logo img {
  display: inline-block;
  vertical-align: middle;
}
.head-logo {
  display: block;
  float: left;
  line-height: 110px;
  font-size: 0px;
  text-align: center;
}
.head-logo img {
  max-height: 110px;
  display: inline-block;
  vertical-align: middle;
}

.yvn {
  position: relative;
  min-width: 100px;
  padding: 36px 0 46px;
  margin-left: 36px;
}
.yvzhonga {
  display: block;
  height: 28px;
  padding-left: 28px;
  padding-right: 16px;
  line-height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.yvzhonga:before {
  content: "\e72f";
  font-family: iconfont;
  position: absolute;
  right: 0;
  top: 0px;
  font-size: 10px;
  line-height: 28px;
}
.yvn i {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.yvul {
  min-width: 140px;
  position: absolute;
  top: 110%;
  right: 0px;
  background: #ffffff;
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.16);
  display: none;
}
.yvul a {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  position: relative;
  padding-left: 52px;
}
.yvul a i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.yvul a:hover {
  color: #db915e;
}
/*  sousuo  */
.sousuo {
  float: right;
  position: relative;
  z-index: 9;
  padding: 38px 0 48px;
  margin-left: 40px;
}
.sou2 {
  width: 20px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #333;
  font-size: 20px !important;
  cursor: pointer;
  font-weight: bold;
  z-index: 99990;
}
.sousuo form {
  width: 236px;
  height: 0px;
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 100%;
  background: #fff;
  border: 0px solid rgba(0, 0, 0, 0);
  border-radius: 18px;
  color: #2f3135;
  transition: 0.5s;
  z-index: 99999;
}
.sou {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding-left: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
}
.suo {
  width: 40px;
  height: 40px;
  float: right;
  background: none;
  position: relative;
  z-index: 9999999;
  border-radius: 20px;
  cursor: pointer;
}
.sou1 {
  width: 20px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  right: 8px;
  top: 8px;
  color: #333;
  font-size: 20px !important;
  cursor: pointer;
  z-index: 99990;
}
.sousuof form {
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.ynav .dangqiandao > a {
  color: #db915e !important;
  padding-left: 12px;
}
.ynav .dangqiandao > a::before {
  display: block !important;
}
.ynav {
  float: right;
  padding: 38px 0px 48px;
  margin-left: 46px;
  position: relative;
  cursor: pointer;
}
.yvnava {
  width: 25px;
  height: 24px;
  position: relative;
}
.yvnava img {
  width: 100%;
}
.ysp1 {
  display: block;
  width: 25px;
  height: 3px;
  background: #db915e;
  border-radius: 2px;
  position: absolute;
  left: 0px;
  top: 3px;
}
.ysp2 {
  display: block;
  width: 25px;
  height: 3px;
  background: #db915e;
  border-radius: 2px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.ysp3 {
  display: block;
  width: 25px;
  height: 3px;
  background: #db915e;
  border-radius: 2px;
  position: absolute;
  left: 0px;
  bottom: 3px;
}
.yyiji {
  position: absolute;
  left: -40px;
  top: -9999px;
  width: 240px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 7px 0;
  z-index: 99;
}
.yyiji li {
  position: relative;
  padding: 6px 37px;
}
.yyiji li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0px;
  color: #333;
  position: relative;
}
.yyiji li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: #db915e;
  border-radius: 50%;
  display: none;
}
.yyiji li a:hover {
  padding-left: 12px;
  color: #db915e;
}
.yyiji li a:hover::before {
  display: block;
}
.yerji {
  position: absolute;
  right: 100%;
  top: -9999px;
  width: 240px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 7px 0;
  z-index: 88;
}
.ynav:hover .yyiji {
  top: 100%;
}
.ynav:hover .yyiji > li > a {
  line-height: 28px;
}
.yyiji li:hover .yerji {
  top: 0px;
}
.yyiji li:hover .yerji > li > a {
  line-height: 26px;
}

.daoz {
  float: right;
}
.daohang {
  max-width: 960px;
  padding-top: 34px;
}
.daohang > li {
  float: left;
  padding: 0 0 41px;
  position: relative;
  z-index: 9;
  margin-right: 60px;
  text-align: right;
}
.daohang > li:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.daohang > li > a {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  font-family: Jost-Regular;
  color: #333;
  line-height: 30px;
  position: relative;
  padding-bottom: 1px;
  border-bottom: 4px dotted transparent;
}
.daohang > li:hover > a {
  border-color: #db915e;
}
.dangqiandao > a {
  border-color: #db915e !important;
}

.yijiw {
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 7px 0;
  position: absolute;
  width: 236px;
  top: -9999px;
  left: -40px;
  text-align: left;
}
.yiji {
  width: 100%;
  position: relative;
}
.yiji li {
  position: relative;
  transition: 0.5s;
  padding: 6px 38px;
}
.yiji li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0px;
  color: #333;
  position: relative;
}
.yiji li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: #db915e;
  border-radius: 50%;
  display: none;
}
.yiji li a:hover {
  padding-left: 12px;
  color: #db915e;
}
.yiji li a:hover::before {
  display: block;
}

.erji {
  position: absolute;
  width: 236px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 7px 0;
  top: -9999px;
  left: 100%;
}
.sanji {
  position: absolute;
  width: 236px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 7px 0;
  top: -9999px;
  left: 100%;
}
.daohang > li:hover .yijiw {
  top: 100%;
}
.daohang > li:hover .yiji > li > a {
  line-height: 28px;
}
.yiji > li:hover .erji {
  top: 0px;
}
.yiji > li:hover .erji > li > a {
  line-height: 26px;
}
.erji > li:hover .sanji {
  top: 0px;
}
.erji > li:hover .sanji > li > a {
  line-height: 24px;
}
.matn {
  margin-top: auto !important;
}

.xnav {
  display: none;
}

/*  banner  */
.banner {
  position: relative;
}
.slideshow {
  position: relative;
  z-index: 1;
}
.slideshow .wp {
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: -600px;
  top: 50%;
  margin-top: -166.5px;
}
.slideshow .wp img {
  max-width: 100%;
  max-height: 80%;
}
.slideshow .item a img {
  width: 100%;
  -webkit-transition: all 6s ease-out;
  -o-transition: all 6s ease-out;
  -moz-transition: all 6s ease-out;
  transition: all 6s ease-out;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.slideshow .item.slick-active img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.slick-dots {
  position: absolute;
  bottom: 21px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0;
  letter-spacing: 0;
  width: 100%;
}
.slick-dots li {
  display: inline-block;
  vertical-align: top;
}
.slick-dots li button {
  cursor: pointer;
  font-size: 0px;
  margin: 0 8px;
  border: none;
  outline: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  transition: 0.5s;
  position: relative;
}
.slick-dots li.slick-active button {
  background: #bd915e;
  border-color: #bd915e;
}

.slick-prev,
.slick-next {
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  font-size: 0px;
  cursor: pointer;
  transition: 0.5s;
  width: 71px;
  top: 50%;
  transform: translateY(-50%);
  height: 71px;
  display: none !important;
}
.slick-prev {
  position: absolute;
  z-index: 999;
  background: url("") no-repeat center;
  background-color: rgba(0, 0, 0, 0.3);
  left: 8px;
}
.slick-next {
  position: absolute;
  z-index: 999;
  background: url("") no-repeat center;
  background-color: rgba(0, 0, 0, 0.3);
  right: 8px;
}
.slick-prev:hover,
.slick-next:hover {
  background-color: rgba(254, 214, 32, 0.7);
}
.slideshow .item.slick-active.item_one img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.slideshow .item.slick-active.item_one.on img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}
.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  top: 0;
  left: 0;
}
.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.slideshow .item {
  position: relative;
}
.slideshow .item iframe,
.slideshow .item video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  border: none;
}

@media screen and (max-width: 1499px) {
  .logo {
    width: 125px;
  }
  .head-logo {
    line-height: 100px;
  }
  .head-logo img {
    max-height: 100px;
  }

  .yvn {
    min-width: 100px;
    padding: 32px 0 42px;
    margin-left: 32px;
  }
  .yvzhonga {
    height: 26px;
    padding-left: 26px;
    padding-right: 14px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .yvzhonga:before {
    font-size: 10px;
    line-height: 26px;
  }

  .sousuo {
    padding: 33px 0 43px;
    margin-left: 36px;
  }
  .sou2 {
    width: 20px;
    height: 24px;
    line-height: 24px;
    font-size: 20px !important;
  }

  .ynav {
    padding: 33px 0px 43px;
    margin-left: 38px;
  }
  .yvnava {
    width: 25px;
    height: 24px;
  }
  .ysp1 {
    width: 25px;
    height: 3px;
  }
  .ysp2 {
    width: 25px;
    height: 3px;
  }
  .ysp3 {
    width: 25px;
    height: 3px;
  }
  .yyiji {
    left: -36px;
    width: 172px;
    padding: 6px 0;
  }
  .yyiji li {
    padding: 6px 32px;
  }
  .yyiji li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .yerji {
    width: 168px;
    padding: 6px 0;
  }
  .ynav:hover .yyiji > li > a {
    line-height: 28px;
  }
  .yyiji li:hover .yerji > li > a {
    line-height: 26px;
  }

  .daohang {
    max-width: 900px;
    padding-top: 31px;
  }
  .daohang > li {
    padding: 0 0 36px;
    margin-right: 50px;
  }
  .daohang > li > a {
    font-size: 18px;
    line-height: 28px;
    border-bottom: 4px dotted transparent;
  }

  .yijiw {
    padding: 6px 0;
    left: -36px;
  }
  .yiji li {
    padding: 6px 36px;
  }
  .yiji li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .slick-dots {
    bottom: 18px;
  }
  .slick-dots li button {
    margin: 0 8px;
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 1379px) {
  .logo {
    width: 113px;
  }
  .head-logo {
    line-height: 90px;
  }
  .head-logo img {
    max-height: 90px;
  }

  .yvn {
    min-width: 96px;
    padding: 28px 0 36px;
    margin-left: 28px;
  }
  .yvzhonga {
    height: 26px;
    padding-left: 26px;
    padding-right: 14px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .yvzhonga:before {
    font-size: 10px;
    line-height: 26px;
  }

  .sousuo {
    padding: 29px 0 37px;
    margin-left: 30px;
  }
  .sou2 {
    width: 20px;
    height: 24px;
    line-height: 24px;
    font-size: 20px !important;
  }

  .ynav {
    padding: 29px 0px 37px;
    margin-left: 38px;
  }
  .yvnava {
    width: 22px;
    height: 24px;
  }
  .ysp1 {
    width: 22px;
    height: 3px;
  }
  .ysp2 {
    width: 22px;
    height: 3px;
  }
  .ysp3 {
    width: 22px;
    height: 3px;
  }
  .yyiji {
    left: -30px;
    width: 200px;
    padding: 6px 0;
  }
  .yyiji li {
    padding: 6px 28px;
  }
  .yyiji li a {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .yerji {
    width: 200px;
    padding: 6px 0;
  }
  .ynav:hover .yyiji > li > a {
    line-height: 26px;
  }
  .yyiji li:hover .yerji > li > a {
    line-height: 24px;
  }

  .daohang {
    max-width: 820px;
  }
  .daohang > li {
    padding: 0 0 32px;
    margin-right: 40px;
  }
  .daohang > li > a {
    font-size: 18px;
    line-height: 28px;
    border-bottom: 3px dotted transparent;
  }

  .yijiw {
    padding: 5px 0;
    left: -30px;
  }
  .yiji li {
    padding: 5px 28px;
  }
  .yiji li a {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .slick-dots {
    bottom: 16px;
  }
  .slick-dots li button {
    margin: 0 6px;
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 1259px) {
  .logo {
    width: 100px;
  }
  .head-logo {
    line-height: 80px;
  }
  .head-logo img {
    max-height: 80px;
  }

  .yvn {
    min-width: 90px;
    padding: 26px 0 30px;
    margin-left: 20px;
  }
  .yvzhonga {
    height: 24px;
    padding-left: 28px;
    padding-right: 12px;
    line-height: 24px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .yvzhonga:before {
    font-size: 10px;
    line-height: 24px;
  }

  .sousuo {
    padding: 26px 0 30px;
    margin-left: 22px;
  }
  .sou2 {
    width: 20px;
    height: 24px;
    line-height: 24px;
    font-size: 20px !important;
  }

  .ynav {
    padding: 26px 0px 30px;
    margin-left: 24px;
  }
  .yvnava {
    width: 20px;
    height: 24px;
  }
  .ysp1 {
    width: 20px;
    height: 3px;
  }
  .ysp2 {
    width: 20px;
    height: 3px;
  }
  .ysp3 {
    width: 20px;
    height: 3px;
  }
  .yyiji {
    left: -24px;
    width: 172px;
    padding: 4px 0;
  }
  .yyiji li {
    padding: 4px 22px;
  }
  .yyiji li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .yerji {
    width: 168px;
    padding: 4px 0;
  }
  .ynav:hover .yyiji > li > a {
    line-height: 24px;
  }
  .yyiji li:hover .yerji > li > a {
    line-height: 22px;
  }

  .daohang {
    max-width: 642px;
  }
  .daohang > li {
    padding: 0 0 26px;
    margin-right: 30px;
  }
  .daohang > li > a {
    font-size: 18px;
    line-height: 28px;
    border-bottom: 3px dotted transparent;
  }

  .yijiw {
    padding: 5px 0;
    left: -20px;
  }
  .yiji li {
    padding: 5px 18px;
  }
  .yiji li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .slick-dots {
    bottom: 12px;
  }
  .slick-dots li button {
    margin: 0 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
}
@media screen and (min-width: 992px) {
  .carousel,
  .nav,
  .clear3 {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .logo {
    width: 100px;
  }
  .head-logo {
    line-height: 80px;
  }
  .head-logo img {
    max-height: 80px;
  }
  .het {
    padding: 0px;
  }
  .daoz,
  .yijiw,
  .yiji2,
  .htag,
  .hexin,
  .shejiao,
  .sousuo {
    display: none;
  }
  .clear3 {
    clear: both;
  }
  .ynav {
    display: none;
  }
  .yvn {
    min-width: 90px;
    padding: 26px 0 30px;
    margin-left: 10px;
    margin-right: 36px;
  }
  .yvzhonga {
    height: 24px;
    padding-left: 28px;
    padding-right: 12px;
    line-height: 24px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .yvzhonga:before {
    font-size: 10px;
    line-height: 24px;
  }
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    background-size: cover;
  }
  .xnav {
    display: block;
  }
  .nav {
    position: fixed;
    width: 36px;
    height: 28px;
    background: transparent;
    right: 8px;
    top: 28px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 999999999;
  }
  .nav span {
    display: block;
    width: 20px;
    height: 2px;
    background: #db915e;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    transition: 0.5s;
    z-index: 99999991;
  }
  .nav .nav1 {
    margin-top: -1px;
  }
  .nav .nav2 {
    margin-top: -8px;
  }
  .nav .nav3 {
    margin-top: 6px;
  }
  .nav:hover .nav1 {
    width: 25px;
  }
  .navh .nav1 {
    transform: rotate(45deg);
  }
  .navh .nav2 {
    transform: rotate(-45deg);
    width: 10px;
    margin-left: -1px;
    margin-top: -5px;
  }
  .navh .nav3 {
    transform: rotate(-45deg);
    width: 9px;
    margin-top: 3px;
    margin-left: -8px;
  }
  .navh:hover .nav2 {
    margin-top: -8px;
    margin-left: 7px;
  }
  .navh:hover .nav3 {
    margin-top: 5px;
    margin-left: -12px;
  }
  .smdaohang {
    position: fixed;
    width: 300px;
    height: 0px;
    overflow: auto;
    top: 0px;
    right: 0px;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
    transition: 0.5s;
    text-align: center;
  }
  .smdaohangh {
    right: 0px;
    top: 0px;
    height: 100%;
  }
  .topnav {
    margin: auto;
    margin-top: 30px;
    padding: 20px;
  }

  ul.topnav li {
    text-align: left;
    position: relative;
  }
  ul.topnav li a {
    padding: 5px;
    padding-left: 0px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding-right: 50px;
  }
  ul.topnav ul {
    display: none;
  }
  ul.topnav ul li {
    clear: both;
  }
  ul.topnav ul li a {
    padding-left: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    outline: 0;
  }
  ul.topnav ul li a:hover {
  }
  ul.topnav ul ul li a {
    padding-left: 40px;
  }
  ul.topnav ul ul ul li a {
    padding-left: 60px;
  }
  ul.topnav span {
    display: block;
    position: absolute;
    right: 0px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s;
  }
  ul.topnav span:before {
    content: "";
    width: 6px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    top: 50%;
    margin-top: 0px;
    transform: rotate(45deg);
    transform-origin: right center;
  }
  ul.topnav span:after {
    content: "";
    width: 6px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
    transform-origin: right center;
    transition: 0.5s;
  }
  ul.topnav span.yizi {
    transform: rotate(90deg);
  }

  /* .slick-dots{bottom:10px;}
.slick-dots li button{margin: 0 5px;width: 6px;height: 6px;}
.slick-dots li.slick-active button::before{width: 12px;border: 3px solid #B88768;height: 12px;} */

  .smdaohang form {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 240px;
    height: 26px;
    border: 1px solid #fff;
    position: relative;
    background: #fff;
    border-radius: 13px;
  }
  .smdaohang form .iptc {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    background-color: #fff;
    width: 80%;
    height: 24px;
    line-height: 24px;
    display: block;
    float: left;
    border-radius: 10px;
  }
  .smdaohang form .ipsc {
    width: 20%;
    height: 26px;
    line-height: 26px;
    display: block;
    float: right;
    background: transparent;
    position: relative;
    z-index: 99;
  }
  .smdaohang form i {
    position: absolute;
    right: 10px;
    top: 5px;
  }
}

.index-letter {
  position: relative;
  width: 100%;
  background: #f7f3f0;
  padding-top: 64px;
  padding-bottom: 71px;
}
.index-letter .sec-text {
  margin-top: 20px;
}
.index-letter-form {
  position: relative;
  width: 100%;
  padding-top: 42px;
}
.index-letter-form form {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 15px;
}
.index-letter-form .item-input {
  height: 50px;
  margin-bottom: 15px;
  width: 47.5%;
  position: relative;
  background: #ffffff;
}
.index-letter-form .item-input1 {
  width: 100%;
  height: 120px;
}
.index-letter-form .item-code {
  padding-right: 135px;
}
.index-letter-form .item-code .item-code-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 125px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-letter-form .item-code .item-code-img img {
  width: auto;
  max-width: 100%;
  max-height: 50px;
  display: inline-block;
  vertical-align: top;
}
.index-letter-form .item-input.star::before {
  position: absolute;
  left: -15px;
  top: 20px;
  content: "*";
  font-size: 18px;
  font-family: Arial;
  color: #ff0000;
  line-height: 16px;
}
.index-letter-form .item-input input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
  line-height: 26px;
  background: #ffffff;
  padding: 6px 12px;
  display: block;
}
.index-letter-form .item-input1 textarea {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
  line-height: 28px;
  background: #ffffff;
  padding: 6px 12px;
  display: block;
}
.index-letter-form .item-btn {
  height: 50px;
  margin-bottom: 15px;
  width: 47.5%;
  position: relative;
}
.index-letter-form .item-btn input,
.index-letter-form .item-btn button {
  width: 100%;
  height: 100%;
  font-size: 22px;
  color: #fff;
  line-height: 30px;
  display: block;
  background: #db915e;
  cursor: pointer;
  border: 1px solid #db915e;
}
.index-letter-form .item-btn input:hover,
.index-letter-form .item-btn button:hover {
  background: #fff;
  color: #db915e;
}
@media screen and (max-width: 1359px) {
  .index-letter {
    padding-top: 56px;
    padding-bottom: 62px;
  }
  .index-letter .sec-text {
    margin-top: 18px;
  }
  .index-letter-form {
    padding-top: 36px;
  }
  .index-letter-form form {
    padding-left: 15px;
  }
  .index-letter-form .item-input {
    height: 46px;
    margin-bottom: 14px;
    width: 47.5%;
  }
  .index-letter-form .item-input1 {
    width: 100%;
    height: 112px;
  }
  .index-letter-form .item-code {
    padding-right: 128px;
  }
  .index-letter-form .item-code .item-code-img {
    width: 120px;
  }
  .index-letter-form .item-code .item-code-img img {
    max-height: 46px;
  }
  .index-letter-form .item-input.star::before {
    left: -15px;
    top: 18px;
  }
  .index-letter-form .item-input input {
    font-size: 16px;
    line-height: 26px;
    padding: 5px 12px;
  }
  .index-letter-form .item-input1 textarea {
    font-size: 16px;
    line-height: 26px;
    padding: 5px 12px;
  }
  .index-letter-form .item-btn {
    height: 46px;
    margin-bottom: 14px;
    width: 47.5%;
  }
  .index-letter-form .item-btn input,
  .index-letter-form .item-btn button {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1259px) {
  .index-letter {
    padding-top: 48px;
    padding-bottom: 54px;
  }
  .index-letter .sec-text {
    margin-top: 14px;
  }
  .index-letter-form {
    padding-top: 30px;
  }
  .index-letter-form form {
    padding-left: 15px;
  }
  .index-letter-form .item-input {
    height: 42px;
    margin-bottom: 14px;
    width: 47.5%;
  }
  .index-letter-form .item-input1 {
    width: 100%;
    height: 112px;
  }
  .index-letter-form .item-code {
    padding-right: 128px;
  }
  .index-letter-form .item-code .item-code-img {
    width: 120px;
  }
  .index-letter-form .item-code .item-code-img img {
    max-height: 42px;
  }
  .index-letter-form .item-input.star::before {
    left: -15px;
    top: 17px;
  }
  .index-letter-form .item-input input {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }
  .index-letter-form .item-input1 textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }
  .index-letter-form .item-btn {
    height: 42px;
    margin-bottom: 14px;
    width: 47.5%;
  }
  .index-letter-form .item-btn input,
  .index-letter-form .item-btn button {
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-letter {
    padding-top: 40px;
    padding-bottom: 46px;
  }
  .index-letter .sec-text {
    margin-top: 10px;
  }
  .index-letter-form {
    padding-top: 24px;
  }
  .index-letter-form form {
    padding-left: 12px;
  }
  .index-letter-form .item-input {
    height: 40px;
    margin-bottom: 14px;
    width: 48%;
  }
  .index-letter-form .item-input1 {
    width: 100%;
    height: 104px;
  }
  .index-letter-form .item-code {
    padding-right: 112px;
  }
  .index-letter-form .item-code .item-code-img {
    width: 104px;
  }
  .index-letter-form .item-code .item-code-img img {
    max-height: 40px;
  }
  .index-letter-form .item-input.star::before {
    left: -12px;
    top: 15px;
  }
  .index-letter-form .item-input input {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 12px;
  }
  .index-letter-form .item-input1 textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 12px;
  }
  .index-letter-form .item-btn {
    height: 40px;
    margin-bottom: 14px;
    width: 48%;
  }
  .index-letter-form .item-btn input,
  .index-letter-form .item-btn button {
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (max-width: 600px) {
  .index-letter {
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .index-letter .sec-text {
    margin-top: 10px;
  }
  .index-letter-form {
    padding-top: 18px;
  }
  .index-letter-form form {
    padding-left: 12px;
  }
  .index-letter-form .item-input {
    height: 40px;
    margin-bottom: 14px;
    width: 100%;
  }
  .index-letter-form .item-input1 {
    width: 100%;
    height: 104px;
  }
  .index-letter-form .item-code {
    padding-right: 112px;
  }
  .index-letter-form .item-code .item-code-img {
    width: 104px;
  }
  .index-letter-form .item-code .item-code-img img {
    max-height: 40px;
  }
  .index-letter-form .item-input.star::before {
    left: -12px;
    top: 15px;
  }
  .index-letter-form .item-input input {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 12px;
  }
  .index-letter-form .item-input1 textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 12px;
  }
  .index-letter-form .item-btn {
    height: 40px;
    margin-bottom: 14px;
    width: 100%;
  }
  .index-letter-form .item-btn input,
  .index-letter-form .item-btn button {
    font-size: 18px;
    line-height: 30px;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #ebebeb;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
}
.footer,
.footer a {
  color: #666;
}
.footer .footer-title {
  color: #333;
}
.footer .fo-bot,
.footer .fo-bot a {
  color: #999;
}
.footer a:hover,
.footer .fo-bot a:hover {
  color: #db915e;
}

.footer .fo-top {
  font-size: 0;
  letter-spacing: 0;
  padding-top: 52px;
  padding-bottom: 48px;
}
.footer .flist1 {
  width: 322px;
  padding-right: 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
.footer .flist2 {
  width: 384px;
  padding-right: 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
.footer .flist3 {
  width: 422px;
  padding-right: 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
.footer .flist4 {
  width: 172px;
  margin-bottom: 10px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .footer .fo-top {
    padding-top: 48px;
    padding-bottom: 44px;
  }
  .footer .flist1 {
    width: 300px;
    padding-right: 15px;
  }
  .footer .flist2 {
    width: 356px;
    padding-right: 15px;
  }
  .footer .flist3 {
    width: 380px;
    padding-right: 15px;
  }
  .footer .flist4 {
    width: 164px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .footer .fo-top {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .footer .flist1 {
    width: 250px;
    padding-right: 15px;
  }
  .footer .flist2 {
    width: 270px;
    padding-right: 15px;
  }
  .footer .flist3 {
    width: 270px;
    padding-right: 15px;
  }
  .footer .flist4 {
    width: 160px;
  }
}
@media (max-width: 991px) {
  .footer .fo-top {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .footer .flist1 {
    width: 50%;
    padding-right: 20px;
  }
  .footer .flist2 {
    width: 50%;
    padding-right: 0px;
  }
  .footer .flist3 {
    width: 50%;
    padding-right: 20px;
  }
  .footer .flist4 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer .fo-top {
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .footer .flist1,
  .footer .flist2,
  .footer .flist3 {
    width: 100%;
    padding-right: 0;
  }
  .footer .flist4 {
    width: 100%;
  }
}

.footer .footer-title {
  position: relative;
  font-size: 24px;
  font-family: Jost-Regular;
  line-height: 32px;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.footer .foot-list {
  font-size: 16px;
  line-height: 30px;
}
.footer .foot-nav {
  font-size: 16px;
  line-height: 30px;
}
.footer .foot-nav li {
  position: relative;
  padding-left: 14px;
}
.footer .foot-nav li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  background: #bd915e;
  border-radius: 50%;
}

/* .footer .f-form { padding-top: 8px;padding-left:10px;}
.footer .f-form .item-input{ position: relative;width: 100%;height: 36px;border-bottom: 1px solid #6D6D6D; margin-bottom: 14px; }
.footer .f-form .item-input1{height: 66px; width: 100%;}
.footer .f-form .item-code { position: relative; width: calc(100% - 88px);}
.footer .f-form .item-input.star::before{position: absolute;content: "*"; left: -12px;top: 0;font-size: 20px;font-family: Arial;color: #FF0000;line-height: 40px;}
.footer .f-form .item-input input, .footer .f-form .item-input1 textarea, .footer .f-form .item-code input{ position: relative; width: 100%;height: 100%;padding: 5px 12px;font-size: 14px;color: #fff;line-height: 24px;}
.footer .f-form .item-img { width: 80px; font-size: 0; cursor: pointer;background: #FFFFFF;border: 1px solid #D2D2D2; display: inline-flex;align-items: center;justify-content: center;}
.footer .f-form .item-img img { max-height: 32px; vertical-align: middle; }
.footer .f-form .item-btn{ width: 100%; height: 36px;position: relative;}
.footer .f-form .item-btn input{ cursor: pointer; overflow: hidden; display: block;width: 100%;height: 100%; font-family: Heebo-Regular;color: #000;background: #FFFFFF; text-transform: uppercase; font-size: 16px; font-size: 1.6rem; border: 0; }
.footer .f-form .item-btn:hover input{ background-color: #f2f2f2; }

.foot-follow{margin-top: 36px;} */
.footer .f-follow {
  font-size: 0;
  letter-spacing: 0;
  margin-right: -30px;
  padding-top: 10px;
}
.footer .f-follow a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-bottom: 32px;
  margin-right: 30px;
}
.footer .f-follow a:last-child {
  margin-right: 0 !important;
}
.footer .f-follow .iconfont {
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  display: block;
  color: #999;
}
.footer .f-follow a:hover .iconfont {
  color: #db915e;
}

.footer .fo-bot {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  border-top: 1px solid #eaeaea;
  padding: 14px 0 22px;
  text-align: center;
}
.footer .fo-bot .keywords a {
  margin-left: 5px;
}
.footer .fo-bot .links a {
  margin-left: 15px;
}
.footer .fo-bot .copyright {
  margin-top: 1px;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .footer .footer-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 22px;
  }
  .footer .foot-list {
    font-size: 16px;
    line-height: 28px;
  }
  .footer .foot-nav {
    font-size: 16px;
    line-height: 28px;
  }
  .footer .foot-nav li {
    padding-left: 12px;
  }
  .footer .foot-nav li::before {
    top: 12px;
  }
  .footer .f-follow {
    margin-right: -24px;
    padding-top: 8px;
  }
  .footer .f-follow a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 28px;
    margin-right: 24px;
  }
  .footer .f-follow .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .footer .fo-bot {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    padding: 12px 0 20px;
  }

  .footer .f-form {
    padding-top: 8px;
    padding-left: 10px;
  }
  .footer .f-form .item-input {
    height: 36px;
    margin-bottom: 14px;
  }
  .footer .f-form .item-input1 {
    height: 66px;
  }
  .footer .f-form .item-code {
    width: calc(100% - 88px);
  }
  .footer .f-form .item-input.star::before {
    left: -10px;
    top: 0;
    font-size: 18px;
    line-height: 36px;
  }
  .footer .f-form .item-input input,
  .footer .f-form .item-input1 textarea,
  .footer .f-form .item-code input {
    padding: 5px 12px;
    font-size: 14px;
    line-height: 24px;
  }
  .footer .f-form .item-img {
    width: 80px;
  }
  .footer .f-form .item-img img {
    max-height: 32px;
  }
  .footer .f-form .item-btn {
    height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .footer .footer-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 18px;
  }
  .footer .foot-list {
    font-size: 15px;
    line-height: 26px;
  }
  .footer .foot-nav {
    font-size: 15px;
    line-height: 26px;
  }
  .footer .foot-nav li {
    padding-left: 12px;
  }
  .footer .foot-nav li::before {
    top: 11px;
  }
  .footer .f-follow {
    margin-right: -20px;
    padding-top: 8px;
  }
  .footer .f-follow a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .footer .f-follow .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .footer .fo-bot {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 10px 0 16px;
  }
}
@media (max-width: 991px) {
  .footer .footer-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .footer .foot-list {
    font-size: 14px;
    line-height: 24px;
  }
  .footer .foot-nav {
    font-size: 14px;
    line-height: 24px;
  }
  .footer .foot-nav li {
    padding-left: 12px;
  }
  .footer .foot-nav li::before {
    top: 10px;
  }
  .footer .f-follow {
    margin-right: -15px;
    padding-top: 8px;
  }
  .footer .f-follow a {
    width: 18px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 16px;
    margin-right: 10px;
  }
  .footer .f-follow .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .footer .fo-bot {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
    padding: 8px 0 12px;
  }

  .footer .f-form {
    padding-top: 8px;
    padding-left: 10px;
  }
  .footer .f-form .item-input {
    height: 32px;
    margin-bottom: 10px;
  }
  .footer .f-form .item-input1 {
    height: 60px;
  }
  .footer .f-form .item-code {
    width: calc(100% - 88px);
  }
  .footer .f-form .item-input.star::before {
    left: -10px;
    top: 0;
    font-size: 16px;
    line-height: 32px;
  }
  .footer .f-form .item-input input,
  .footer .f-form .item-input1 textarea,
  .footer .f-form .item-code input {
    padding: 4px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .footer .f-form .item-img {
    width: 80px;
  }
  .footer .f-form .item-img img {
    max-height: 28px;
  }
  .footer .f-form .item-btn {
    height: 32px;
  }
}
@media (max-width: 767px) {
  .footer .footer-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
    position: relative;
    padding-right: 32px;
  }
  .footer .footer-title::after {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-family: iconfont;
    content: "\e731";
    font-size: 18px;
    font-size: 1.8rem;
  }
  .footer .flist4 .footer-title {
    display: none;
  }
  .footer .foot-list {
    font-size: 14px;
    line-height: 24px;
    display: none;
  }
  .footer .foot-nav {
    font-size: 14px;
    line-height: 24px;
    display: none;
  }
  .footer .foot-nav li {
    padding-left: 12px;
  }
  .footer .foot-nav li::before {
    top: 10px;
  }
  .footer .f-follow {
    margin-right: 0;
    padding-top: 4px;
    text-align: center;
  }
  .footer .f-follow a {
    width: 18px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 8px;
    margin-right: 6px;
  }
  .footer .f-follow .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .footer .fo-bot {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
    padding: 8px 0 12px;
  }
  .footer .fo-bot .links {
    display: none;
  }
}

.pro-item {
  position: relative;
}
.pro-item .item-box {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 26px;
  overflow: hidden;
}
.pro-item .item-pic {
  width: 100%;
  position: relative;
  text-align: center;
}
.pro-item .item-pic img {
  width: 100%;
  display: block;
}
.pro-item .item-body {
  width: 100%;
  position: relative;
  padding: 10px 12px 17px;
  text-align: center;
}
.pro-item .item-body .item-name {
  font-size: 16px;
  font-family: Jost-Regular;
  color: #999999;
  line-height: 26px;
  margin-bottom: 2px;
}
.pro-item .item-body .item-title {
  font-size: 20px;
  font-family: Jost-Regular;
  color: #333333;
  line-height: 32px;
  min-height: 32px;
}
.pro-item .item-body .item-name a {
  color: #999;
}
.pro-item .item-body .item-name a:hover {
  color: #db915e;
}
.pro-item .item-body .item-btn {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  margin-top: 8px;
  text-align: center;
}
.pro-item .item-body .item-btn input {
  display: inline-block;
  vertical-align: top;
  width: 11px;
  height: 11px;
  margin-top: 5px;
  margin-right: 4px;
}
.pro-item .item-body .item-btn .btnn,
.pro-item .item-body .item-btn a {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 4px dotted transparent;
  color: #db915e;
}
.pro-item .item-body .item-btn a:hover {
  border-color: #db915e;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .pro-item .item-box {
    border-radius: 24px;
  }
  .pro-item .item-body {
    padding: 10px 10px 15px;
  }
  .pro-item .item-body .item-name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
  }
  .pro-item .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
    min-height: 30px;
  }
  .pro-item .item-body .item-btn {
    margin-top: 6px;
  }
  .pro-item .item-body .item-btn input {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    margin-right: 4px;
  }
  .pro-item .item-body .item-btn .btnn,
  .pro-item .item-body .item-btn a {
    font-size: 15px;
    line-height: 22px;
    border-width: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .pro-item .item-box {
    border-radius: 20px;
  }
  .pro-item .item-body {
    padding: 8px 10px 14px;
  }
  .pro-item .item-body .item-name {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 2px;
  }
  .pro-item .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
    min-height: 28px;
  }
  .pro-item .item-body .item-btn {
    margin-top: 6px;
  }
  .pro-item .item-body .item-btn input {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    margin-right: 4px;
  }
  .pro-item .item-body .item-btn .btnn,
  .pro-item .item-body .item-btn a {
    font-size: 14px;
    line-height: 20px;
    border-width: 3px;
  }
}
@media (max-width: 991px) {
  .pro-item .item-box {
    border-radius: 18px;
  }
  .pro-item .item-body {
    padding: 8px 10px 14px;
  }
  .pro-item .item-body .item-name {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 2px;
  }
  .pro-item .item-body .item-title {
    font-size: 16px;
    line-height: 28px;
    min-height: 28px;
  }
  .pro-item .item-body .item-btn {
    margin-top: 6px;
  }
  .pro-item .item-body .item-btn input {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    margin-right: 4px;
  }
  .pro-item .item-body .item-btn .btnn,
  .pro-item .item-body .item-btn a {
    font-size: 14px;
    line-height: 20px;
    border-width: 3px;
  }
}
@media (max-width: 750px) {
  .pro-item .item-box {
    border-radius: 16px;
  }
  .pro-item .item-body {
    padding: 8px 10px 12px;
  }
  .pro-item .item-body .item-name {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 2px;
  }
  .pro-item .item-body .item-title {
    font-size: 15px;
    line-height: 26px;
    min-height: 26px;
  }
  .pro-item .item-body .item-btn {
    margin-top: 4px;
  }
  .pro-item .item-body .item-btn input {
    width: 10px;
    height: 10px;
    margin-top: 4px;
    margin-right: 4px;
  }
  .pro-item .item-body .item-btn .btnn,
  .pro-item .item-body .item-btn a {
    font-size: 13px;
    line-height: 18px;
    border-width: 2px;
  }
}

/* ***************    index    ******************** */
.section {
  position: relative;
  width: 100%;
}
.sec-title {
  position: relative;
  font-size: 42px;
  font-family: Jost-Regular;
  line-height: 54px;
  color: #333333;
}
.sec-text {
  position: relative;
  font-size: 18px;
  font-family: Jost-Regular;
  color: #666666;
  line-height: 30px;
  margin-top: 8px;
}
.sec-text a {
  display: block;
  color: #666;
}
.sec-text a:hover {
  color: #db915e;
}

.sec1 {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 29px;
}
.sec1-tbody {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  letter-spacing: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 32px;
}
.sec1-tbody .sec1-tbody-left {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 20px;
  position: relative;
}
.sec1-tbody .sec1-tbody-right {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  position: relative;
}
.sec1-tbody-item {
  position: relative;
  width: 100%;
  margin-bottom: 21px;
}
.sec1-tbody .sec1-tbody-right .sec1-tbody-item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 16px;
  position: relative;
}
.sec1-tbody-item .item-box {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.sec1-tbody-item .item-pic {
  position: relative;
  width: 100%;
  text-align: center;
}
.sec1-tbody-item .item-pic img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.sec1-tbody-item .item-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  background: rgba(219, 145, 94, 0.85);
}
.sec1-tbody-item .item-body .item-title {
  line-height: 30px;
  font-size: 20px;
  color: #ffffff;
}
.sec1-tbody-item .item-body .item-title a {
  color: #fff;
}

@media (min-width: 1260px) and (max-width: 1359px) {
  .sec-title {
    font-size: 38px;
    line-height: 50px;
  }
  .sec-text {
    font-size: 17px;
    line-height: 30px;
    margin-top: 8px;
  }

  .sec1 {
    padding-top: 72px;
    padding-bottom: 26px;
  }
  .sec1-tbody {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 28px;
  }
  .sec1-tbody .sec1-tbody-left {
    width: 50%;
    padding: 0 15px;
  }
  .sec1-tbody .sec1-tbody-right {
    width: 50%;
  }
  .sec1-tbody .sec1-tbody-right .sec1-tbody-item {
    width: 50%;
    padding: 0 13px;
  }
  .sec1-tbody-item {
    margin-bottom: 18px;
  }
  .sec1-tbody-item .item-box {
    border-radius: 14px;
  }
  .sec1-tbody-item .item-body {
    padding: 4px 10px;
  }
  .sec1-tbody-item .item-body .item-title {
    line-height: 30px;
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .sec-title {
    font-size: 32px;
    line-height: 44px;
  }
  .sec-text {
    font-size: 16px;
    line-height: 28px;
    margin-top: 6px;
  }

  .sec1 {
    padding-top: 60px;
    padding-bottom: 22px;
  }
  .sec1-tbody {
    margin-left: -6px;
    margin-right: -6px;
    padding-top: 24px;
  }
  .sec1-tbody .sec1-tbody-left {
    width: 50%;
    padding: 0 6px;
  }
  .sec1-tbody .sec1-tbody-right {
    width: 50%;
  }
  .sec1-tbody .sec1-tbody-right .sec1-tbody-item {
    width: 50%;
    padding: 0 8px;
  }

  .sec1-tbody-item {
    margin-bottom: 15px;
  }
  .sec1-tbody-item .item-box {
    border-radius: 12px;
  }
  .sec1-tbody-item .item-body {
    padding: 3px 8px;
  }
  .sec1-tbody-item .item-body .item-title {
    line-height: 28px;
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .sec-title {
    font-size: 26px;
    line-height: 38px;
  }
  .sec-text {
    font-size: 15px;
    line-height: 26px;
    margin-top: 6px;
  }

  .sec1 {
    padding-top: 48px;
    padding-bottom: 18px;
  }
  .sec1-tbody {
    margin-left: -6px;
    margin-right: -6px;
    padding-top: 20px;
  }
  .sec1-tbody .sec1-tbody-left {
    width: 100%;
    padding: 0 6px;
  }
  .sec1-tbody .sec1-tbody-right {
    width: 100%;
  }
  .sec1-tbody .sec1-tbody-right .sec1-tbody-item {
    width: 50%;
    padding: 0 6px;
  }
  .sec1-tbody-item {
    margin-bottom: 12px;
  }
  .sec1-tbody-item .item-box {
    border-radius: 10px;
  }
  .sec1-tbody-item .item-body {
    padding: 3px 8px;
  }
  .sec1-tbody-item .item-body .item-title {
    line-height: 26px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .sec-title {
    font-size: 20px;
    line-height: 30px;
  }
  .sec-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 6px;
  }

  .sec1 {
    padding-top: 30px;
    padding-bottom: 14px;
  }
  .sec1-tbody {
    margin-left: -6px;
    margin-right: -6px;
    padding-top: 20px;
  }
  .sec1-tbody .sec1-tbody-left {
    width: 100%;
    padding: 0 6px;
  }
  .sec1-tbody .sec1-tbody-right {
    width: 100%;
  }
  .sec1-tbody .sec1-tbody-right .sec1-tbody-item {
    width: 100%;
    padding: 0 6px;
  }
  .sec1-tbody-item {
    margin-bottom: 12px;
  }
  .sec1-tbody-item .item-box {
    border-radius: 10px;
  }
  .sec1-tbody-item .item-body {
    padding: 3px 8px;
  }
  .sec1-tbody-item .item-body .item-title {
    line-height: 24px;
    font-size: 14px;
  }
}

.sec2 {
  position: relative;
  width: 100%;
  padding-top: 42px;
  padding-bottom: 83px;
}
.sec2-tbody {
  position: relative;
  margin-left: -56px;
  margin-right: -56px;
  padding: 0 56px;
  padding-top: 42px;
}
.swiper-sec2 {
  position: relative;
  width: 100%;
}
.swiper-sec2 .swiper-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
}
.swiper-sec2 .swiper-button {
  width: 26px;
  height: 30px;
  line-height: 30px;
  margin-top: -15px;
  text-align: center;
  font-size: 28px;
  color: #666;
}
.swiper-sec2 .swiper-button:hover {
  color: #db915e;
}
@media (min-width: 1260px) and (max-width: 1459px) {
  .sec2 {
    padding-top: 36px;
    padding-bottom: 70px;
  }
  .sec2-tbody {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 40px;
    padding-top: 36px;
  }
  .swiper-sec2 .swiper-button {
    width: 24px;
    height: 28px;
    line-height: 28px;
    margin-top: -14px;
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .sec2 {
    padding-top: 32px;
    padding-bottom: 56px;
  }
  .sec2-tbody {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 32px;
    padding-top: 30px;
  }
  .swiper-sec2 .swiper-button {
    width: 20px;
    height: 24px;
    line-height: 24px;
    margin-top: -12px;
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .sec2 {
    padding-top: 28px;
    padding-bottom: 42px;
  }
  .sec2-tbody {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 28px;
    padding-top: 24px;
  }
  .swiper-sec2 .swiper-button {
    width: 20px;
    height: 24px;
    line-height: 24px;
    margin-top: -12px;
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .sec2 {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .sec2-tbody {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 20px;
    padding-top: 20px;
  }
  .swiper-sec2 .swiper-button {
    width: 18px;
    height: 24px;
    line-height: 24px;
    margin-top: -12px;
    font-size: 18px;
  }
}
.sec3 {
  position: relative;
  width: 100%;
  padding-top: 81px;
  padding-bottom: 10%;
  background: url(sec3-bottom-bgi.png) no-repeat center bottom;
  background-size: 100%;
  background-color: #f7f3f0;
}
.sec3-tbody {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec3-tbody-info {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 46%;
}
.sec3-tbody-img {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.sec3-tbody-img .item-pic {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
}
.sec3-tbody-img .item-pic .video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.sec3-tbody-text {
  position: relative;
  font-size: 18px;
  margin-top: 54px;
  color: #666666;
  line-height: 30px;
}
.sec3-tbody-btn {
  position: relative;
  width: 100%;
  padding-top: 124px;
  padding-bottom: 6px;
}
.sec-tbody-btn a,
.sec-tbody-btn .btnn {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  min-width: 150px;
  padding: 8px 20px;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #db915e;
  background: #db915e;
}
.sec-tbody-btn a:hover,
.sec-tbody-btn .btnn:hover {
  color: #db915e;
  background: #fff;
}

@media screen and (max-width: 1359px) {
  .sec3 {
    padding-top: 72px;
    padding-bottom: 9.75%;
  }
  .sec3-tbody-info {
    width: 46%;
  }
  .sec3-tbody-img {
    width: 50%;
  }
  .sec3-tbody-text {
    font-size: 17px;
    margin-top: 48px;
    line-height: 30px;
  }
  .sec3-tbody-btn {
    padding-top: 106px;
    padding-bottom: 4px;
  }
  .sec-tbody-btn a,
  .sec-tbody-btn .btnn {
    min-width: 142px;
    padding: 7px 18px;
    line-height: 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1259px) {
  .sec3 {
    padding-top: 63px;
    padding-bottom: 9.25%;
  }
  .sec3-tbody-info {
    width: 47%;
  }
  .sec3-tbody-img {
    width: 50%;
  }
  .sec3-tbody-text {
    font-size: 16px;
    margin-top: 40px;
    line-height: 28px;
  }
  .sec3-tbody-btn {
    padding-top: 88px;
    padding-bottom: 4px;
  }
  .sec-tbody-btn a,
  .sec-tbody-btn .btnn {
    min-width: 134px;
    padding: 6px 16px;
    line-height: 28px;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .sec3 {
    padding-top: 54px;
    padding-bottom: 8.75%;
  }
  .sec3-tbody-info {
    width: 48%;
  }
  .sec3-tbody-img {
    width: 50%;
  }
  .sec3-tbody-text {
    font-size: 15px;
    margin-top: 20px;
    line-height: 26px;
  }
  .sec3-tbody-btn {
    padding-top: 50px;
    padding-bottom: 4px;
  }
  .sec-tbody-btn a,
  .sec-tbody-btn .btnn {
    min-width: 126px;
    padding: 5px 14px;
    line-height: 26px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec3 {
    padding-top: 40px;
    padding-bottom: 8.5%;
  }
  .sec3-tbody-info {
    width: 48%;
  }
  .sec3-tbody-img {
    width: 50%;
  }
  .sec3-tbody-text {
    font-size: 14px;
    margin-top: 14px;
    line-height: 24px;
  }
  .sec3-tbody-btn {
    padding-top: 32px;
    padding-bottom: 0px;
  }
  .sec-tbody-btn a,
  .sec-tbody-btn .btnn {
    min-width: 118px;
    padding: 4px 12px;
    line-height: 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .sec3 {
    padding-top: 28px;
    padding-bottom: 8%;
  }
  .sec3-tbody-info {
    width: 100%;
  }
  .sec3-tbody-img {
    width: 100%;
    margin-top: 20px;
  }
  .sec3-tbody-text {
    font-size: 13px;
    margin-top: 8px;
    line-height: 22px;
  }
  .sec3-tbody-btn {
    padding-top: 16px;
    padding-bottom: 0px;
  }
  .sec-tbody-btn a,
  .sec-tbody-btn .btnn {
    min-width: 118px;
    padding: 4px 12px;
    line-height: 24px;
    font-size: 14px;
  }
}
.sec4 {
  position: relative;
  width: 100%;
  padding-top: 54px;
  padding-bottom: 40px;
}
.sec4-tbody {
  position: relative;
  width: 100%;
  padding-top: 38px;
}
.sec4-tbody-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  margin-left: -25px;
  margin-right: -25px;
}
.sec4-tbody-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 33.3333333%;
  padding: 0 25px;
  margin-bottom: 20px;
}
.sec4-tbody-item .item-box {
  position: relative;
  width: 100%;
}
.sec4-tbody-item .item-box .item-pic {
  position: relative;
  width: 100%;
  text-align: center;
}
.sec4-tbody-item .item-box .item-pic img {
  width: 100%;
  display: block;
}
.sec4-tbody-item .item-pic .item-date {
  position: absolute;
  left: 22px;
  top: 22px;
  min-width: 60px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #666666;
  line-height: 20px;
  background: #ffffff;
  border-radius: 4px;
  padding: 5px 6px;
}
.sec4-tbody-item .item-pic .item-date span {
  font-size: 24px;
  display: block;
  color: #db915e;
  line-height: 30px;
}
.sec4-tbody-item .item-box .item-body {
  position: relative;
  width: 100%;
  padding-top: 12px;
}
.sec4-tbody-item .item-body .item-title {
  position: relative;
  font-size: 22px;
  color: #333333;
  line-height: 30px;
}
.sec4-tbody-item .item-body .item-desc {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
  margin-top: 4px;
}
.sec4-tbody-item .item-body .item-btn {
  font-size: 16px;
  line-height: 20px;
  color: #db915e;
  margin-top: 12px;
}
.sec4-tbody-item .item-body .item-btn a {
  display: inline-block;
  vertical-align: top;
  color: #db915e;
  border-bottom: 4px dotted transparent;
}
.sec4-tbody-item .item-body .item-btn a:hover {
  border-color: #db915e;
}
@media screen and (max-width: 1359px) {
  .sec4 {
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .sec4-tbody {
    padding-top: 34px;
  }
  .sec4-tbody-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .sec4-tbody-item {
    width: 33.3333333%;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .sec4-tbody-item .item-pic .item-date {
    left: 18px;
    top: 18px;
    min-width: 56px;
    font-size: 15px;
    line-height: 20px;
    padding: 4px 6px;
  }
  .sec4-tbody-item .item-pic .item-date span {
    font-size: 22px;
    line-height: 28px;
  }
  .sec4-tbody-item .item-box .item-body {
    padding-top: 10px;
  }
  .sec4-tbody-item .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
  }
  .sec4-tbody-item .item-body .item-desc {
    font-size: 17px;
    line-height: 30px;
    margin-top: 4px;
  }
  .sec4-tbody-item .item-body .item-btn {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
  }
  .sec4-tbody-item .item-body .item-btn a {
    border-width: 4px;
  }
}
@media screen and (max-width: 1259px) {
  .sec4 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .sec4-tbody {
    padding-top: 28px;
  }
  .sec4-tbody-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .sec4-tbody-item {
    width: 33.3333333%;
    padding: 0 6px;
    margin-bottom: 18px;
  }
  .sec4-tbody-item .item-pic .item-date {
    left: 12px;
    top: 12px;
    min-width: 52px;
    font-size: 14px;
    line-height: 18px;
    padding: 3px 4px;
  }
  .sec4-tbody-item .item-pic .item-date span {
    font-size: 20px;
    line-height: 28px;
  }
  .sec4-tbody-item .item-box .item-body {
    padding-top: 10px;
  }
  .sec4-tbody-item .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
  }
  .sec4-tbody-item .item-body .item-desc {
    font-size: 16px;
    line-height: 28px;
    margin-top: 4px;
  }
  .sec4-tbody-item .item-body .item-btn {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
  .sec4-tbody-item .item-body .item-btn a {
    border-width: 3px;
  }
}
@media screen and (max-width: 991px) {
  .sec4 {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .sec4-tbody {
    padding-top: 24px;
  }
  .sec4-tbody-list {
    margin-left: -4px;
    margin-right: -4px;
  }
  .sec4-tbody-item {
    width: 33.3333333%;
    padding: 0 4px;
    margin-bottom: 16px;
  }
  .sec4-tbody-item .item-pic .item-date {
    left: 8px;
    top: 8px;
    min-width: 48px;
    font-size: 14px;
    line-height: 18px;
    padding: 3px 4px;
  }
  .sec4-tbody-item .item-pic .item-date span {
    font-size: 18px;
    line-height: 24px;
  }
  .sec4-tbody-item .item-box .item-body {
    padding-top: 8px;
  }
  .sec4-tbody-item .item-body .item-title {
    font-size: 17px;
    line-height: 28px;
  }
  .sec4-tbody-item .item-body .item-desc {
    font-size: 15px;
    line-height: 26px;
    margin-top: 2px;
  }
  .sec4-tbody-item .item-body .item-btn {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
  .sec4-tbody-item .item-body .item-btn a {
    border-width: 3px;
  }
}
@media screen and (max-width: 720px) {
  .sec4 {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .sec4-tbody {
    padding-top: 20px;
  }
  .sec4-tbody-list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .sec4-tbody-item {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 16px;
  }
  .sec4-tbody-item .item-pic .item-date {
    left: 8px;
    top: 8px;
    min-width: 48px;
    font-size: 14px;
    line-height: 18px;
    padding: 3px 4px;
  }
  .sec4-tbody-item .item-pic .item-date span {
    font-size: 18px;
    line-height: 24px;
  }
  .sec4-tbody-item .item-box .item-body {
    padding-top: 8px;
  }
  .sec4-tbody-item .item-body .item-title {
    font-size: 17px;
    line-height: 28px;
  }
  .sec4-tbody-item .item-body .item-desc {
    font-size: 14px;
    line-height: 24px;
    margin-top: 2px;
  }
  .sec4-tbody-item .item-body .item-btn {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
  .sec4-tbody-item .item-body .item-btn a {
    border-width: 3px;
  }
}
@media screen and (max-width: 600px) {
  .sec4-tbody-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .sec4-tbody-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 420px) {
  .sec4-tbody-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .sec4-tbody-item {
    width: 100%;
    padding: 0 6px;
    margin-bottom: 16px;
  }
}
.sec5 {
  position: relative;
  width: 100%;
  padding-top: 54px;
  padding-bottom: 20px;
}
.sec5-tbody {
  position: relative;
  width: 100%;
  margin-top: 48px;
}
.sec5-tbody-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sec5-tbody-video .item-pic {
  position: relative;
  width: 100%;
  padding-bottom: 31.25%;
  height: 0;
}
.sec5-tbody-video .item-pic .video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 1459px) {
  .sec5 {
    padding-top: 48px;
    padding-bottom: 18px;
  }
  .sec5-tbody {
    margin-top: 42px;
  }
}
@media screen and (max-width: 1259px) {
  .sec5 {
    padding-top: 42px;
    padding-bottom: 16px;
  }
  .sec5-tbody {
    margin-top: 36px;
  }
}
@media screen and (max-width: 991px) {
  .sec5 {
    padding-top: 36px;
    padding-bottom: 14px;
  }
  .sec5-tbody {
    margin-top: 30px;
  }
}
@media screen and (max-width: 720px) {
  .sec5 {
    padding-top: 30px;
    padding-bottom: 12px;
  }
  .sec5-tbody {
    margin-top: 24px;
  }
}
@media screen and (max-width: 560px) {
  .sec5 {
    padding-top: 24px;
    padding-bottom: 10px;
  }
  .sec5-tbody {
    margin-top: 18px;
  }
}
.sec6 {
  position: relative;
  width: 100%;
  padding: 64px 0 106px;
}
.sec6-tbody {
  position: relative;
  width: 100%;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec6-tbody-left {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 698px;
}
.sec6-tbody-right {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 500px;
}
.sec6-tbody-item {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.sec6-tbody-left .sec6-tbody-item:nth-last-of-type(1) {
  margin-bottom: 0 !important;
}
.sec6-tbody-item .item-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec6-tbody-item .item-box .item-pic {
  position: relative;
  width: 240px;
  text-align: center;
}
.sec6-tbody-item .item-box .item-pic img {
  width: 100%;
  display: block;
}
.sec6-tbody-item .item-box .item-body {
  position: relative;
  width: calc(100% - 240px);
  padding-left: 26px;
}
.sec6-tbody-item .item-body .item-title {
  position: relative;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
}
.sec6-tbody-item .item-body .item-desc {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 21px;
}
.sec6-tbody-item .item-body .item-btn {
  font-size: 16px;
  color: #db915e;
  line-height: 22px;
  margin-top: 32px;
}
.sec6-tbody-item .item-body .item-btn a {
  display: inline-block;
  vertical-align: top;
  color: #db915e;
  border-bottom: 4px dotted transparent;
}
.sec6-tbody-item .item-body .item-btn a:hover {
  border-color: #db915e;
}
.sec6-tbody-box {
  position: relative;
  width: 100%;
}
.sec6-tbody-box .item-pic {
  position: relative;
  width: 100%;
  text-align: center;
}
.sec6-tbody-box .item-pic img {
  width: 100%;
  display: block;
}
.sec6-tbody-box .item-body {
  position: absolute;
  left: 100px;
  right: 100px;
  top: 54px;
  text-align: center;
}
.sec6-tbody-box .item-body .item-title {
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 44px;
}
.sec6-tbody-box .item-body .item-title a {
  color: #fff;
}
.sec6-tbody-box .item-body .item-title a:hover {
  color: #db915e;
}
.sec6-tbody-box .item-body .item-btn {
  position: relative;
  width: 100%;
  padding-top: 10px;
}
.sec6-tbody-box .item-body .item-btn a,
.sec6-tbody-box .item-body .item-btn .btnn {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  min-width: 150px;
  padding: 8px 20px;
  line-height: 32px;
  font-size: 16px;
  color: #333333;
  border: 1px solid #ffffff;
  background: #ffffff;
}
.sec6-tbody-box .item-body .item-btn a:hover,
.sec6-tbody-box .item-body .item-btn .btnn:hover {
  color: #fff;
  background: #db915e;
}

@media screen and (max-width: 1359px) {
  .sec6 {
    padding: 56px 0 92px;
  }
  .sec6-tbody {
    padding-top: 44px;
  }
  .sec6-tbody-left {
    width: 670px;
  }
  .sec6-tbody-right {
    width: 450px;
  }
  .sec6-tbody-item {
    margin-bottom: 40px;
  }
  .sec6-tbody-item .item-box .item-pic {
    width: 220px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 220px);
    padding-left: 20px;
  }
  .sec6-tbody-item .item-body .item-title {
    font-size: 18px;
    line-height: 30px;
  }
  .sec6-tbody-item .item-body .item-desc {
    font-size: 16px;
    line-height: 28px;
    margin-top: 18px;
  }
  .sec6-tbody-item .item-body .item-btn {
    font-size: 16px;
    line-height: 22px;
    margin-top: 24px;
  }
  .sec6-tbody-item .item-body .item-btn a {
    border-width: 4px;
  }
  .sec6-tbody-box .item-body {
    left: 60px;
    right: 60px;
    top: 40px;
  }
  .sec6-tbody-box .item-body .item-title {
    font-size: 28px;
    line-height: 40px;
  }
  .sec6-tbody-box .item-body .item-btn {
    padding-top: 10px;
  }
  .sec6-tbody-box .item-body .item-btn a,
  .sec6-tbody-box .item-body .item-btn .btnn {
    min-width: 142px;
    padding: 7px 18px;
    line-height: 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1259px) {
  .sec6 {
    padding: 48px 0 78px;
  }
  .sec6-tbody {
    padding-top: 38px;
  }
  .sec6-tbody-left {
    width: 500px;
  }
  .sec6-tbody-right {
    width: 400px;
  }
  .sec6-tbody-item {
    margin-bottom: 30px;
  }
  .sec6-tbody-item .item-box .item-pic {
    width: 200px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 200px);
    padding-left: 18px;
  }
  .sec6-tbody-item .item-body .item-title {
    font-size: 17px;
    line-height: 30px;
  }
  .sec6-tbody-item .item-body .item-desc {
    font-size: 15px;
    line-height: 26px;
    margin-top: 14px;
  }
  .sec6-tbody-item .item-body .item-btn {
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
  }
  .sec6-tbody-item .item-body .item-btn a {
    border-width: 4px;
  }
  .sec6-tbody-box .item-body {
    left: 45px;
    right: 45px;
    top: 24px;
  }
  .sec6-tbody-box .item-body .item-title {
    font-size: 24px;
    line-height: 36px;
  }
  .sec6-tbody-box .item-body .item-btn {
    padding-top: 10px;
  }
  .sec6-tbody-box .item-body .item-btn a,
  .sec6-tbody-box .item-body .item-btn .btnn {
    min-width: 134px;
    padding: 6px 16px;
    line-height: 28px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .sec6 {
    padding: 40px 0 64px;
  }
  .sec6-tbody {
    padding-top: 32px;
  }
  .sec6-tbody-left {
    width: 380px;
  }
  .sec6-tbody-right {
    width: 330px;
  }
  .sec6-tbody-item {
    margin-bottom: 18px;
  }
  .sec6-tbody-item .item-box .item-pic {
    width: 172px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 172px);
    padding-left: 12px;
  }
  .sec6-tbody-item .item-body .item-title {
    font-size: 16px;
    line-height: 28px;
  }
  .sec6-tbody-item .item-body .item-desc {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .sec6-tbody-item .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 16px;
  }
  .sec6-tbody-item .item-body .item-btn a {
    border-width: 4px;
  }
  .sec6-tbody-box .item-body {
    left: 30px;
    right: 30px;
    top: 18px;
  }
  .sec6-tbody-box .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
  }
  .sec6-tbody-box .item-body .item-btn {
    padding-top: 8px;
  }
  .sec6-tbody-box .item-body .item-btn a,
  .sec6-tbody-box .item-body .item-btn .btnn {
    min-width: 126px;
    padding: 5px 14px;
    line-height: 26px;
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  .sec6 {
    padding: 32px 0 50px;
  }
  .sec6-tbody {
    padding-top: 24px;
  }
  .sec6-tbody-left {
    width: 100%;
  }
  .sec6-tbody-right {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }
  .sec6-tbody-item {
    margin-bottom: 20px;
  }
  .sec6-tbody-item .item-box .item-pic {
    width: 240px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 240px);
    padding-left: 24px;
  }
  .sec6-tbody-item .item-body .item-title {
    font-size: 16px;
    line-height: 28px;
  }
  .sec6-tbody-item .item-body .item-desc {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .sec6-tbody-item .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 16px;
  }
  .sec6-tbody-item .item-body .item-btn a {
    border-width: 4px;
  }
  .sec6-tbody-box .item-body {
    left: 30px;
    right: 30px;
    top: 18px;
  }
  .sec6-tbody-box .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
    max-width: 200px;
    margin: 0 auto;
  }
  .sec6-tbody-box .item-body .item-btn {
    padding-top: 8px;
  }
  .sec6-tbody-box .item-body .item-btn a,
  .sec6-tbody-box .item-body .item-btn .btnn {
    min-width: 126px;
    padding: 5px 14px;
    line-height: 26px;
    font-size: 15px;
  }
}
@media (max-width: 620px) {
  .sec6-tbody-item .item-box .item-pic {
    width: 210px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 210px);
    padding-left: 16px;
  }
}
@media (max-width: 520px) {
  .sec6-tbody-item .item-box .item-pic {
    width: 180px;
  }
  .sec6-tbody-item .item-box .item-body {
    width: calc(100% - 180px);
    padding-left: 12px;
  }
}
@media (max-width: 440px) {
  .sec6-tbody-item .item-box .item-pic {
    width: 100%;
  }
  .sec6-tbody-item .item-box .item-body {
    width: 100%;
    padding-left: 0;
    padding-top: 14px;
  }
}
@media (max-width: 360px) {
  .sec6-list-item {
    width: 100%;
  }
}

.sec7 {
  position: relative;
  width: 100%;
  padding: 54px 0 66px;
  background: #fbfaf8;
}
.sec7-tbody {
  position: relative;
  width: 100%;
  padding-top: 36px;
}
.sec7-faq-list {
  font-size: 0;
  letter-spacing: 0;
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
}
.sec7-faq-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin-bottom: 27px;
  padding: 0 30px;
}
.sec7-faq-list .sec7-faq-item:nth-of-type(odd) {
  float: left;
}
.sec7-faq-list .sec7-faq-item:nth-of-type(even) {
  float: right;
}

.faq-item-name {
  position: relative;
  width: 100%;
  padding: 12px 18px;
  padding-right: 50px;
  font-size: 18px;
  color: #333333;
  line-height: 31px;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  cursor: pointer;
}
.faq-item-name:before {
  content: "\e608";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  background: #db915e;
  font-family: "iconfont";
  border-radius: 50%;
  text-align: center;
  display: block;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}
.faq-item-text {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  display: none;
  position: relative;
  padding: 0 18px;
  margin-top: 10px;
}
/* .faq-item-name.active, .faq-item-name:hover{color:#DD042B;} */
.faq-item-name.active:before {
  content: "\e600"; /* color:#DD042B; */
}
.sec7-faq-item .faq-item-text {
  max-height: 90px;
  overflow: auto;
  margin-bottom: -18px;
}

@media screen and (max-width: 1359px) {
  .sec7 {
    padding: 48px 0 58px;
  }
  .sec7-tbody {
    padding-top: 32px;
  }
  .sec7-faq-list {
    margin-left: -18px;
    margin-right: -18px;
  }
  .sec7-faq-item {
    width: 50%;
    margin-bottom: 25px;
    padding: 0 18px;
  }
  .faq-item-name {
    padding: 11px 16px;
    padding-right: 48px;
    font-size: 18px;
    line-height: 30px;
  }
  .faq-item-name:before {
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
  .faq-item-text {
    font-size: 16px;
    line-height: 28px;
    padding: 0 16px;
    margin-top: 8px;
  }
  .sec7-faq-item .faq-item-text {
    max-height: 84px;
    margin-bottom: -14px;
  }
}
@media screen and (max-width: 1259px) {
  .sec7 {
    padding: 42px 0 50px;
  }
  .sec7-tbody {
    padding-top: 28px;
  }
  .sec7-faq-list {
    margin-left: -8px;
    margin-right: -8px;
  }
  .sec7-faq-item {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 8px;
  }
  .faq-item-name {
    padding: 10px 14px;
    padding-right: 48px;
    font-size: 15px;
    line-height: 30px;
  }
  .faq-item-name:before {
    right: 10px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
  .faq-item-text {
    font-size: 15px;
    line-height: 26px;
    padding: 0 14px;
    margin-top: 6px;
  }
  .sec7-faq-item .faq-item-text {
    max-height: 78px;
    margin-bottom: -14px;
  }
}
@media screen and (max-width: 991px) {
  .sec7 {
    padding: 36px 0 42px;
  }
  .sec7-tbody {
    padding-top: 24px;
  }
  .sec7-faq-list {
    margin-left: -8px;
    margin-right: -8px;
  }
  .sec7-faq-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 8px;
  }
  .faq-item-name {
    padding: 10px 14px;
    padding-right: 48px;
    font-size: 16px;
    line-height: 28px;
  }
  .faq-item-name:before {
    right: 10px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
  .faq-item-text {
    font-size: 15px;
    line-height: 26px;
    padding: 0 14px;
    margin-top: 6px;
  }
  .sec7-faq-item .faq-item-text {
    max-height: none;
    margin-bottom: 0;
  }
}
.sec8 {
  position: relative;
  width: 100%;
  padding: 95px 0 40px;
}
.sec8-tbody {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec8-tbody-left {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 500px;
}
.sec8-tbody-right {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 692px;
}
.sec8-tbody-img {
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.sec8-tbody-img a {
  display: block;
  width: 100%;
}
.sec8-tbody-img img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
}
.sec8-down-list {
  position: relative;
  width: 100%;
  padding-top: 34px;
}
.sec8-down-item {
  position: relative;
  width: 100%;
  margin-bottom: 38px;
}
.sec8-down-list .sec8-down-item:nth-last-of-type(1) {
  margin-bottom: 0 !important;
}
.sec8-down-item .item-box {
  position: relative;
  width: 100%;
  padding: 20px 32px;
  padding-left: 90px;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.sec8-down-item .item-box .item-pic {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  text-align: center;
}
.sec8-down-item .item-box .item-pic img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 40px;
}
.sec8-down-item .item-box .item-title {
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  min-height: 60px;
}
@media screen and (max-width: 1359px) {
  .sec8 {
    padding: 90px 0 36px;
  }
  .sec8-tbody-left {
    width: 475px;
  }
  .sec8-tbody-right {
    width: 640px;
  }
  .sec8-down-list {
    padding-top: 30px;
  }
  .sec8-down-item {
    margin-bottom: 32px;
  }
  .sec8-down-item .item-box {
    padding: 18px 28px;
    padding-left: 82px;
  }
  .sec8-down-item .item-box .item-pic {
    width: 82px;
  }
  .sec8-down-item .item-box .item-pic img {
    width: 36px;
  }
  .sec8-down-item .item-box .item-title {
    font-size: 17px;
    line-height: 30px;
    min-height: 60px;
  }
}
@media screen and (max-width: 1259px) {
  .sec8 {
    padding: 75px 0 30px;
  }
  .sec8-tbody-left {
    width: 425px;
  }
  .sec8-tbody-right {
    width: 505px;
  }
  .sec8-down-list {
    padding-top: 24px;
  }
  .sec8-down-item {
    margin-bottom: 28px;
  }
  .sec8-down-item .item-box {
    padding: 16px 24px;
    padding-left: 76px;
  }
  .sec8-down-item .item-box .item-pic {
    width: 76px;
  }
  .sec8-down-item .item-box .item-pic img {
    width: 32px;
  }
  .sec8-down-item .item-box .item-title {
    font-size: 16px;
    line-height: 28px;
    min-height: 56px;
  }
}
@media screen and (max-width: 991px) {
  .sec8 {
    padding: 60px 0 24px;
  }
  .sec8-tbody {
    flex-direction: column-reverse;
  }
  .sec8-tbody-left {
    width: 100%;
    margin-top: 20px;
  }
  .sec8-tbody-right {
    width: 100%;
  }
  .sec8-down-list {
    padding-top: 18px;
  }
  .sec8-down-item {
    margin-bottom: 22px;
  }
  .sec8-down-item .item-box {
    padding: 14px 20px;
    padding-left: 72px;
  }
  .sec8-down-item .item-box .item-pic {
    width: 72px;
  }
  .sec8-down-item .item-box .item-pic img {
    width: 30px;
  }
  .sec8-down-item .item-box .item-title {
    font-size: 15px;
    line-height: 26px;
    min-height: 52px;
  }
}
@media screen and (max-width: 720px) {
  .sec8 {
    padding: 45px 0 20px;
  }
  .sec8-tbody {
    flex-direction: column-reverse;
  }
  .sec8-tbody-left {
    width: 100%;
    margin-top: 20px;
  }
  .sec8-tbody-right {
    width: 100%;
  }
  .sec8-down-list {
    padding-top: 12px;
  }
  .sec8-down-item {
    margin-bottom: 18px;
  }
  .sec8-down-item .item-box {
    padding: 12px 18px;
    padding-left: 66px;
  }
  .sec8-down-item .item-box .item-pic {
    width: 66px;
  }
  .sec8-down-item .item-box .item-pic img {
    width: 28px;
  }
  .sec8-down-item .item-box .item-title {
    font-size: 14px;
    line-height: 24px;
    min-height: 48px;
  }
}
.sec9 {
  position: relative;
  width: 100%;
  padding: 50px 0 5%;
}
.sec9-tbody {
  position: relative;
  width: 100%;
  padding-top: 32px;
}
.sec9-swiper {
  position: relative;
  margin-left: -32px;
  margin-right: -32px;
  padding: 0 32px;
}
.sec9-swiper .swiper-button {
  font-size: 18px;
  line-height: 30px;
  height: 30px;
  margin-top: -15px;
  width: 20px;
  text-align: center;
  color: #666;
  opacity: 0;
  visibility: hidden;
}
.sec9-swiper:hover .swiper-button {
  opacity: 1;
  visibility: visible;
}
.sec9-swiper .swiper-button:hover {
  color: #db915e;
}
.swiper-sec9 {
  position: relative;
  width: 100%;
}
.swiper-sec9 .swiper-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.swiper-sec9 .swiper-slide .list-item {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
}
.cer-list {
  position: relative;
  margin-left: -18px;
  margin-right: -18px;
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 25px;
}
.cer-list .list-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 25%;
  padding: 0 17px;
  margin-bottom: 38px;
}
.swiper-sec9 .list-item .item-pics,
.cer-list .list-item .item-pics {
  position: relative;
  padding-bottom: calc(100% - 2px);
  background: #ffffff;
  border: 1px solid #e2e2e2;
}
.swiper-sec9 .list-item .item-box,
.cer-list .list-item .item-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.swiper-sec9 .list-item .item-pics img,
.cer-list .list-item .item-pics img {
  max-width: 100% !important;
  max-height: 100% !important;
}
.list-item .item-backdrop .iconfont {
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border-radius: 50%;
}
.swiper-sec9 .list-item .item-body,
.cer-list .list-item .item-body {
  padding-top: 6px;
  text-align: center;
  position: relative;
}
.swiper-sec9 .list-item .item-body .item-name,
.cer-list .list-item .item-body .item-name {
  font-size: 16px;
  color: #333333;
  line-height: 30px;
}

@media screen and (max-width: 999px) {
  .list-item .item-backdrop {
    display: none;
  }
}
@media screen and (max-width: 1359px) {
  .sec9 {
    padding: 44px 0 5%;
  }
  .sec9-tbody {
    padding-top: 28px;
  }
  .sec9-swiper {
    margin-left: -28px;
    margin-right: -28px;
    padding: 0 28px;
  }
  .sec9-swiper .swiper-button {
    font-size: 18px;
    line-height: 28px;
    height: 28px;
    margin-top: -14px;
    width: 18px;
  }
  .swiper-sec9 .swiper-slide {
    width: 25%;
  }
  .cer-list {
    margin-left: -12px;
    margin-right: -12px;
    padding-bottom: 20px;
  }
  .cer-list .list-item {
    width: 25%;
    padding: 0 12px;
    margin-bottom: 30px;
  }
  .list-item .item-backdrop .iconfont {
    font-size: 20px;
    font-size: 2rem;
  }
  .swiper-sec9 .list-item .item-body,
  .cer-list .list-item .item-body {
    padding-top: 6px;
  }
  .swiper-sec9 .list-item .item-body .item-name,
  .cer-list .list-item .item-body .item-name {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1259px) {
  .sec9 {
    padding: 38px 0 4.875%;
  }
  .sec9-tbody {
    padding-top: 24px;
  }
  .sec9-swiper {
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
  }
  .sec9-swiper .swiper-button {
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    margin-top: -13px;
    width: 16px;
  }
  .swiper-sec9 .swiper-slide {
    width: 25%;
  }
  .cer-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 16px;
  }
  .cer-list .list-item {
    width: 25%;
    padding: 0 6px;
    margin-bottom: 24px;
  }
  .list-item .item-backdrop .iconfont {
    font-size: 20px;
    font-size: 2rem;
  }
  .swiper-sec9 .list-item .item-body,
  .cer-list .list-item .item-body {
    padding-top: 5px;
  }
  .swiper-sec9 .list-item .item-body .item-name,
  .cer-list .list-item .item-body .item-name {
    font-size: 15px;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .sec9 {
    padding: 32px 0 4.75%;
  }
  .sec9-tbody {
    padding-top: 20px;
  }
  .sec9-swiper {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 20px;
  }
  .sec9-swiper .swiper-button {
    font-size: 15px;
    line-height: 26px;
    height: 26px;
    margin-top: -13px;
    width: 16px;
  }
  .swiper-sec9 .swiper-slide {
    width: 33.3333333%;
  }
  .cer-list {
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 12px;
  }
  .cer-list .list-item {
    width: 33.3333333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .list-item .item-backdrop .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .swiper-sec9 .list-item .item-body,
  .cer-list .list-item .item-body {
    padding-top: 4px;
  }
  .swiper-sec9 .list-item .item-body .item-name,
  .cer-list .list-item .item-body .item-name {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .sec9 {
    padding: 28px 0 4.5%;
  }
  .sec9-tbody {
    padding-top: 20px;
  }
  .sec9-swiper {
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 15px;
  }
  .sec9-swiper .swiper-button {
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    margin-top: -12px;
    width: 10px;
  }
  .swiper-sec9 .swiper-slide {
    width: 33.3333333%;
  }
  .cer-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 12px;
  }
  .cer-list .list-item {
    width: 33.3333333%;
    padding: 0 6px;
    margin-bottom: 20px;
  }
  .list-item .item-backdrop .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .swiper-sec9 .list-item .item-body,
  .cer-list .list-item .item-body {
    padding-top: 4px;
  }
  .swiper-sec9 .list-item .item-body .item-name,
  .cer-list .list-item .item-body .item-name {
    font-size: 13px;
    line-height: 22px;
  }
}
@media (max-width: 620px) {
  .sec9 {
    padding: 24px 0 4.5%;
  }
  .sec9-tbody {
    padding-top: 20px;
  }
  .sec9-swiper {
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 15px;
  }
  .sec9-swiper .swiper-button {
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    margin-top: -12px;
    width: 10px;
  }
  .swiper-sec9 .swiper-slide {
    width: 50%;
  }
  .cer-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 12px;
  }
  .cer-list .list-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 20px;
  }
  .list-item .item-backdrop .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .swiper-sec9 .list-item .item-body,
  .cer-list .list-item .item-body {
    padding-top: 4px;
  }
  .swiper-sec9 .list-item .item-body .item-name,
  .cer-list .list-item .item-body .item-name {
    font-size: 13px;
    line-height: 20px;
  }
}

.bread {
  width: 100%;
  position: relative;
  background: #f7f3f0;
}
.bread-href {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  padding: 35px 0;
}
.bread a {
  color: #666;
}
.bread a:hover,
.bread a.bread-active {
  color: #db915e;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .bread-href {
    font-size: 16px;
    line-height: 30px;
    padding: 32px 0;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .bread-href {
    font-size: 16px;
    line-height: 28px;
    padding: 28px 0;
  }
}
@media (max-width: 991px) {
  .bread-href {
    font-size: 15px;
    line-height: 26px;
    padding: 24px 0;
  }
}
@media (max-width: 767px) {
  .bread-href {
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
  }
}
@media (max-width: 560px) {
  .bread-href {
    font-size: 13px;
    line-height: 22px;
    padding: 16px 0;
  }
}

/* ************************* About &&&  Contact  ******************************** */

.about {
  position: relative;
  padding-top: 60px;
  padding-bottom: 6.40625%;
}
.about-top {
  position: relative;
  width: 100%;
  padding-bottom: 34px;
}
.about-top .boxs-title {
  font-size: 24px;
  text-align: center;
  color: #333333;
  line-height: 34px;
}
.contact-top {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}
.contact-top .boxs-title {
  font-size: 34px;
  text-align: center;
  color: #333333;
  line-height: 38px;
}
.contact-top-list {
  font-size: 18px;
  color: #666;
  line-height: 30px;
  margin-top: 36px;
}
.contact-top-list a,
.contact-top-list span {
  color: #666;
}
.contact-top-list a:hover {
  color: #db915e;
}
.about-top-text {
  font-size: 18px;
  color: #666;
  line-height: 30px;
  margin-top: 28px;
}
.about-top-text img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.about-top-text a {
  color: #db915e;
}
.about-top-text a:hover {
  color: #333;
}

.about-form {
  width: 100%;
  position: relative;
  margin-bottom: 71px;
  background: #f7f3f0;
  padding: 30px 44px 54px;
}
.about-form .xunbiao {
  text-align: center;
  font-size: 42px;
  line-height: 54px;
  color: #333;
}
.about-form form {
  width: 100%;
  position: relative;
  margin-top: 24px;
  padding-left: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-form .item-input {
  position: relative;
  height: 50px;
  margin-bottom: 19px;
  width: 47.15%;
  background: #ffffff;
}
.about-form .item-input1 {
  width: 100%;
  height: 162px;
  margin-bottom: 18px;
}
.about-form .item-code {
  position: relative;
  width: 100%;
  padding-right: 160px;
}
.about-form .attachment {
  cursor: pointer;
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  height: auto !important;
}
.about-form .item-input.star::before {
  position: absolute;
  left: -15px;
  top: 18px;
  content: "*";
  font-size: 18px;
  font-family: Arial;
  color: #ff0000;
  line-height: 16px;
}
.about-form .item-input input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
  line-height: 26px;
  padding: 6px 12px;
  display: block;
}
.about-form .item-input1 textarea {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
  line-height: 28px;
  padding: 6px 12px;
  display: block;
}

.attachment .file-group {
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
}
.attachment .file-group .file-btn {
  width: 100%;
  height: 100%;
  background: #fff;
  color: #db915e;
  font-size: 18px;
  font-size: 1.8rem;
  transition: 0.5s;
}
.attachment .file-group .file-single {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 111;
}

.about-form .item-code-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 148px;
  height: 100%;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.about-form .item-code-img .yanzheng {
  text-align: center;
  max-height: 50px;
}

.about-form .item-input-btn {
  width: 100%;
  height: 50px;
  background: #db915e;
  position: relative;
  margin-bottom: 0px;
}
.about-form .item-input-btn .item-btn {
  width: 100%;
  height: 100%;
  background: #db915e;
  font-size: 22px;
  color: #fff;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 1359px) {
  .about {
    padding-top: 54px;
    padding-bottom: 6.25%;
  }
  .about-top {
    padding-bottom: 30px;
  }
  .about-top .boxs-title {
    font-size: 22px;
    line-height: 32px;
  }
  .contact-top {
    padding-bottom: 28px;
  }
  .contact-top .boxs-title {
    font-size: 32px;
    line-height: 38px;
  }
  .contact-top-list {
    font-size: 17px;
    line-height: 30px;
    margin-top: 34px;
  }
  .about-top-text {
    font-size: 17px;
    line-height: 30px;
    margin-top: 26px;
  }

  .about-form {
    margin-bottom: 64px;
    padding: 28px 36px 48px;
  }
  .about-form .xunbiao {
    font-size: 36px;
    line-height: 48px;
  }
  .about-form form {
    margin-top: 22px;
    padding-left: 14px;
  }
  .about-form .item-input {
    height: 48px;
    margin-bottom: 18px;
    width: 47.2%;
  }
  .about-form .item-input1 {
    width: 100%;
    height: 156px;
    margin-bottom: 18px;
  }
  .about-form .item-code {
    width: 100%;
    padding-right: 156px;
  }
  .about-form .item-input.star::before {
    left: -14px;
    top: 17px;
  }
  .about-form .item-input input {
    font-size: 17px;
    line-height: 26px;
    padding: 5px 12px;
  }
  .about-form .item-input1 textarea {
    font-size: 17px;
    line-height: 28px;
    padding: 5px 12px;
  }

  .attachment .file-group {
    height: 48px;
  }
  .attachment .file-group .file-btn {
    font-size: 17px;
    font-size: 1.7rem;
  }

  .about-form .item-code-img {
    width: 144px;
  }
  .about-form .item-code-img .yanzheng {
    max-height: 48px;
  }

  .about-form .item-input-btn {
    height: 48px;
  }
  .about-form .item-input-btn .item-btn {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1259px) {
  .about {
    padding-top: 48px;
    padding-bottom: 6%;
  }
  .about-top {
    padding-bottom: 28px;
  }
  .about-top .boxs-title {
    font-size: 20px;
    line-height: 30px;
  }
  .contact-top {
    padding-bottom: 24px;
  }
  .contact-top .boxs-title {
    font-size: 30px;
    line-height: 36px;
  }
  .contact-top-list {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
  }
  .about-top-text {
    font-size: 16px;
    line-height: 28px;
    margin-top: 24px;
  }

  .about-form {
    margin-bottom: 56px;
    padding: 24px 30px 40px;
  }
  .about-form .xunbiao {
    font-size: 32px;
    line-height: 42px;
  }
  .about-form form {
    margin-top: 20px;
    padding-left: 14px;
  }
  .about-form .item-input {
    height: 44px;
    margin-bottom: 16px;
    width: 47.5%;
  }
  .about-form .item-input1 {
    width: 100%;
    height: 148px;
    margin-bottom: 16px;
  }
  .about-form .item-code {
    width: 100%;
    padding-right: 148px;
  }
  .about-form .item-input.star::before {
    left: -14px;
    top: 16px;
  }
  .about-form .item-input input {
    font-size: 16px;
    line-height: 26px;
    padding: 5px 12px;
  }
  .about-form .item-input1 textarea {
    font-size: 16px;
    line-height: 28px;
    padding: 5px 12px;
  }

  .attachment .file-group {
    height: 44px;
  }
  .attachment .file-group .file-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .about-form .item-code-img {
    width: 136px;
  }
  .about-form .item-code-img .yanzheng {
    max-height: 44px;
  }

  .about-form .item-input-btn {
    height: 44px;
  }
  .about-form .item-input-btn .item-btn {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .about {
    padding-top: 40px;
    padding-bottom: 5.75%;
  }
  .about-top {
    padding-bottom: 24px;
  }
  .about-top .boxs-title {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-top {
    padding-bottom: 20px;
  }
  .contact-top .boxs-title {
    font-size: 27px;
    line-height: 34px;
  }
  .contact-top-list {
    font-size: 15px;
    line-height: 26px;
    margin-top: 26px;
  }
  .about-top-text {
    font-size: 15px;
    line-height: 26px;
    margin-top: 20px;
  }

  .about-form {
    margin-bottom: 48px;
    padding: 20px 20px 36px;
  }
  .about-form .xunbiao {
    font-size: 28px;
    line-height: 38px;
  }
  .about-form form {
    margin-top: 18px;
    padding-left: 12px;
  }
  .about-form .item-input {
    height: 40px;
    margin-bottom: 14px;
    width: 48%;
  }
  .about-form .item-input1 {
    width: 100%;
    height: 140px;
    margin-bottom: 14px;
  }
  .about-form .item-code {
    width: 100%;
    padding-right: 136px;
  }
  .about-form .item-input.star::before {
    left: -12px;
    top: 14px;
  }
  .about-form .item-input input {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }
  .about-form .item-input1 textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }

  .attachment .file-group {
    height: 40px;
  }
  .attachment .file-group .file-btn {
    font-size: 15px;
    font-size: 1.5rem;
  }

  .about-form .item-code-img {
    width: 124px;
  }
  .about-form .item-code-img .yanzheng {
    max-height: 40px;
  }

  .about-form .item-input-btn {
    height: 40px;
  }
  .about-form .item-input-btn .item-btn {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 620px) {
  .about {
    padding-top: 28px;
    padding-bottom: 5.5%;
  }
  .about-top {
    padding-bottom: 20px;
  }
  .about-top .boxs-title {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-top {
    padding-bottom: 18px;
  }
  .contact-top .boxs-title {
    font-size: 24px;
    line-height: 32px;
  }
  .contact-top-list {
    font-size: 14px;
    line-height: 24px;
    margin-top: 22px;
  }
  .about-top-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 18px;
  }

  .about-form {
    margin-bottom: 36px;
    padding: 18px 20px 30px;
  }
  .about-form .xunbiao {
    font-size: 20px;
    line-height: 32px;
  }
  .about-form form {
    margin-top: 18px;
    padding-left: 15px;
  }
  .about-form .item-input {
    height: 40px;
    margin-bottom: 14px;
    width: 100%;
  }
  .about-form .item-input1 {
    width: 100%;
    height: 140px;
    margin-bottom: 14px;
  }
  .about-form .item-code {
    width: 100%;
    padding-right: 136px;
  }
  .about-form .item-input.star::before {
    left: -15px;
    top: 14px;
  }
  .about-form .item-input input {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }
  .about-form .item-input1 textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
  }

  .attachment .file-group {
    height: 40px;
  }
  .attachment .file-group .file-btn {
    font-size: 15px;
    font-size: 1.5rem;
  }

  .about-form .item-code-img {
    width: 124px;
  }
  .about-form .item-code-img .yanzheng {
    max-height: 40px;
  }

  .about-form .item-input-btn {
    height: 40px;
  }
  .about-form .item-input-btn .item-btn {
    font-size: 16px;
    line-height: 28px;
  }
}

/**************** product *****************/
.product {
  position: relative;
  width: 100%;
  padding: 58px 0 114px;
}
.pro-contain {
  width: 100%;
  position: relative;
}
.pro-contain .pro-main {
  float: right;
  width: 968px;
}
.pro-contain .pro-slide {
  float: left;
  width: 262px;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .product {
    padding: 52px 0 100px;
  }
  .pro-contain .pro-main {
    width: 900px;
  }
  .pro-contain .pro-slide {
    width: 260px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .product {
    padding: 44px 0 84px;
  }
  .pro-contain .pro-main {
    width: 670px;
  }
  .pro-contain .pro-slide {
    width: 252px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 36px 0 68px;
  }
  .pro-contain .pro-main {
    width: 482px;
  }
  .pro-contain .pro-slide {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 28px 0 52px;
  }
  .pro-contain .pro-main {
    float: none;
    width: 100%;
  }
  .pro-contain .pro-slide {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .product {
    padding: 20px 0 36px;
  }
  .pro-contain .pro-main {
    float: none;
    width: 100%;
  }
  .pro-contain .pro-slide {
    float: none;
    width: 100%;
    margin-top: 16px;
  }
}
.pro-contain .pro-title {
  font-size: 26px;
  color: #333333;
  line-height: 36px;
}
.pro-contain .pro-text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 25px;
}
.pro-contain .pro-text a {
  color: #db915e;
}
.pro-contain .pro-text a:hover {
  color: #333333;
}
.przhan {
  position: relative;
  overflow: hidden;
  max-height: 90px;
}
.przhanh {
  max-height: none !important;
}
.pro-contain .more {
  position: relative;
  width: 100%;
}
.pro-contain .more .zhankai {
  display: inline-block;
  vertical-align: top;
  min-width: 150px;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: #db915e;
  border: 1px solid #db915e;
  text-align: center;
}
.pro-contain .more .zhankai:hover {
  color: #db915e;
  background: #fff;
}

.pro-form {
  display: block;
  position: relative;
  padding-top: 36px;
  width: 100%;
}
.pro-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  display: block;
  transition: 0.5s;
  padding-bottom: 11px;
  margin-left: -18px;
  margin-right: -18px;
}
.pro-list .pro-item {
  width: 33.3333333%;
  padding: 0 18px;
  margin-bottom: 37px;
  display: inline-block;
  vertical-align: top;
  transition: 0.5s;
}

.fenye {
  text-align: center;
  font-size: 0;
  letter-spacing: 0;
}
.fenyen {
  display: inline-block;
  vertical-align: top;
}
.fenyen a {
  display: inline-block;
  vertical-align: top;
  min-width: 30px;
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  padding: 0px 6px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}
.fenyen a.iconfont {
  color: #333;
  background: transparent;
}
.fenyen a:hover,
.fenyen a.active {
  background: #db915e;
  color: #fff;
}
.fenyen a.iconfont:hover {
  background: transparent;
  color: #db915e;
}
.fuxuan {
  display: inline-block;
  vertical-align: top;
  margin-left: 4px;
}
.fuxuan > div {
  display: inline-block;
  vertical-align: top;
  background: url(../img/jian.png) no-repeat right center;
  padding: 0 24px;
  margin-bottom: 10px;
}
.fuxuan input {
  display: inline-block;
  vertical-align: top;
  padding: 0 12px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #db915e;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
.fuxuan > div input {
  margin-bottom: 0 !important;
}
.fuxuan input:hover {
  background: #db915e;
  color: #fff;
}
@media (min-width: 1260px) and (max-width: 1359px) {
  .pro-contain .pro-title {
    font-size: 24px;
    line-height: 32px;
  }
  .pro-contain .pro-text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    margin-top: 8px;
    margin-bottom: 20px;
  }
  .przhan {
    max-height: 84px;
  }
  .pro-contain .more .zhankai {
    min-width: 142px;
    padding: 7px 18px;
    font-size: 16px;
    line-height: 30px;
  }

  .pro-form {
    padding-top: 32px;
  }
  .pro-list {
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .pro-list .pro-item {
    width: 33.3333333%;
    padding: 0 10px;
    margin-bottom: 32px;
  }
  .fenyen a {
    min-width: 28px;
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0px 6px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .fuxuan {
    margin-left: 4px;
  }
  .fuxuan > div {
    padding: 0 22px;
    margin-bottom: 8px;
  }
  .fuxuan input {
    padding: 0 10px;
    margin-bottom: 8px;
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) and (max-width: 1259px) {
  .pro-contain .pro-title {
    font-size: 22px;
    line-height: 30px;
  }
  .pro-contain .pro-text {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 26px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .przhan {
    max-height: 78px;
  }
  .pro-contain .more .zhankai {
    min-width: 134px;
    padding: 6px 16px;
    font-size: 16px;
    line-height: 28px;
  }

  .pro-form {
    padding-top: 28px;
  }
  .pro-list {
    padding-bottom: 8px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .pro-list .pro-item {
    width: 50%;
    padding: 0 16px;
    margin-bottom: 28px;
  }
  .fenyen a {
    min-width: 28px;
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0px 6px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .fuxuan {
    margin-left: 4px;
  }
  .fuxuan > div {
    padding: 0 22px;
    margin-bottom: 8px;
  }
  .fuxuan input {
    padding: 0 8px;
    margin-bottom: 8px;
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .pro-contain .pro-title {
    font-size: 20px;
    line-height: 28px;
  }
  .pro-contain .pro-text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 12px;
  }
  .przhan {
    max-height: 72px;
  }
  .pro-contain .more .zhankai {
    min-width: 126px;
    padding: 5px 14px;
    font-size: 15px;
    line-height: 26px;
  }

  .pro-form {
    padding-top: 24px;
  }
  .pro-list {
    padding-bottom: 8px;
    margin-left: -8px;
    margin-right: -8px;
  }
  .pro-list .pro-item {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 24px;
  }
  .fenyen a {
    min-width: 26px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0px 6px;
    margin-right: 6px;
    margin-bottom: 8px;
  }
  .fuxuan {
    margin-left: 4px;
  }
  .fuxuan > div {
    padding: 0 22px;
    margin-bottom: 8px;
  }
  .fuxuan input {
    padding: 0 6px;
    margin-bottom: 8px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pro-contain .pro-title {
    font-size: 18px;
    line-height: 28px;
  }
  .pro-contain .pro-text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 12px;
  }
  .przhan {
    max-height: 72px;
  }
  .pro-contain .more .zhankai {
    min-width: 118px;
    padding: 4px 12px;
    font-size: 14px;
    line-height: 24px;
  }

  .pro-form {
    padding-top: 20px;
  }
  .pro-list {
    padding-bottom: 6px;
    margin-left: -6px;
    margin-right: -6px;
  }
  .pro-list .pro-item {
    width: 33.333333333%;
    padding: 0 6px;
    margin-bottom: 24px;
  }
  .fenyen a {
    min-width: 26px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0px 6px;
    margin-right: 6px;
    margin-bottom: 8px;
  }
  .fuxuan {
    margin-left: 4px;
  }
  .fuxuan > div {
    padding: 0 22px;
    margin-bottom: 8px;
  }
  .fuxuan input {
    padding: 0 6px;
    margin-bottom: 8px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .pro-form {
    padding-top: 20px;
  }
  .pro-list {
    padding-bottom: 8px;
    margin-left: -6px;
    margin-right: -6px;
  }
  .pro-list .pro-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 20px;
  }
}

.j-nextshow {
  position: relative;
}
.proslide_menubtn {
  display: none;
  width: 24px;
  height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  z-index: 9999;
}
.proslide_menubtn span {
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: 3px;
  background-color: #db915e;
}
@media screen and (max-width: 767px) {
  .proslide_menubtn {
    display: block;
  }
}

.pro-slide-title {
  width: 100%;
  font-size: 24px;
  color: #333333;
  line-height: 32px;
}

.pryiji {
  padding: 6px 0;
  margin-bottom: 36px;
  width: 100%;
  position: relative;
}
.pryiji > li {
  position: relative;
  transition: 0.5s;
}
.pryiji > li > a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  padding: 5px 0;
  padding-right: 18px;
  position: relative;
  color: #666;
}
.pryiji > li > .iconfont {
  position: absolute;
  z-index: 8;
  right: 4px;
  width: 14px;
  font-size: 12px;
  top: 0;
  line-height: 40px;
  transition: 0.5s;
}
.pryiji > li > a .iconfont {
  position: absolute;
  z-index: 8;
  right: 4px;
  width: 14px;
  font-size: 12px;
  top: 0;
  line-height: 40px;
  transition: 0.5s;
}
.pryiji > li > a span {
  transition: 0.5s;
  position: relative;
}
.pryiji > li > a:hover {
  color: #db915e;
}
.pryiji > li > a:hover span {
  color: #db915e;
}
.pryiji > li:hover > .iconfont {
  color: #db915e;
  transform: rotate(90deg);
}
.pryiji > li:hover > a .iconfont {
  color: #db915e;
  transform: rotate(90deg);
}
.prerji {
  padding: 6px 0;
  background: #f7f3f0;
}
.prerji > li {
  position: relative;
  transition: 0.5s;
  padding-left: 18px;
}
.prerji > li > a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  padding: 5px 0;
  padding-right: 20px;
  position: relative;
}
.prerji > li > .iconfont {
  position: absolute;
  z-index: 8;
  right: 4px;
  height: 36px;
  width: 14px;
  font-size: 12px;
  top: 0;
  line-height: 36px;
  transition: 0.5s;
}
.prerji > li > a .iconfont {
  position: absolute;
  z-index: 8;
  right: 4px;
  height: 36px;
  width: 14px;
  font-size: 12px;
  top: 0;
  line-height: 36px;
  transition: 0.5s;
  color: #666;
}
.prerji > li > a:hover {
  color: #db915e;
}
.prerji > li > a:hover span {
  color: #db915e;
}
.prerji > li:hover > .iconfont {
  color: #db915e;
  transform: rotate(90deg);
}
.prerji > li:hover > a .iconfont {
  color: #db915e;
  transform: rotate(90deg);
}
.prsanji {
  padding: 6px 0;
  padding-left: 20px;
}
.prsanji > li > a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  line-height: 24px;
  padding: 5px 0;
  position: relative;
}
.prsanji > li > a:hover {
  color: #db915e;
}

a.prbiao:hover {
  color: #db915e;
}
.dangpryi > a {
  color: #db915e !important;
}
.dangpryi > a span {
  color: #db915e !important;
}
.dangpryi > .iconfont {
  transform: rotate(90deg) !important;
  color: #db915e !important;
}
.dangpryi > a .iconfont {
  transform: rotate(90deg) !important;
  color: #db915e !important;
}
/* .dangpryi>a i{ transform:rotate(180deg) !important; color:#fff !important} */
.dangprer > a {
  color: #db915e !important;
}
.dangprer > .iconfont {
  transform: rotate(90deg) !important;
  color: #db915e !important;
}
.dangprer > a .iconfont {
  transform: rotate(90deg) !important;
  color: #db915e !important;
}

.attribute {
  margin-bottom: 38px;
}
.attribute .name {
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  margin-top: 14px;
  position: relative;
  padding-right: 24px;
}
.attribute .name i {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
}
.attribute .name i:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #333;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
}
.attribute .name i:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #333;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  transform: rotate(90deg);
  transition: 0.5s;
}

.attribute .name.active span {
  color: #000;
}
.attribute .name.active i:after {
  transform: rotate(180deg);
  background: #333;
}
.attribute .item-box {
  box-sizing: border-box;
  max-height: 180px;
  overflow-y: auto;
  cursor: pointer;
  display: none;
}
.attribute .item-box label {
  display: inline-block;
  cursor: pointer;
}
.attribute .item-box > div {
  color: #666;
  display: block;
  vertical-align: top;
  margin-bottom: 10px;
  margin-right: 10px;
  position: relative;
  min-width: 64px;
}

.attribute .item-box div span {
  overflow-y: hidden;
  display: inline-block;
  vertical-align: middle;
  max-height: 22px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}
.attribute .check-box-div {
  display: inline-block;
  vertical-align: middle;
}
.attribute .check-box-div .icon {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.attribute .item-box.active {
  display: block;
}

.tag-list {
  position: relative;
  font-size: 0px;
  letter-spacing: 0;
  margin-right: -8px;
  padding-top: 12px;
  max-height: 320px;
  overflow: auto;
}
.tag-list a {
  display: inline-block;
  vertical-align: top;
  min-width: 54px;
  padding: 5px 12px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 8px;
  text-align: center;
  background: #f5f5f5;
  color: #666;
  margin-bottom: 14px;
}
.tag-list a:hover {
  background: #db915e;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1259px) {
  .pro-slide-title {
    font-size: 22px;
    line-height: 30px;
  }
  .pryiji {
    padding: 6px 0;
    margin-bottom: 28px;
  }
  .pryiji > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    padding: 5px 0;
    padding-right: 20px;
  }
  .pryiji > li > .iconfont {
    width: 14px;
    font-size: 12px;
    line-height: 38px;
  }
  .pryiji > li > a .iconfont {
    width: 14px;
    font-size: 12px;
    line-height: 38px;
  }
  .prerji {
    padding: 6px 0;
  }
  .prerji > li {
    padding-left: 20px;
  }
  .prerji > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    padding: 4px 0;
    padding-right: 20px;
  }
  .prerji > li > .iconfont {
    height: 34px;
    line-height: 34px;
  }
  .prerji > li > a .iconfont {
    height: 34px;
    line-height: 34px;
  }
  .prsanji {
    padding: 6px 0;
    padding-left: 20px;
  }
  .prsanji > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 4px 0;
  }

  .attribute {
    margin-bottom: 30px;
  }

  .tag-list {
    padding-top: 10px;
  }
  .tag-list a {
    min-width: 50px;
    padding: 4px 10px;
    line-height: 28px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .pro-slide-title {
    font-size: 20px;
    line-height: 28px;
  }
  .pryiji {
    padding: 6px 0;
    margin-bottom: 24px;
  }
  .pryiji > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    padding: 5px 0;
    padding-right: 20px;
  }
  .pryiji > li > .iconfont {
    width: 14px;
    font-size: 12px;
    line-height: 36px;
  }
  .pryiji > li > a .iconfont {
    width: 14px;
    font-size: 12px;
    line-height: 36px;
  }

  .prerji {
    padding: 6px 0;
  }
  .prerji > li {
    padding-left: 20px;
  }
  .prerji > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 4px 0;
    padding-right: 20px;
  }
  .prerji > li > .iconfont {
    height: 32px;
    line-height: 32px;
  }
  .prerji > li > a .iconfont {
    height: 32px;
    line-height: 32px;
  }
  .prsanji {
    padding: 6px 0;
    padding-left: 20px;
  }
  .prsanji > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 3px 0;
  }

  .attribute {
    margin-bottom: 25px;
  }

  .tag-list {
    padding-top: 10px;
  }
  .tag-list a {
    min-width: 50px;
    padding: 3px 10px;
    line-height: 26px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .pro-slide-title {
    font-size: 18px;
    line-height: 26px;
  }
  .pryiji {
    display: none;
    margin-bottom: 0;
  }
  .attribute {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .tag-list {
    padding-top: 10px;
  }
  .tag-list a {
    min-width: 48px;
    padding: 2px 8px;
    line-height: 24px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 10px;
  }
}

.zoomPad {
  position: relative;
  float: left;
  z-index: 99;
  cursor: crosshair;
}
.zoomPreload {
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity = 80);
  color: #333;
  font-size: 12px;
  font-family: Tahoma;
  text-decoration: none;
  border: 1px solid #ccc;
  background-color: white;
  padding: 8px;
  text-align: center;
  background-image: url(zoomloader.gif);
  background-repeat: no-repeat;
  background-position: 43px 30px;
  z-index: 110;
  width: 90px;
  height: 43px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.zoomPup {
  overflow: hidden;
  background-color: #fff;
  -moz-opacity: 0.6;
  opacity: 0.6;
  filter: alpha(opacity = 60);
  z-index: 120;
  position: absolute;
  border: 1px solid #ccc;
  z-index: 101;
  cursor: crosshair;
}
.zoomOverlay {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
  z-index: 5000;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 101;
}
.zoomWindow {
  position: absolute;
  left: 110%;
  top: 40px;
  background: #fff;
  z-index: 6000;
  height: auto;
  z-index: 10000;
  z-index: 110;
}
.zoomWrapper {
  position: relative;
  border: 1px solid #ccc;
  z-index: 110;
}
.zoomWrapperTitle {
  display: block;
  background: #999;
  color: #fff;
  height: 18px;
  line-height: 18px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 120;
  -moz-opacity: 0.6;
  opacity: 0.6;
  filter: alpha(opacity = 60);
}
.zoomWrapperImage {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 110;
}
.zoomWrapperImage img {
  border: 0px;
  display: block;
  position: absolute;
  z-index: 101;
}
.zoomIframe {
  z-index: -1;
  filter: alpha(opacity=0);
  -moz-opacity: 0.8;
  opacity: 0.8;
  position: absolute;
  display: block;
}

.m-prob {
  position: relative;
  width: 100%;
  padding-bottom: 54px;
}
.m-propic {
  margin: 0 auto;
  width: 644px;
  float: left;
}
.m-propic .pic-big {
  width: 520px;
  position: relative;
  float: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ececec;
  border-radius: 26px;
  z-index: 9;
}
.m-propic .big-img {
  display: block;
  line-height: 0;
  font-size: 0;
}
.m-propic .big-img .zoomPad {
  float: none;
  z-index: 8;
}
.m-propic .zoomWrapperImage img {
  max-width: 1920px;
  z-index: 99;
}

.m-propic .pic-small {
  position: relative;
  float: left;
  width: 100px;
  padding-top: 28px;
  padding-bottom: 28px;
  overflow: hidden;
  z-index: 1;
}
.m-propic .pic-btn {
  position: absolute;
  margin: 0 auto;
  right: 0;
  text-align: center;
  display: block;
  width: 100px;
  font-size: 20px;
  line-height: 26px;
  color: #aaa;
  cursor: pointer;
  border-radius: 3px;
  z-index: 9;
}
.m-propic .pic-btn.prev {
  top: 0px;
}
.m-propic .pic-btn.next {
  bottom: 0px;
}
.m-propic .pic-btn:hover {
  color: #000;
}
.m-propic .pic-list {
  height: 464px;
  overflow: hidden;
}
.m-propic .pic-list ul {
  height: 2000px;
}
.m-propic .list-item {
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ececec;
  border-radius: 20px;
}

.m-propic .item-pics,
.m-propic .pic-list .item-video {
  display: block;
  position: relative;
}
.m-propic .item-pics:before,
.m-propic .pic-list .item-video:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 15px;
  left: 0px;
  top: 50%;
  margin-top: -7px;
  z-index: -1;
}
.m-propic .item-pics img,
.m-propic .pic-list .item-video img {
  width: 100%;
  display: block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

.m-propic .item-pics.zoomThumbActive {
  border: 1px solid #b88768;
}
.m-propic .item-pics.zoomThumbActive:before,
.m-propic .item-video.active:before {
  left: -8px;
}
.m-propic2 {
  display: none;
}

.m-propic .provideo-box {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.m-propic .provideo-box .provideo {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  height: 0;
}
.m-propic .provideo-box .provideo iframe,
.pro2-box .m-propic .provideo-box .provideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.m-propic .provideo-box .provideo iframe body {
  margin: 0px !important;
}

.m-propic .item-pics:hover,
.m-propic .item-pics.active,
.m-propic .item-video:hover,
.m-propic .item-video.active {
  border-color: #b88768;
}

@media screen and (max-width: 1359px) {
  .m-prob {
    padding-bottom: 48px;
  }
  .m-propic {
    width: 624px;
  }
  .m-propic .pic-big {
    width: 510px;
  }
  .m-propic .pic-small {
    width: 96px;
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .m-propic .pic-btn {
    width: 96px;
    line-height: 24px;
    font-size: 16px;
  }
  .m-propic .pic-list {
    height: 458px;
  }
  .m-propic .list-item {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1259px) {
  .m-prob {
    padding-bottom: 40px;
  }
  .m-propic {
    width: 520px;
  }
  .m-propic .pic-big {
    width: 424px;
  }
  .m-propic .pic-small {
    width: 86px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .m-propic .pic-btn {
    width: 86px;
    line-height: 15px;
    font-size: 16px;
  }
  .m-propic .pic-list {
    height: 394px;
  }
  .m-propic .list-item {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 999px) {
  .zoomPad {
    cursor: default !important;
  }
  .zoomPup {
    display: none !important;
  }
  .zoomWindow {
    display: none !important;
  }
  .zoomPreload {
    display: none !important;
  }
  .prob-pic {
    float: none;
    margin: 0 auto;
  }
  .m-prob {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 991px) {
  .m-prob {
    padding-bottom: 28px;
  }
  .m-propic1 {
    display: none;
  }
  .m-propic2 {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: none;
  }
  .m-propic2 .box-btn {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    display: block;
    width: 17px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
  .m-propic2 .box-btn.prev {
    left: 0;
  }
  .m-propic2 .box-btn.next {
    right: 0;
  }

  .m-propic2 .box-list {
    overflow: hidden;
  }
  .m-propic2 .box-list ul {
    width: 1000%;
  }
  .m-propic2 .list-item {
    float: left;
    margin-left: 0.1%;
    margin-right: 0.1%;
    margin-bottom: 0;
    width: 3.13%;
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .pro-main-top {
    padding: 51px 0 46px;
  }
}
@media only screen and (max-width: 500px) {
  .pro-main-top {
    padding: 39px 0 34px;
  }
  .m-propic2 .list-item {
    float: left;
    margin-left: 0.1%;
    margin-right: 0.1%;
    margin-bottom: 0;
    width: 4.8%;
  }
}
@media only screen and (max-width: 350px) {
  .m-propic2 .list-item {
    float: left;
    margin-left: 0.1%;
    margin-right: 0.1%;
    margin-bottom: 0;
    width: 9.8%;
  }
}

.prob-info {
  width: 575px;
  float: right;
}
.jianjie h1 {
  font-size: 26px;
  color: #333;
  line-height: 42px;
}
.jiann {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  color: #666666;
  max-height: 330px;
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 13px;
  min-height: 300px;
}
.jiann p,
.jiann span,
.jiann li,
.jiann strong {
  color: #666666;
}
.jiann a {
  color: #000;
  text-decoration: underline;
}
.sharen {
  display: inline-block;
  padding: 0 20px;
}
.share1 {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  vertical-align: middle;
  color: #999;
}
.share2 {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
.share2 img {
  display: inline-block;
  vertical-align: top;
}
.share a.prpdf {
  font-size: 16px;
  font-size: 1.6rem;
  color: #db915e;
  margin-left: 26px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  line-height: 20px;
}
.share a.prpdf .iconfont {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  margin-right: 10px;
  line-height: 20px;
}
.share a.prpdf:hover {
  text-decoration: underline;
}
.inno {
  letter-spacing: 0;
  font-size: 0px;
  margin-top: 30px;
}
.inno a {
  display: inline-block;
  vertical-align: top;
  min-width: 230px;
  line-height: 30px;
  background: #adadad;
  text-transform: uppercase;
  border-radius: 6px;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2rem;
  margin-right: 30px;
}
.inno a:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.inno a:hover {
  color: #fff;
  background: #db915e;
}

@media screen and (max-width: 1359px) {
  .prob-info {
    width: 540px;
  }
  .jianjie h1 {
    font-size: 24px;
    line-height: 38px;
  }
  .jiann {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    max-height: 280px;
    margin-top: 24px;
    margin-bottom: 12px;
    min-height: 252px;
  }
  .sharen {
    padding: 0 16px;
  }
  .share1 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
  }
  .share2 {
    margin-left: 6px;
  }
  .inno {
    margin-top: 26px;
  }
  .inno a {
    min-width: 230px;
    line-height: 30px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    margin-right: 12px;
  }
}
@media screen and (max-width: 1259px) {
  .prob-info {
    width: 400px;
  }
  .jianjie h1 {
    font-size: 22px;
    line-height: 34px;
  }
  .jiann {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 26px;
    max-height: 260px;
    margin-top: 20px;
    margin-bottom: 12px;
    min-height: 234px;
  }
  .sharen {
    padding: 0 12px;
  }
  .share1 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
  }
  .share2 {
    margin-left: 6px;
  }
  .inno {
    margin-top: 20px;
  }
  .inno a {
    min-width: 230px;
    line-height: 30px;
    padding: 6px 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 8px;
  }
}
@media screen and (max-width: 991px) {
  .prob-info {
    padding-top: 20px;
    width: 100%;
    float: none;
  }
  .jianjie h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .jiann {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    max-height: none;
    margin-top: 16px;
    margin-bottom: 24px;
    min-height: auto;
  }
  .sharen {
    padding: 0 12px;
  }
  .share1 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
  }
  .share2 {
    margin-left: 6px;
  }
  .share a.prpdf {
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 20px;
  }
  .share a.prpdf .iconfont {
    font-size: 18px;
    margin-right: 10px;
  }
  .inno {
    margin-top: 10px;
  }
  .inno a {
    min-width: 230px;
    line-height: 30px;
    padding: 5px 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .prob-info {
    padding-top: 20px;
    width: 100%;
    float: none;
  }
  .jianjie h1 {
    font-size: 18px;
    line-height: 28px;
  }
  .inno a {
    min-width: 230px;
    line-height: 30px;
    padding: 5px 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 10px;
  }
}
.table {
  width: 100%;
  overflow: auto;
}
.table table {
  width: 100%;
  border-collapse: collapse;
  line-height: 24px;
}
.table table tr td {
  padding: 5px;
  border: 1px solid #eaeaea;
  color: #333;
}

.product-attribute {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
}
.product-attribute .pro-detail-title,
.product-detail .pro-detail-title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.product-attribute-box {
  position: relative;
  width: 100%;
  padding: 15px 22px 7px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 26px;
}
.patitem {
  position: relative;
  width: 100%;
}
.patitem span {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #666;
  line-height: 30px;
  margin-right: 10px;
  margin-bottom: 8px;
}
.patitem-name {
  display: inline-block;
  vertical-align: top;
  /* min-width: 50px; */
  min-width: 145px;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  margin-right: 10px;
  text-align: right;
}
.product-detail {
  position: relative;
  z-index: 1;
}
.prodetails-desc {
  font-size: 18px;
  line-height: 30px;
  position: relative;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 26px;
  color: #333333;
  margin-bottom: 28px;
}
.prodetails-desc a {
  color: #db915e;
}
.prodetails-desc a:hover {
  color: #333333;
}

.prtag {
  position: relative;
  font-size: 0px;
  letter-spacing: 0;
  margin-right: -8px;
  padding-top: 12px;
}
.prtag a,
.prtag span {
  display: inline-block;
  vertical-align: top;
  min-width: 54px;
  padding: 5px 15px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 8px;
  text-align: center;
  background: #f5f5f5;
  color: #666;
  margin-bottom: 10px;
}
.prtag a:hover {
  background: #db915e;
  color: #fff;
}
.prtag2 {
  position: relative;
  overflow: hidden;
  max-height: 150px;
}
.prtagh {
  max-height: none !important;
}
.tag .more {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  position: relative;
  cursor: pointer;
  margin-top: 12px;
}
.tag .more:hover {
  color: #db915e;
}

@media screen and (max-width: 1359px) {
  .product-attribute {
    margin-bottom: 24px;
  }
  .product-attribute .pro-title,
  .product-detail .pro-title {
    font-size: 27px;
    line-height: 36px;
    margin-bottom: 6px;
  }
  .product-attribute-box {
    padding: 12px 20px 6px;
  }
  .patitem span {
    font-size: 16px;
    line-height: 28px;
    margin-right: 10px;
    margin-bottom: 6px;
  }
  .patitem-name {
    min-width: 50px;
    font-size: 16px;
    line-height: 28px;
    margin-right: 10px;
  }
  .prodetails-desc {
    font-size: 17px;
    line-height: 30px;
    padding: 20px 20px;
    margin-bottom: 24px;
  }
  .prtag {
    margin-right: -8px;
    margin-bottom: 8px;
  }
  .prtag a,
  .prtag span {
    min-width: 54px;
    padding: 5px 10px;
    line-height: 28px;
    font-size: 16px;
    margin-right: 8px;
    margin-bottom: 10px;
  }
  .prtag2 {
    max-height: 144px;
  }
  .tag .more {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1259px) {
  .product-attribute {
    margin-bottom: 20px;
  }
  .product-attribute .pro-title,
  .product-detail .pro-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 6px;
  }
  .product-attribute-box {
    padding: 12px 18px 6px;
  }
  .patitem span {
    font-size: 15px;
    line-height: 26px;
    margin-right: 8px;
    margin-bottom: 6px;
  }
  .patitem-name {
    min-width: 48px;
    font-size: 15px;
    line-height: 26px;
    margin-right: 10px;
  }
  .prodetails-desc {
    font-size: 16px;
    line-height: 28px;
    padding: 18px 16px;
    margin-bottom: 20px;
  }
  .prtag {
    margin-right: -8px;
  }
  .prtag a,
  .prtag span {
    min-width: 50px;
    padding: 4px 10px;
    line-height: 28px;
    font-size: 16px;
    margin-right: 8px;
    margin-bottom: 10px;
  }
  .prtag2 {
    max-height: 138px;
  }
  .tag .more {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 991px) {
  .product-attribute {
    margin-bottom: 16px;
  }
  .product-attribute .pro-title,
  .product-detail .pro-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .product-attribute-box {
    padding: 12px 16px 6px;
  }
  .patitem span {
    font-size: 15px;
    line-height: 26px;
    margin-right: 8px;
    margin-bottom: 6px;
  }
  .patitem-name {
    min-width: 48px;
    font-size: 15px;
    line-height: 26px;
    margin-right: 10px;
  }
  .prodetails-desc {
    font-size: 15px;
    line-height: 26px;
    padding: 18px 16px;
    margin-bottom: 20px;
  }
  .prtag {
    margin-right: -8px;
  }
  .prtag a,
  .prtag span {
    min-width: 46px;
    padding: 3px 10px;
    line-height: 26px;
    font-size: 15px;
    margin-right: 8px;
    margin-bottom: 10px;
  }
  .prtag2 {
    max-height: 126px;
  }
  .tag .more {
    font-size: 15px;
    line-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .product-attribute {
    margin-bottom: 12px;
  }
  .product-attribute .pro-title,
  .product-detail .pro-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .product-attribute-box {
    padding: 10px 12px 4px;
  }
  .patitem span {
    font-size: 14px;
    line-height: 24px;
    margin-right: 10px;
    margin-bottom: 6px;
  }
  .patitem-name {
    min-width: 44px;
    font-size: 14px;
    line-height: 24px;
    margin-right: 10px;
  }
  .prodetails-desc {
    font-size: 14px;
    line-height: 24px;
    padding: 14px 12px;
    margin-bottom: 16px;
  }
}
.pro-related {
  position: relative;
  width: 100%;
  padding-top: 58px;
}
.pro-related .sec-title,
.news-related .sec-title {
  position: relative;
  padding-bottom: 15px;
}
.pro-related .sec-title::before,
.news-related .sec-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 49px;
  height: 4px;
  background: url(nav-before.png) no-repeat center center;
  background-size: 100%;
}
.related-swiper {
  position: relative;
  margin-top: 29px;
  margin-left: -36px;
  margin-right: -36px;
  padding: 0 36px;
}
.related-swiper .swiper-related {
  position: relative;
  width: 100%;
  padding: 1px;
}
.related-swiper .swiper-button {
  width: 16px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: -15px;
}
.related-swiper .swiper-button:hover {
  color: #db915e;
}
@media screen and (max-width: 1359px) {
  .pro-related {
    padding-top: 52px;
  }
  .pro-related .sec-title,
  .news-related .sec-title {
    padding-bottom: 14px;
  }
  .pro-related .sec-title::before,
  .news-related .sec-title::before {
    width: 46px;
    height: 4px;
  }
  .related-swiper {
    margin-top: 27px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1259px) {
  .pro-related {
    padding-top: 44px;
  }
  .pro-related .sec-title,
  .news-related .sec-title {
    padding-bottom: 12px;
  }
  .pro-related .sec-title::before,
  .news-related .sec-title::before {
    width: 42px;
    height: 4px;
  }
  .related-swiper {
    margin-top: 22px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 991px) {
  .pro-related {
    padding-top: 36px;
  }
  .pro-related .sec-title,
  .news-related .sec-title {
    padding-bottom: 10px;
  }
  .pro-related .sec-title::before,
  .news-related .sec-title::before {
    width: 36px;
    height: 4px;
  }
  .related-swiper {
    margin-top: 18px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .pro-related {
    padding-top: 28px;
  }
  .related-swiper {
    margin-top: 16px;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 520px) {
  .pro-related {
    padding-top: 24px;
  }
}

/* ************** news ***************** */
.news {
  position: relative;
  padding: 68px 0 114px;
}
.news-contain {
  position: relative;
  width: 100%;
}
.news-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  transition: 0.5s;
  margin-bottom: -10px;
}
.news-list .news-list-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: 0.5s;
  width: 100%;
  margin-bottom: 60px;
}
.news-list-item .new-item-box {
  position: relative;
  width: 100%;
  background: #fbfaf8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-list .news-list-item:nth-of-type(odd) .new-item-box {
  flex-direction: row;
}
.news-list .news-list-item:nth-of-type(even) .new-item-box {
  flex-direction: row-reverse;
}
.new-item-box .item-pic {
  position: relative;
  width: 400px;
  text-align: center;
}
.new-item-box .item-pic img {
  width: 100%;
  display: block;
}
.new-item-box .item-body {
  position: relative;
  width: calc(100% - 400px);
  padding: 10px 42px;
}
.new-item-box .item-pic .item-date {
  position: absolute;
  left: 22px;
  top: 22px;
  min-width: 60px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #666666;
  line-height: 20px;
  background: #ffffff;
  border-radius: 4px;
  padding: 5px 6px;
}
.new-item-box .item-pic .item-date span {
  font-size: 24px;
  display: block;
  color: #db915e;
  line-height: 30px;
}
.new-item-box .item-body .item-title {
  position: relative;
  font-size: 22px;
  color: #333333;
  line-height: 30px;
}
.new-item-box .item-body .item-desc {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
  margin-top: 28px;
}
.new-item-box .item-body .item-btn {
  font-size: 16px;
  line-height: 20px;
  color: #db915e;
  margin-top: 38px;
}
.new-item-box .item-body .item-btn a {
  display: inline-block;
  vertical-align: top;
  color: #db915e;
  border-bottom: 4px dotted transparent;
}
.new-item-box .item-body .item-btn a:hover {
  border-color: #db915e;
}

@media screen and (max-width: 1359px) {
  .news {
    padding: 60px 0 100px;
  }
  .news-list {
    margin-bottom: -8px;
  }
  .news-list .news-list-item {
    margin-bottom: 54px;
  }
  .new-item-box .item-pic {
    width: 400px;
  }
  .new-item-box .item-body {
    width: calc(100% - 400px);
    padding: 10px 36px;
  }
  .new-item-box .item-pic .item-date {
    left: 20px;
    top: 20px;
    min-width: 56px;
    font-size: 15px;
    line-height: 18px;
    padding: 5px 6px;
  }
  .new-item-box .item-pic .item-date span {
    font-size: 22px;
    line-height: 28px;
  }
  .new-item-box .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
  }
  .new-item-box .item-body .item-desc {
    font-size: 17px;
    line-height: 30px;
    margin-top: 24px;
  }
  .new-item-box .item-body .item-btn {
    font-size: 16px;
    line-height: 20px;
    margin-top: 32px;
  }
  .new-item-box .item-body .item-btn a {
    border-bottom-width: 4px;
  }
}
@media screen and (max-width: 1259px) {
  .news {
    padding: 48px 0 84px;
  }
  .news-list {
    margin-bottom: -6px;
  }
  .news-list .news-list-item {
    margin-bottom: 48px;
  }
  .new-item-box .item-pic {
    width: 360px;
  }
  .new-item-box .item-body {
    width: calc(100% - 360px);
    padding: 8px 30px;
  }
  .new-item-box .item-pic .item-date {
    left: 18px;
    top: 18px;
    min-width: 52px;
    font-size: 14px;
    line-height: 18px;
    padding: 4px 5px;
  }
  .new-item-box .item-pic .item-date span {
    font-size: 20px;
    line-height: 26px;
  }
  .new-item-box .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
  }
  .new-item-box .item-body .item-desc {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }
  .new-item-box .item-body .item-btn {
    font-size: 15px;
    line-height: 20px;
    margin-top: 28px;
  }
  .new-item-box .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media screen and (max-width: 991px) {
  .news {
    padding: 36px 0 68px;
  }
  .news-list {
    margin-bottom: -6px;
  }
  .news-list .news-list-item {
    margin-bottom: 42px;
  }
  .new-item-box .item-pic {
    width: 320px;
  }
  .new-item-box .item-body {
    width: calc(100% - 320px);
    padding: 6px 20px;
  }
  .new-item-box .item-pic .item-date {
    left: 14px;
    top: 14px;
    min-width: 48px;
    font-size: 14px;
    line-height: 16px;
    padding: 3px 5px;
  }
  .new-item-box .item-pic .item-date span {
    font-size: 18px;
    line-height: 26px;
  }
  .new-item-box .item-body .item-title {
    font-size: 17px;
    line-height: 28px;
  }
  .new-item-box .item-body .item-desc {
    font-size: 15px;
    line-height: 26px;
    margin-top: 16px;
  }
  .new-item-box .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 24px;
  }
  .new-item-box .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media screen and (max-width: 720px) {
  .news {
    padding: 24px 0 52px;
  }
  .news-list {
    margin-bottom: 0px;
  }
  .news-list .news-list-item {
    margin-bottom: 36px;
  }
  .new-item-box .item-pic {
    width: 280px;
  }
  .new-item-box .item-body {
    width: calc(100% - 280px);
    padding: 6px 18px;
  }
  .new-item-box .item-pic .item-date {
    left: 10px;
    top: 10px;
    min-width: 44px;
    font-size: 14px;
    line-height: 16px;
    padding: 2px 4px;
  }
  .new-item-box .item-pic .item-date span {
    font-size: 17px;
    line-height: 24px;
  }
  .new-item-box .item-body .item-title {
    font-size: 16px;
    line-height: 26px;
  }
  .new-item-box .item-body .item-desc {
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
  }
  .new-item-box .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
  }
  .new-item-box .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media screen and (max-width: 600px) {
  .news {
    padding: 20px 0 36px;
  }
  .news-list {
    margin-bottom: 0px;
    margin-left: -6px;
    margin-right: -6px;
  }
  .news-list .news-list-item {
    margin-bottom: 20px;
    width: 50%;
    padding: 0 6px;
  }
  .new-item-box .item-pic {
    width: 100%;
  }
  .new-item-box .item-body {
    width: 100%;
    padding: 12px 10px;
  }
  .new-item-box .item-pic .item-date {
    left: 10px;
    top: 10px;
    min-width: 42px;
    font-size: 14px;
    line-height: 16px;
    padding: 2px 4px;
  }
  .new-item-box .item-pic .item-date span {
    font-size: 16px;
    line-height: 22px;
  }
  .new-item-box .item-body .item-title {
    font-size: 16px;
    line-height: 26px;
  }
  .new-item-box .item-body .item-desc {
    font-size: 13px;
    line-height: 22px;
    margin-top: 10px;
  }
  .new-item-box .item-body .item-btn {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .new-item-box .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media screen and (max-width: 440px) {
  .news-list .news-list-item {
    width: 100%;
    padding: 0 6px;
  }
}

.news-title {
  font-size: 24px;
  color: #333333;
  line-height: 32px;
}
.new-contain .share {
  margin-top: 28px;
  padding-bottom: 28px;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
.new-contain .share > div {
  display: inline-block;
  vertical-align: middle;
  color: #999;
  font-size: 14px;
}
.new-contain .share .date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  margin-right: 18px;
  color: #db915e;
}
.news-text {
  border-top: 1px solid #eaeaea;
  padding-top: 25px;
  font-size: 18px;
  color: #666;
  line-height: 30px;
  margin-bottom: 48px;
}
.news-text img {
  display: inline-block;
  vertical-align: top;
}
.news-text a {
  color: #db915e;
}
.news-text a:hover {
  color: #333333;
}

.fanpian {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f7f3f0;
  padding: 20px 12px;
}
.fanpian li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 16px;
  color: #999;
  line-height: 30px;
  width: 48%;
}
.fanpian li p {
  text-transform: uppercase;
  color: #333;
  padding: 0 4px;
}
.fanpian li:nth-of-type(odd) {
  text-align: left;
}
.fanpian li:nth-of-type(odd) p {
  float: left;
}
.fanpian li:nth-of-type(even) {
  text-align: right;
}
.fanpian li:nth-of-type(even) p {
  float: right;
}
.fanpian li .iconfont {
  font-size: 18px;
  line-height: 30px;
  width: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.fanpian li:nth-of-type(odd) .iconfont {
  left: 0px;
}
.fanpian li:nth-of-type(even) .iconfont {
  right: 0px;
}
.fanpian li span {
  display: inline-block;
  vertical-align: middle;
}
.fanpian li span,
.fanpian li a {
  color: #999;
}
.fanpian li a:hover {
  color: #db915e;
}
.news-related {
  position: relative;
  width: 100%;
  padding-top: 68px;
}
.swiper-slide .sec4-tbody-item {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1359px) {
  .news-title {
    font-size: 22px;
    line-height: 30px;
  }
  .new-contain .share {
    margin-top: 24px;
    padding-bottom: 24px;
  }
  .new-contain .share > div {
    font-size: 14px;
  }
  .new-contain .share .date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    margin-right: 16px;
  }
  .news-text {
    padding-top: 22px;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 42px;
  }

  .fanpian {
    padding: 18px 10px;
  }
  .fanpian li {
    font-size: 16px;
    line-height: 28px;
    width: 48%;
  }
  .fanpian li p {
    padding: 0 4px;
  }
  .news-related {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1259px) {
  .news-title {
    font-size: 20px;
    line-height: 28px;
  }
  .new-contain .share {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .new-contain .share > div {
    font-size: 13px;
  }
  .new-contain .share .date {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 20px;
    margin-right: 14px;
  }
  .news-text {
    padding-top: 20px;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 36px;
  }

  .fanpian {
    padding: 16px 9px;
  }
  .fanpian li {
    font-size: 15px;
    line-height: 26px;
    width: 48%;
  }
  .fanpian li p {
    padding: 0 4px;
  }
  .news-related {
    padding-top: 48px;
  }
}
@media screen and (max-width: 991px) {
  .news-title {
    font-size: 18px;
    line-height: 28px;
  }
  .new-contain .share {
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .new-contain .share > div {
    font-size: 13px;
  }
  .new-contain .share .date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    margin-right: 10px;
  }
  .news-text {
    padding-top: 16px;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .fanpian {
    padding: 14px 6px;
  }
  .fanpian li {
    font-size: 14px;
    line-height: 24px;
    width: 48%;
  }
  .fanpian li p {
    padding: 0 4px;
  }
  .news-related {
    padding-top: 36px;
  }
}
@media screen and (max-width: 660px) {
  .news-title {
    font-size: 18px;
    line-height: 28px;
  }
  .new-contain .share {
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .new-contain .share > div {
    font-size: 13px;
  }
  .new-contain .share .date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    margin-right: 10px;
  }
  .news-text {
    padding-top: 12px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .fanpian {
    padding: 12px 6px;
  }
  .fanpian li {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
  }
  .fanpian li p {
    padding: 0 4px;
    display: inline-block;
    vertical-align: top;
  }
  .news-related {
    padding-top: 36px;
  }
  .fanpian li:nth-of-type(odd) {
    text-align: left;
    margin-bottom: 5px;
  }
  .fanpian li:nth-of-type(even) {
    text-align: left;
  }
  .fanpian li:nth-of-type(odd) p {
    float: none;
  }
  .fanpian li:nth-of-type(even) p {
    float: none;
  }
}

/* ***************   Download   *************** */
.downs {
  position: relative;
  padding: 68px 0 5.9375%;
}
.down-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  margin-left: -17px;
  margin-right: -17px;
  padding-bottom: 11px;
  display: flex;
  flex-wrap: wrap;
}
.down-list-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: 36px;
}
.down-list-item .item-box {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px 20px 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.down-list-item .item-box .item-pic {
  position: relative;
  width: 40px;
  padding-top: 10px;
}
.down-list-item .item-box .item-pic img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.down-list-item .item-box .item-title {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 16px;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  min-height: 90px;
}
@media screen and (max-width: 1359px) {
  .downs {
    padding: 60px 0 5.875%;
  }
  .down-list {
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 10px;
  }
  .down-list-item {
    width: 33.33333333%;
    padding: 0 10px;
    margin-bottom: 32px;
  }
  .down-list-item .item-box {
    padding: 18px 16px 20px;
  }
  .down-list-item .item-box .item-pic {
    width: 36px;
    padding-top: 8px;
  }
  .down-list-item .item-box .item-title {
    width: calc(100% - 36px);
    padding-left: 14px;
    font-size: 17px;
    line-height: 30px;
    min-height: 90px;
  }
}
@media screen and (max-width: 1259px) {
  .downs {
    padding: 48px 0 5.75%;
  }
  .down-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 8px;
  }
  .down-list-item {
    width: 33.33333333%;
    padding: 0 6px;
    margin-bottom: 28px;
  }
  .down-list-item .item-box {
    padding: 16px 14px 18px;
  }
  .down-list-item .item-box .item-pic {
    width: 32px;
    padding-top: 6px;
  }
  .down-list-item .item-box .item-title {
    width: calc(100% - 32px);
    padding-left: 13px;
    font-size: 16px;
    line-height: 28px;
    min-height: 84px;
  }
}
@media screen and (max-width: 991px) {
  .downs {
    padding: 36px 0 5.5%;
  }
  .down-list {
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 8px;
  }
  .down-list-item {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 28px;
  }
  .down-list-item .item-box {
    padding: 18px 16px 20px;
  }
  .down-list-item .item-box .item-pic {
    width: 36px;
    padding-top: 8px;
  }
  .down-list-item .item-box .item-title {
    width: calc(100% - 36px);
    padding-left: 14px;
    font-size: 15px;
    line-height: 26px;
    min-height: 78px;
  }
}
@media screen and (max-width: 750px) {
  .downs {
    padding: 30px 0 5.25%;
  }
  .down-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 8px;
  }
  .down-list-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 24px;
  }
  .down-list-item .item-box {
    padding: 16px 14px 18px;
  }
  .down-list-item .item-box .item-pic {
    width: 32px;
    padding-top: 8px;
  }
  .down-list-item .item-box .item-title {
    width: calc(100% - 32px);
    padding-left: 14px;
    font-size: 14px;
    line-height: 24px;
    min-height: 72px;
  }
}
@media screen and (max-width: 480px) {
  .downs {
    padding: 20px 0 5%;
  }
  .down-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 8px;
  }
  .down-list-item {
    width: 100%;
    padding: 0 6px;
    margin-bottom: 20px;
  }
  .down-list-item .item-box {
    padding: 16px 14px 18px;
  }
  .down-list-item .item-box .item-pic {
    width: 28px;
    padding-top: 6px;
  }
  .down-list-item .item-box .item-title {
    width: calc(100% - 28px);
    padding-left: 12px;
    font-size: 13px;
    line-height: 22px;
    min-height: auto;
  }
}

.video-top {
  position: relative;
  width: 100%;
  margin-bottom: 70px;
}
.video-top-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.video-top-box .video-item-pic {
  position: relative;
  width: 620px;
}
.video-top-box .item-body {
  position: relative;
  width: 602px;
  padding-bottom: 28px;
}
.video-top-box .item-body .item-title {
  font-size: 22px;
  color: #333333;
  line-height: 30px;
}
.video-top-box .item-body .item-desc {
  font-size: 18px;
  color: #666666;
  margin-top: 66px;
  line-height: 30px;
}

.video-list {
  position: relative;
  margin-left: -16px;
  margin-right: -16px;
  font-size: 0;
  letter-spacing: 0;
}
.video-list-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333333333333%;
  padding: 0 17px;
  margin-bottom: 45px;
}
.video-list-item .video-item-box {
  width: 100%;
  position: relative;
}
.video-item-pic {
  position: relative;
  width: 100%;
}
.video-item-pic .item-pic {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
}
.video-item-pic .item-pic .video-play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.video-list-item .item-body {
  position: relative;
  width: 100%;
  padding-top: 6px;
  text-align: center;
}
.video-list-item .item-body .item-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333333;
  line-height: 30px;
}

.page-faq {
  position: relative;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 114px;
}
.faq-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 20px;
}
.faq-list .faq-item {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
}
.faq-list .faq-item .item-box {
  position: relative;
  width: 100%;
}

@media (min-width: 1260px) and (max-width: 1359px) {
  .video-top {
    margin-bottom: 62px;
  }
  .video-top-box .video-item-pic {
    width: 572px;
  }
  .video-top-box .item-body {
    width: 556px;
    padding-bottom: 20px;
  }
  .video-top-box .item-body .item-title {
    font-size: 20px;
    line-height: 30px;
  }
  .video-top-box .item-body .item-desc {
    font-size: 17px;
    margin-top: 54px;
    line-height: 30px;
  }

  .video-list {
    margin-left: -12px;
    margin-right: -12px;
  }
  .video-list-item {
    width: 33.3333333333333%;
    padding: 0 12px;
    margin-bottom: 40px;
  }
  .video-list-item .item-body {
    padding-top: 6px;
  }
  .video-list-item .item-body .item-title {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 30px;
  }

  .page-faq {
    padding-top: 62px;
    padding-bottom: 106px;
  }
  .faq-list {
    padding-bottom: 18px;
  }
  .faq-list .faq-item {
    margin-bottom: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .video-top {
    margin-bottom: 50px;
  }
  .video-top-box .video-item-pic {
    width: 470px;
  }
  .video-top-box .item-body {
    width: 450px;
    padding-bottom: 12px;
  }
  .video-top-box .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
  }
  .video-top-box .item-body .item-desc {
    font-size: 16px;
    margin-top: 40px;
    line-height: 28px;
  }

  .video-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .video-list-item {
    width: 33.3333333333333%;
    padding: 0 6px;
    margin-bottom: 34px;
  }
  .video-list-item .item-body {
    padding-top: 6px;
  }
  .video-list-item .item-body .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
  }

  .page-faq {
    padding-top: 54px;
    padding-bottom: 90px;
  }
  .faq-list {
    padding-bottom: 16px;
  }
  .faq-list .faq-item {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .video-top {
    margin-bottom: 38px;
  }
  .video-top-box .video-item-pic {
    width: 50%;
  }
  .video-top-box .item-body {
    width: 48%;
    padding-bottom: 0;
  }
  .video-top-box .item-body .item-title {
    font-size: 17px;
    line-height: 28px;
  }
  .video-top-box .item-body .item-desc {
    font-size: 14px;
    margin-top: 24px;
    line-height: 24px;
  }
  .video-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .video-list-item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 28px;
  }
  .video-list-item .item-body {
    padding-top: 5px;
  }
  .video-list-item .item-body .item-title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 26px;
  }

  .page-faq {
    padding-top: 46px;
    padding-bottom: 74px;
  }
  .faq-list {
    padding-bottom: 14px;
  }
  .faq-list .faq-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 660px) {
  .video-top {
    margin-bottom: 26px;
  }
  .video-top-box .video-item-pic {
    width: 100%;
  }
  .video-top-box .item-body {
    width: 100%;
    padding-top: 8px;
  }
  .video-top-box .item-body .item-title {
    font-size: 16px;
    line-height: 26px;
  }
  .video-top-box .item-body .item-desc {
    font-size: 13px;
    margin-top: 10px;
    line-height: 22px;
  }
  .video-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .video-list-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 24px;
  }
  .video-list-item .item-body {
    padding-top: 4px;
  }
  .video-list-item .item-body .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }

  .page-faq {
    padding-top: 36px;
    padding-bottom: 54px;
  }
  .faq-list {
    padding-bottom: 10px;
  }
  .faq-list .faq-item {
    margin-bottom: 18px;
  }
}
@media (max-width: 400px) {
  .video-top {
    margin-bottom: 20px;
  }
  .video-top-box .item-body .item-title {
    font-size: 16px;
    line-height: 26px;
  }
  .video-top-box .item-body .item-desc {
    font-size: 13px;
    margin-top: 8px;
    line-height: 22px;
  }
  .video-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .video-list-item {
    width: 100%;
    padding: 0 6px;
    margin-bottom: 20px;
  }
  .video-list-item .item-body .item-title {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
  }

  .page-faq {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .faq-list {
    padding-bottom: 10px;
  }
  .faq-list .faq-item {
    margin-bottom: 18px;
  }
}

/* ****************** application ****************** */

.app-list {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  transition: all 0.5s;
  margin-left: -30px;
  margin-right: -30px;
  padding-bottom: 11px;
}
.app-list-item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 30px;
  margin-bottom: 41px;
  transition: all 0.5s;
}
.app-list-item .item-box {
  position: relative;
  width: 100%;
}
.app-list-item .item-pic {
  position: relative;
  width: 100%;
  text-align: center;
}
.app-list-item .item-pic img {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.app-list-item .item-body {
  position: relative;
  width: 100%;
  padding-top: 20px;
}
.app-list-item .item-body .item-title {
  position: relative;
  color: #333333;
  font-size: 24px;
  line-height: 30px;
}
.app-list-item .item-body .item-desc {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  line-height: 30px;
}
.app-list-item .item-body .item-btn {
  font-size: 16px;
  line-height: 20px;
  color: #db915e;
  margin-top: 16px;
}
.app-list-item .item-body .item-btn a {
  display: inline-block;
  vertical-align: top;
  color: #db915e;
  border-bottom: 4px dotted transparent;
}
.app-list-item .item-body .item-btn a:hover {
  border-color: #db915e;
}
@media screen and (max-width: 1359px) {
  .app-list {
    margin-left: -24px;
    margin-right: -24px;
    padding-bottom: 10px;
  }
  .app-list-item {
    width: 50%;
    padding: 0 24px;
    margin-bottom: 34px;
  }
  .app-list-item .item-body {
    padding-top: 18px;
  }
  .app-list-item .item-body .item-title {
    font-size: 22px;
    line-height: 30px;
  }
  .app-list-item .item-body .item-desc {
    margin-top: 8px;
    font-size: 16px;
    line-height: 28px;
  }
  .app-list-item .item-body .item-btn {
    font-size: 16px;
    line-height: 20px;
    margin-top: 14px;
  }
  .app-list-item .item-body .item-btn a {
    border-bottom-width: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1259px) {
  .app-list {
    margin-left: -18px;
    margin-right: -18px;
    padding-bottom: 10px;
  }
  .app-list-item {
    width: 50%;
    padding: 0 18px;
    margin-bottom: 28px;
  }
  .app-list-item .item-body {
    padding-top: 16px;
  }
  .app-list-item .item-body .item-title {
    font-size: 20px;
    line-height: 28px;
  }
  .app-list-item .item-body .item-desc {
    margin-top: 8px;
    font-size: 15px;
    line-height: 26px;
  }
  .app-list-item .item-body .item-btn {
    font-size: 15px;
    line-height: 20px;
    margin-top: 12px;
  }
  .app-list-item .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media (max-width: 991px) {
  .app-list {
    margin-left: -12px;
    margin-right: -12px;
    padding-bottom: 8px;
  }
  .app-list-item {
    width: 50%;
    padding: 0 12px;
    margin-bottom: 22px;
  }
  .app-list-item .item-body {
    padding-top: 12px;
  }
  .app-list-item .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
  }
  .app-list-item .item-body .item-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .app-list-item .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
  }
  .app-list-item .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media (max-width: 720px) {
  .app-list {
    margin-left: -6px;
    margin-right: -6px;
    padding-bottom: 6px;
  }
  .app-list-item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 18px;
  }
  .app-list-item .item-body {
    padding-top: 10px;
  }
  .app-list-item .item-body .item-title {
    font-size: 18px;
    line-height: 28px;
  }
  .app-list-item .item-body .item-desc {
    margin-top: 6px;
    font-size: 14px;
    line-height: 22px;
  }
  .app-list-item .item-body .item-btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
  }
  .app-list-item .item-body .item-btn a {
    border-bottom-width: 3px;
  }
}
@media (max-width: 560px) {
  .app-list {
    margin-left: -6px;
    margin-right: -6px;
  }
  .app-list-item {
    width: 100%;
    padding: 0 6px;
    margin-bottom: 18px;
  }
}
.tankaung {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999999999;
}
/*.tankaungn{ position:fixed; left:50%; top:0px; transform:translateX(-50%); width:50%; height:100%; overflow:auto;}
.tankaungn2{position:fixed; top:50%; transform:translateY(-50%); left:0px; width:100%; padding-bottom:75%;height: 0; max-height:100%; background:#fff;}*/
.tankaungn2 {
  position: fixed;
  left: 5%;
  top: 5%;
  right: 5%;
  bottom: 5%;
}

.tankaungn2 iframe,
.tankaungn2 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.tankaungn2 iframe body {
  margin: 0px !important;
}

.famain {
  padding-top: 70px;
  padding-bottom: 90px;
}
.top {
  width: 45px;
  height: 45px;
  margin: auto;
  background: #db915e;
  border-radius: 16px 0px 16px 0px;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: -100px;
  color: #fff;
  font-size: 20px !important;
  text-align: center;
  line-height: 45px;
  transition: 0.9s;
  z-index: 999;
  -webkit-animation-name: top;
  animation-name: top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.bottom {
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 10px 0px 10px 0px;
    right: 10px;
    bottom: 70px;
  }
  .fotag {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .tankaungn2 {
    position: fixed;
    left: 5%;
    top: 15%;
    right: 5%;
    bottom: 15%;
  }
}

@font-face {
  font-family: "Jost-Regular";
  src: url("Jost-Regular.eot");
  src: url("Jost-Regular.eot?#iefix") format("embedded-opentype"),
    url("Jost-Regular.woff2") format("woff2"),
    url("Jost-Regular.woff") format("woff"),
    url("Jost-Regular.ttf") format("truetype"),
    url("Jost-Regular.svg#Jost-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "iconfont"; /* Project id 2797177 */
  font-display: swap;
  src: url("iconfont2824.woff2?t=1631065712824") format("woff2"),
    url("iconfont2824.woff?t=1631065712824") format("woff"),
    url("iconfont2824.ttf?t=1631065712824") format("truetype");
}
@font-face {
  font-family: "iconfont"; /* Project id 3599773 */
  src: url("iconfont6328.woff2?t=1662540086328") format("woff2"),
    url("iconfont6328.woff?t=1662540086328") format("woff"),
    url("iconfont6328.ttf?t=1662540086328") format("truetype"),
    url("iconfont6328.svg?t=1662540086328#iconfont") format("svg");
}

.icon-yanjing:before {
  content: "\e71f";
}

.icon-shougongfangshitianxiebufuzhangxiangtiaojiebiao1:before {
  content: "\e720";
}

.icon-taiyangnengdianchi:before {
  content: "\e721";
}

.icon-dizhi:before {
  content: "\e722";
}

.icon-erweima:before {
  content: "\e723";
}

.icon-fanhuidingbu:before {
  content: "\e717";
}

.icon-jiantou_youshang:before {
  content: "\e718";
}

.icon-guanbi:before {
  content: "\e719";
}

.icon-a-guanbi1:before {
  content: "\e71a";
}

.icon-a-24gl-tags4:before {
  content: "\e71b";
}

.icon-a-24xiaoshi:before {
  content: "\e71c";
}

.icon-gongchang:before {
  content: "\e71d";
}

.icon-shougongfangshitianxiebufuzhangxiangtiaojiebiao:before {
  content: "\e71e";
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-download2:before {
  content: "\e7a1";
}

.icon-home:before {
  content: "\e624";
}

.icon-edit:before {
  content: "\e611";
}

.icon-facebook:before {
  content: "\e620";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-youtube:before {
  content: "\e6d6";
}

.icon-twitter:before {
  content: "\e607";
}

.icon-bigger:before {
  content: "\e647";
}

.icon-left:before {
  content: "\e72c";
}

.icon-right:before {
  content: "\e72d";
}

.icon-up1:before {
  content: "\e72e";
}

.icon-bottom1:before {
  content: "\e72f";
}

.icon-left1:before {
  content: "\e730";
}

.icon-right1:before {
  content: "\e731";
}

.icon-up:before {
  content: "\e73e";
}

.icon-bottom:before {
  content: "\e73f";
}

.icon-instagram:before {
  content: "\e79d";
}

.icon-tumblr:before {
  content: "\e79e";
}

.icon-download:before {
  content: "\e7a0";
}

.icon-download1:before {
  content: "\e7a7";
}

.icon-search4:before {
  content: "\e7b2";
}

.icon-address:before {
  content: "\e7bc";
}

.icon-email:before {
  content: "\e7bd";
}

.icon-contact:before {
  content: "\e7be";
}

.icon-whatsapp:before {
  content: "\e7bf";
}

.icon-fax:before {
  content: "\e7c2";
}

.icon-mobile:before {
  content: "\e7c6";
}

.icon-phone:before {
  content: "\e7c8";
}

.icon-tel:before {
  content: "\e7c7";
}

.icon-phone1:before {
  content: "\e7cb";
}

.icon-skype:before {
  content: "\e7cc";
}

.icon-whatsapp1:before {
  content: "\e7c1";
}

.icon-address1:before {
  content: "\e7c3";
}

.icon-contact1:before {
  content: "\e7c4";
}

.icon-email1:before {
  content: "\e7c5";
}

.icon-skype1:before {
  content: "\e7c9";
}

.icon-fax1:before {
  content: "\e7ca";
}

.icon-qq:before {
  content: "\e7ce";
}

.icon-tel1:before {
  content: "\e7cd";
}

.icon-wechat:before {
  content: "\e7cf";
}

.icon-phone2:before {
  content: "\e7d0";
}

.icon-message:before {
  content: "\e7da";
}

.icon-calendar:before {
  content: "\e7e1";
}

.icon-calendar1:before {
  content: "\e7e3";
}

.icon-top:before {
  content: "\e7ed";
}

.icon-youbian:before {
  content: "\e60f";
}

.icon-jian2:before {
  content: "\e600";
}

.icon-jia2:before {
  content: "\e608";
}

.icon-vk:before {
  content: "\e735";
}

.icon-instagram1:before {
  content: "\e640";
}

.icon-up7:before {
  content: "\e722";
}

.icon-bottom7:before {
  content: "\e723";
}

.icon-left7:before {
  content: "\e724";
}

.icon-right7:before {
  content: "\e725";
}

.icon-sousuo4:before {
  content: "\e610";
}

.icon-sousuo:before {
  content: "\e616";
}

.icon-sousuo1:before {
  content: "\e65b";
}

.icon-gjiantous:before {
  content: "\e7d1";
}

.lang-img {
  background: url(lang.png) no-repeat;
}
.en {
  height: 16px;
  width: 24px;
  background-position: 0 -848px;
}
.disnone {
  display: none;
}
.zanwu {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.xunpanlb {
  padding-top: 30px;
  clear: both;
  padding-bottom: 30px;
  width: 100%;
}

.xunpanlb .table .thead {
  font-size: 0;
  letter-spacing: 0;
  border: 1px solid #dcdcdc;
  background: #db915e;
}

.xunpanlb .table .thead p {
  text-align: center;
  padding: 0 10px;
  font-size: 16px;
  line-height: 40px;
  width: 33.3333%;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  color: #fff;
}

.xunpanlb .table .thead p:nth-child(2) {
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody {
  font-size: 0;
  letter-spacing: 0;
}

.xunpanlb .table .tbody .tread {
  border: 1px solid #dcdcdc;
  border-top: 0;
}

.xunpanlb .table .tbody .tread .td {
  height: 100%;
  text-align: center;
  padding: 10px 10px;
  font-size: 16px;
  line-height: 40px;
  width: 33.3333%;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}

.xunpanlb .table .tbody .tread .td:nth-child(2) {
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody .td img {
  max-width: 110px;
  margin-left: auto;
  margin-right: auto;
}

.xunpanlb .table .tbody .td a {
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.xunpanlb .table .tbody .td a:hover {
  color: #db915e;
}

@media screen and (max-width: 520px) {
  .xunpanlb .table {
    border-top: 1px solid #dcdcdc;
  }

  .xunpanlb .table .thead {
    display: none;
  }

  .xunpanlb .table .tbody .td {
    width: 100% !important;
  }

  .xunpanlb .table .tbody .tread .td:nth-child(2) {
    border: 0 !important;
  }
}

/*.faq-item .faq-item-name:hover {*/
/*	background-color: #D3B35E;*/
/*}*/
.fenyen .pages-btn a.active {
  cursor: default !important;
}
.attachment-upload-result span {
  font-size: 14px;
  /*color:  #fff;*/
}

.attachment-upload-result .iconfontggg.icon-yf-shanchu:hover {
  cursor: pointer;
  color: #d3b35e;
}

.sec-text.white a:hover,
.sec-text.white .href:hover {
  color: #999;
}
.sec-title a:hover,
.sec-title .href:hover {
  color: #999;
}



.detail-main {
    display: none;
}
.detail-main.active-show {
    display: block;
}