/**
 * Swiper 11.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 26, 2023
 */
@font-face {
  font-family: "microsoft yahei","微软雅黑";
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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: flex;
  justify-content: 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%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform,opacity,height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

#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 .5s ease;
  transition: opacity .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 .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -moz-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .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 .4s ease;
  transition: background-color .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: .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);
  }
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 101px;
}

body {
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  color: #333333;
  line-height: 1.2;
  background-color: #ffffff;
}

@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

a {
  text-decoration: none;
  outline: none;
  tap-highlight-color: transparent;
  focus-ring-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  -moz-tap-highlight-color: transparent;
  -moz-focus-ring-color: transparent;
  transition: all 0.2s;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  border: 0px solid #ccc;
  height: auto;
  transition: 0.5s;
}

table,
embed,
video {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  border: none;
  background: none;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

input[type=checkbox] {
  cursor: pointer;
}

input[type=radio] {
  cursor: pointer;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

em,
i {
  font-style: normal;
}

h1, h2 {
  font: inherit;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.j-offset-top {
  transition: all 1000ms;
  transform: translateY(100px);
  opacity: 0;
}

.j-offset-top.run {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .j-offset-top {
    transform: none !important;
  }
}

.j-offset-left {
  transition: all 1000ms;
  transform: translateX(100px);
  opacity: 0;
}

.j-offset-left.run {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .j-offset-left {
    transform: none !important;
  }
}

.j-offset-right {
  transition: all 1000ms;
  transform: translateX(-100px);
  opacity: 0;
}

.j-offset-right.run {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .j-offset-right {
    transform: none !important;
  }
}

.j-fadein {
  transition: all 1000ms;
  opacity: 0;
}

.j-fadein.run {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .j-fadein {
    transform: none !important;
  }
}

::selection {
  background: #1a3a8d;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff !important;
}

::-moz-selection {
  background: #1a3a8d;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff !important;
}

.contSafe {
  width: 1200px;
  margin: 0 auto;
}

.clear {
  clear: both;
}

.iframeBox {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}

.iframeBox iframe {
  width: 80%;
  height: 80%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.iframeBox video {
  width: 100%;
  object-fit: cover;
}

.iframeBox:before {
  content: "+";
  position: absolute;
  width: 36px;
  height: 36px;
  line-height: 30px;
  text-align: center;
  top: 30px;
  right: 30px;
  background: #fff;
  border-radius: 50%;
  font-size: 40px;
  cursor: pointer;
  transform: rotate(45deg);
}

.tankaunga {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 9999999999
}

/*.tankaunga:before {*/
/*	content: "X";*/
/*	position: absolute;*/
/*	width: 30px;*/
/*	height: 30px;*/
/*	line-height: 30px;*/
/*	text-align: center;*/
/*	top: 10px;*/
/*	right: 10px;*/
/*	background: #fff;*/
/*	border-radius: 50%;*/
/*	font-size: 18px;*/
/*	cursor: pointer;*/
/*}*/

.tankaungn2:before {
	content: "X";
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 10px;
	right: 10px;
	background: #fff;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	z-index: 200;
}

.tankaungn2 {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 993px;
    height: 556px;
    max-width: 90%;
    max-height: 80%;
}

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

.deg90 {
  transform: rotate(90deg);
}

/*jQzoom*/
.jqzoom {
  position: relative;
  padding: 0px;
}

div.zoomdiv {
  z-index: 200;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 400px;
  height: 400px;
  background: #ffffff;
  border: 1px solid #CCCCCC;
  display: none;
  text-align: center;
  overflow: hidden;
}

div.zoomdiv img {
  max-width: unset !important;
}

div.jqZoomPup {
  z-index: 200;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 300px;
  height: 300px;
  border: 1px solid #aaa;
  background: #ffffff;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: alpha(Opacity=50);
}

.navTopWrap {
  width: 100%;
  background-color: #1a3a8d;
  padding: 6.5px 0px;
}

.navTopWrap .navTopBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navTopWrap .navMeail {
  display: flex;
  align-items: center;
  font-family: Inter-Regular,Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin-right: 45px;
}

.navTopWrap .navMeail span {
  font-size: 24px;
  color: #ffffff;
  margin-right: 5px;
}

.navTopWrap .navMeail a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.navTopWrap .navMeail a:hover {
  text-decoration: underline;
}

.navTopWrap .navMeail:last-child {
  margin-right: 0;
}

.navBottWrap {
  width: 100%;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 800;
  box-shadow: 0px 0px 12px 0px 
            rgba(0, 0, 0, 0.15);
}

.navBottWrap .navBottBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navBottWrap .navLogo {
  width: 307px;
  display: block;
}

.navBottWrap .navLogo img {
  /*width: 100%;*/
  display: block;
}

.navBottWrap .navRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navBottWrap .navList {
  display: flex;
}

.navBottWrap .navList > li {
  position: relative;
  margin-right: 46px;
  padding: 40px 0px;
}

.navBottWrap .navList > li:last-child {
  margin-right: 0;
}

.navBottWrap .navList > li > a {
  font-family: Inter-Regular,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
}

.navBottWrap .navList > li:hover > a {
  color: #1a3a8d;
}

.navBottWrap .yiActive > a {
  color: #1a3a8d !important;
}

.navBottWrap .navList > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  width: max-content;
  max-width: 250px;
  padding-top: 9px;
  padding-bottom: 8px;
  display: none;
}

.navBottWrap .navList > li > ul > li {
  position: relative;
}

.navBottWrap .navList > li > ul > li > a {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  padding: 0 18px;
}

.navBottWrap .navList > li > ul > li:hover > a {
  color: #1a3a8d;
  font-weight: bold;
}

.navBottWrap .souBox {
  position: relative;
  margin-left: 30px;
  display: flex;
  align-items: center;
}

.navBottWrap .souBox::after {
  width: 2px;
  height: 27px;
  background-color: #333333;
  border-radius: 1px;
  content: '';
  margin-left: 18px;
}

.navBottWrap .searchIcon {
  font-size: 22px;
  color: #333333;
  cursor: pointer;
  font-weight: bold;
}

.navBottWrap .searchWrap {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  border: 1px solid #777777;
  z-index: 810;
  width: 266px;
}

.navBottWrap .searchBox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
  box-sizing: border-box;
  background-color: #ffffff;
  width: 100%;
}

.navBottWrap .searchBox input {
  font-size: 16px;
  color: #333333;
  flex: 1;
  padding-right: 10px;
  padding-left: 10px;
  height: 30px;
}

.navBottWrap .searchBox input::-webkit-input-placeholder {
  color: #333333;
}

.navBottWrap .searchBox input:-moz-placeholder {
  color: #333333;
}

.navBottWrap .searchBox input::-moz-placeholder {
  color: #333333;
}

.navBottWrap .searchBox input:-ms-input-placeholder {
  color: #333333;
}

.navBottWrap .searchBox .searBtn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 28px;
  margin: 0;
}

.navBottWrap .searIcon {
  font-size: 22px !important;
}

.navBottWrap .navLang {
  position: relative;
  margin-left: 10px;
}

.navBottWrap .langBox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
}

.navBottWrap .qiuiIcon {
  font-size: 24px;
  color: #333333;
  margin-right: 2px;
}

.navBottWrap .jiaoIcon {
  font-size: 12px;
  color: #333333;
  margin-left: 13px;
}

.navBottWrap .langOther {
  width: 115px;
  background-color: #ffffff;
  border: solid 1px #e4e4e4;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  padding: 13px 9px;
  padding-bottom: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 35px);
  display: none;
}

.navBottWrap .langOther a {
  color: #999999;
  display: block;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.navBottWrap .langOther a:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.navBottWrap .langOther a:hover {
  color: #333333;
}

.navBottWrap .menuBtn {
  margin-left: 20px;
  display: none;
  position: relative;
  z-index: 900;
}

.navBottWrap .menuBtn .menuIcon {
  width: 30px;
  height: 34px;
  position: relative;
  cursor: pointer;
}

.navBottWrap .menuBtn .menuIcon:before,
.navBottWrap .menuBtn .menuIcon:after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: #0172b7;
  border-radius: 8px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.navBottWrap .menuBtn .menuIcon:before {
  top: 15px;
  box-shadow: 0 -8px #0172b7;
}

.navBottWrap .menuBtn .menuIcon:after {
  bottom: 8px;
}

.navBottWrap .menuBtn .menuActive::after {
  bottom: 15px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #ffffff;
}

.navBottWrap .menuBtn .menuActive::before {
  top: 16px;
  box-shadow: none;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: #ffffff;
}

.navBottWrap .navList > li > ul > li > ul {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  width: max-content;
  max-width: 250px;
  padding-top: 9px;
  padding-bottom: 8px;
  display: none;
}

.navBottWrap .navList > li > ul > li > ul > li {
  position: relative;
}

.navBottWrap .navList > li > ul > li > ul > li > a {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  padding: 0 18px;
}

.navBottWrap .navList > li > ul > li > ul > li:hover > a {
  color: #1a3a8d;
  font-weight: bold;
}

.mobileBox {
  width: 439px;
  position: absolute;
  top: 0;
  right: 0;
  height: 68vh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 300;
  padding-left: 35px;
  padding-right: 20px;
  padding-bottom: 80px;
}

.mobileBox .footClose {
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: none !important;
}

.mobileBox .mobSearch {
  width: 250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  background-color: #ffffff;
  margin-top: 70px;
  border-radius: 5px;
  padding: 5px 0;
  padding-right: 10px;
}

.mobileBox .erItem {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
  padding-bottom: 0;
  border-radius: 0;
  padding-top: 0;
}

.mobileBox .erItem .mobileYi {
  font-family: Inter-Light, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
}

.mobileBox .inpSea {
  font-size: 16px;
  color: #1a3a8d;
  width: 100%;
  margin-right: 10px;
  margin-left: 10px;
}

.mobileBox .inpSea::-webkit-input-placeholder {
  color: #1a3a8d;
}

.mobileBox .inpSea:-moz-placeholder {
  color: #1a3a8d;
}

.mobileBox .inpSea::-moz-placeholder {
  color: #1a3a8d;
}

.mobileBox .inpSea:-ms-input-placeholder {
  color: #1a3a8d;
}

.mobileBox .souIcon {
  font-size: 18px;
  color: #1a3a8d;
}

.mobileBox .subIcon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
}

.mobileBox .mobileNav {
  width: 100%;
  padding-top: 20px;
}

.mobileBox .mobileYi {
  font-family: Inter-Regular, Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 20px;
  word-break: break-all;
}

.mobileBox .mobileYi a {
  color: #ffffff;
  display: block;
  width: 100%;
}

.mobileBox .mobileYi span {
  transition: 0.2s;
  font-size: 22px;
}

.mobileBox .erPhone {
  margin-left: 8px;
  margin-top: 12px;
  display: none;
}

.mobileBox .zhanActive {
  transform: rotate(90deg);
}

.mobileBox .yiZhan {
  margin-left: 10px;
}

.mobileBox .sanPhone {
  font-size: 14px;
  color: #ffffff;
  margin-left: 45px;
  display: none;
}

.mobileBox .sanPhone a {
  color: #ffffff;
  display: block;
  margin-bottom: 15px;
}

.mobileBox::-webkit-scrollbar {
  display: none;
}

.yiItem {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 21px;
  margin-bottom: 18px;
}

.yiItem:last-child {
  margin-bottom: 0;
}

.banner {
  width: 100%;
  overflow: hidden;
  display: none;
}

.banner img {
  width: 100%;
  display: block;
}

.banner .slide {
  position: relative;
}

.banner .slide .carouse .slideItem {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  overflow: hidden;
}

.banner .slide .carouse .slideItem .banner-img {
  width: 100%;
}

.banner .slide .console {
  height: 57px;
  display: inline-block;
  width: 35px;
  position: absolute;
  top: 40%;
}

.banner .slide .slidedetail {
  display: none;
}

.banner .carousel-control {
  width: 41px;
  height: 41px;
  background-color: #ffffff;
  border-radius: 1px;
  line-height: 41px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  line-height: 41px;
  font-size: 20px;
  color: #333333;
}

.banner .carousel-control:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.banner .left {
  left: 22px;
}

.banner .right {
  right: 22px;
}

.bannerSwiper {
  width: 100%;
  overflow: hidden;
}
.bannerSwiper a{
    width: 100%;
    display: block;
}

.bannerSwiper .swiper-slide {
  position: relative;
}

.bannerSwiper .bannImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.bannerSwiper .bannImg img {
  width: 100%;
  display: block;
}
.bannerSwiper .box-video {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 101%;
  min-height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  display: none \9;
  display: block \9\0;
}
.bannerSwiper .mobileVideo{
    display: none;
}

.physWrap {
  margin-top: 50px;
  overflow: hidden;
}

.physWrap .physSwiper {
  width: 100%;
}

.physWrap .swiper-slide {
  pointer-events: none;
  opacity: 0;
  height: unset !important;
}

.physWrap .swiper-slide-visible {
  opacity: 1;
  pointer-events: all;
}

.physWrap .physIcon {
  height: 46px;
  display: block;
  width: auto;
}

.physWrap .physName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 40px;
  color: #333333;
  margin-top: 27px;
  display: flex;
  align-items: start;
}

.physWrap .physName span {
  font-size: 22px;
}

.physWrap .physTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  margin-top: 8px;
}

.physWrap .physItem {
  width: 100%;
  background-color: #f6f6f6;
  border-radius: 1px;
  padding: 26px 23px;
  padding-bottom: 41px;
  position: relative;
  display: block;
  height: 100%;
}

.physWrap .physItem::after {
  width: 100%;
  height: 4px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  opacity: 0;
}

.physWrap .physItem:hover {
  background-color: #ffffff;
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1);
}

.physWrap .physItem:hover::after {
  opacity: 1;
}

.physWrap .physPoint {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.physWrap .swiper-pagination-bullet {
  width: 30px;
  height: 7px;
  background-color: #eeeeee;
  border-radius: 1px;
  opacity: 1;
  margin: 0 5px !important;
}

.physWrap .swiper-pagination-bullet-active {
  background-color: #1a3a8d;
}

.biao40 {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 40px;
  color: #333333;
  text-align: center;
}

.biao40 a {
  color: #333333;
}

.biao40 em {
  color: #1a3a8d;
}

.biao40 a:hover {
  color: #1a3a8d;
}

.featWrap {
  margin-top: 99px;
  padding-bottom: 95px;
  position: relative;
  overflow: hidden;
}

.featWrap .featBlock {
  width: 319px;
  position: absolute;
  bottom: 0;
  left: 18px;
}

.featWrap .featBox {
  position: relative;
  z-index: 100;
}

.featWrap .featTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #666666;
  margin-top: 6px;
  text-align: center;
}

.featWrap .featList {
  margin-top: 41px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.featWrap .featItem {
  width: 49%;
  position: relative;
  overflow: hidden;
}

.featWrap .featItem:hover img{
    transform: scale(1.1);
}

.featWrap .featItem img {
  width: 100%;
  display: block;
}

.featWrap .featInfo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 57px 93px 20px 48px;
}

.featWrap .featName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #ffffff;
  position: relative;
}

.featWrap .featName a {
  color: #ffffff;
  display: block;
}

.featWrap .featName a:hover {
  color: #1a3a8d;
}

.featWrap .featName::after {
  width: 33px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
}

.featWrap .featTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 24px;
}

.featWrap .featBtn {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 11px 18px;
  background-color: #1a3a8d;
  border-radius: 1px;
  border: 1px solid #1a3a8d;
  margin-top: 29px;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.featWrap .featBtn span {
  font-size: 17px;
  color: #ffffff;
  margin-left: 8px;
  transition: 0.2s;
}

.featWrap .featBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.featWrap .featBtn:hover span {
  color: #1a3a8d;
}

.contWrap {
  width: 100%;
  border-radius: 1px;
  background: url("../images/cont1.jpg") center center/cover no-repeat;
  padding: 47px 0px;
}

.contWrap .contBox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contWrap .contLeft {
  display: flex;
}

.contWrap .contItem {
  display: flex;
  align-items: center;
  margin-right: 132px;
}

.contWrap .contItem:last-child {
  margin-right: 0;
}

.contWrap .contIcon {
  font-size: 24px;
  color: #ffffff;
  width: 51px;
  height: 51px;
  border-radius: 26px;
  border: solid 1px #ffffff;
  text-align: center;
  line-height: 51px;
}

.contWrap .contInfo {
  flex: 1;
  margin-left: 17px;
}

.contWrap .contInfo p:nth-child(1) {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
}

.contWrap .contInfo p:nth-child(2) {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}

.contWrap .contInfo p:nth-child(2) a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.contWrap .contInfo p:nth-child(2) a:hover {
  text-decoration: underline;
}

.contWrap .contBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.contWrap .contBtn:hover span {
  color: #1a3a8d;
}

.contWrap .contBtn {
  margin-left: 137px;
}

.contBtn {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 1px;
  border: solid 1px #ffffff;
  transition: 0.2s;
  cursor: pointer;
}

.contBtn span {
  font-size: 18px;
  color: #ffffff;
  margin-left: 10px;
  transition: 0.2s;
}

.partWrap {
  margin-top: 90px;
}

.partWrap .partTips {
  width: 68.92%;
  margin: 0 auto;
  margin-top: 7px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-align: center;
}

.partWrap .partList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 33px;
}

.partWrap .partItem {
  width: 18.78%;
  margin-right: 1.5%;
  margin-bottom: 11px;
  transition: 0.2s;
}

.partWrap .partItem img {
  width: 100%;
  display: block;
}

.partWrap .partItem:nth-child(5n) {
  margin-right: 0;
}

.partWrap .partItem:hover {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.08);
}

.suppWrap {
  background: url("../images/supp3.jpg") center center/cover no-repeat;
  padding-top: 90px;
  padding-bottom: 115px;
  margin-top: 69px;
}

.suppWrap .suppBox {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.suppWrap .suppImg {
  width: 50%;
  display: block;
  overflow: hidden;
}

.suppWrap .suppImg img {
  width: 100%;
  display: block;
}

.suppWrap .suppImg:hover img {
  transform: scale(1.1);
}

.suppWrap .suppInfo {
  width: 44.7%;
  margin-top: 42px;
}

.suppWrap .biao40 {
  text-align: left;
}

.suppWrap .suppTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  margin-top: 8px;
}

.suppWrap .suppCont {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 40px;
  color: #333333;
  padding-left: 42px;
  margin-top: 25px;
}

.suppWrap .suppCont em {
  position: relative;
}

.suppWrap .suppCont em::before {
  width: 32px;
  height: 16px;
  content: '';
  background: url("../images/supp2.png") center center/cover no-repeat;
  position: absolute;
  top: 1px;
  left: -42px;
}

.suppWrap .suppBtn {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 10.5px 18px;
  background-color: #1a3a8d;
  border-radius: 1px;
  border: 1px solid #1a3a8d;
  margin-top: 26px;
  width: max-content;
  max-width: 100%;
}

.suppWrap .suppBtn span {
  font-size: 18px;
  margin-left: 8px;
  color: #ffffff;
  transition: 0.2s;
}

.suppWrap .suppBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.suppWrap .suppBtn:hover span {
  color: #1a3a8d;
}

.suppWrap .suppMobil {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6px;
}

.suppWrap .suppItem {
  width: 48%;
  margin-top: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 1px rgba(52, 51, 50, 0.08);
  border-radius: 1px;
  padding: 37px 33px;
  padding-bottom: 10px;
  min-height: 225px;
}

.suppWrap .suppItem img {
  height: 46px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.suppWrap .suppItem p {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  margin-top: 23px;
  line-height: 28px;
}

.suppWrap .suppItem p em {
  color: #1a3a8d;
}

.compWrap {
  margin-top: 107px;
  position: relative;
  padding-bottom: 97px;
}

.compWrap .compBlock {
  width: 300px;
  position: absolute;
  bottom: -29px;
  right: 15px;
}

.compWrap .compBox {
  display: flex;
  position: relative;
  z-index: 100;
  flex-wrap: wrap;
  justify-content: space-between;
}

.compWrap .compItem {
  width: 23.33%;
  position: relative;
}

.compWrap .compImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.compWrap .compImg img {
  width: 100%;
  display: block;
}

.compWrap .compImg:hover img {
  transform: scale(1.1);
}

.compWrap .compName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #ffffff;
  position: relative;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  bottom: 40px;
}

.compWrap .compName a {
  color: #ffffff;
  display: block;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.compWrap .compName a:hover {
  color: #1a3a8d;
}

.compWrap .compName::after {
  width: 33px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.touchWrap {
  background: url("../images/touch1.jpg") center center/cover no-repeat;
  padding-top: 76px;
  padding-bottom: 65px;
  position: relative;
  z-index: 100;
}

.touchWrap .touchBox {
  display: flex;
  align-items: start;
}

.touchWrap .touchLeft {
  width: 273px;
}

.touchWrap .touchTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #ffffff;
  position: relative;
}

.touchWrap .touchTit a {
  color: #ffffff;
}

.touchWrap .touchTit a:hover {
  color: #1a3a8d;
}

.touchWrap .touchTit::after {
  width: 33px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
}

.touchWrap .touchTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin-top: 38px;
}

.touchWrap .touchForm {
  flex: 1;
  margin-left: 117px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4px;
}

.touchWrap .touchItem {
  width: 32.75%;
  height: 49px;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  position: relative;
  padding: 0 20px;
  margin-bottom: 14px;
}

.touchWrap .touchXing {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  position: absolute;
  top: 14px;
  left: 9px;
}

.touchWrap .touchInput {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  width: 100%;
  height: 100%;
}

.touchWrap .touchInput::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .touchInput:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .touchInput::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .touchInput:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .touchArea {
  width: 100%;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  position: relative;
  padding: 9px 20px;
}

.touchWrap .touchArea .touchXing {
  top: 10px;
}

.touchWrap .areaText {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  width: 100%;
  height: 100px;
}

.touchWrap .areaText::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .areaText:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .areaText::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .areaText:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.touchWrap .touchSub {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 14px 58px;
  background-color: #1a3a8d;
  border: 1px solid #1a3a8d;
  transition: 0.2s;
  margin-top: 14px;
}

.touchWrap .touchSub:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.footWrap {
  background-color: #1a3a8d;
  border-radius: 1px;
  padding-top: 55px;
  padding-bottom: 22px;
}

.footWrap .footTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footWrap .footLogo {
  width: 307px;
  display: block;
}

.footWrap .footLogo img {
  max-width: 100%;
  display: block;
}

.footWrap .footTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #ffffff;
}

.footWrap .emailForm {
  width: 258px;
  background-color: #ffffff;
  border-radius: 1px;
  border: solid 1px #cccccc;
  height: 43px;
  padding-left: 12px;
  padding-right: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footWrap .emaiInput {
  width: 100%;
  height: 100%;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #b4b4b4;
}

.footWrap .emaiInput::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #b4b4b4;
}

.footWrap .emaiInput:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #b4b4b4;
}

.footWrap .emaiInput::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #b4b4b4;
}

.footWrap .emaiInput:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #b4b4b4;
}

.footWrap .emailSub {
  position: absolute;
  top: 0;
  right: 8px;
  width: 24px;
  height: 100%;
}

.footWrap .emaiSpan {
  font-size: 28px;
  color: #1a3a8d;
  flex-shrink: 0;
}

.footWrap .footCenter {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
  padding-top: 45px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footWrap .footItem {
  max-width: 24%;
}

.footWrap .footName {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #ffffff;
}

.footWrap .footName a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.footWrap .footName a:hover {
  text-decoration: underline;
}

.footWrap .kaiIcon {
  font-size: 20px;
  color: #ffffff;
  margin-left: 10px;
  transition: 0.2s;
  margin-left: 10px;
  display: none;
}

.footWrap .footNav {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #cccccc;
  line-height: 30px;
  margin-top: 11px;
}

.footWrap .footNav a {
  color: #cccccc;
  display: block;
}

.footWrap .footNav a:hover {
  color: #ffffff;
}

.footWrap .footD {
  width: 24.35%;
}

.footWrap .footLx {
  margin-top: 9px;
}

.footWrap .lxItem {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}

.footWrap .lxItem span {
  font-size: 26px;
  color: #cccccc;
  margin-right: 8px;
  margin-top: 2px;
}

.footWrap .lxItem:last-child {
  margin-bottom: 0;
}

.footWrap .lxInfo {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 34px;
  color: #cccccc;
  word-break: break-word;
}

.footWrap .lxInfo a {
  color: #cccccc;
  display: block;
}

.footWrap .lxInfo a:hover {
  color: #ffffff;
}

.footWrap .contBtn {
  border: solid 1px #ffffff;
  background-color: transparent;
  color: #ffffff;
  margin-left: 36px;
  margin-top: 20px;
}

.footWrap .contBtn span {
  color: #ffffff;
}

.footWrap .contBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.footWrap .contBtn:hover span {
  color: #1a3a8d;
}

.footWrap .footBott {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 19px;
  margin-top: 36px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #cccccc;
}

.footWrap .footBott a {
  color: #cccccc;
  margin-left: 5px;
}

.footWrap .footBott a:hover {
  color: #ffffff;
}

.sideNav {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  width: 56px;
  display: none !important;
}

.sideNav .sideItem {
  width: 100%;
  transition: 0.2s;
  position: relative;
  margin-top: 11px;
  background-color: #ffffff;
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.15);
}

.sideNav .wxImg {
  max-width: unset;
  width: 120px;
  height: 120px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 10px);
  display: none;
}

.sideNav .sideBox {
  width: 100%;
  text-align: center;
  display: block;
}

.sideNav .sideBox span {
  font-size: 26px;
  color: rgba(41, 46, 138, 0.99);
  line-height: 56px;
  transition: 0.2s;
}

.sideNav .sideItem:hover {
  background-color: #1a3a8d;
}

.sideNav .sideItem:hover .sideBox span {
  color: #ffffff;
}

.sideNav .phoneTxt {
  width: max-content;
  padding: 10px;
  font-size: 16px;
  color: #ffffff;
  background-color: #1a3a8d;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.sideNav .phoneTxt a {
  color: #ffffff;
  text-underline-offset: 3px;
}

.sideNav .phoneTxt a:hover {
  text-decoration: underline;
}

.sideNav .goTop {
  cursor: pointer;
}

.contMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 820;
  display: none;
}

.contMask .maskWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contMask .maskBox {
  width: 800px;
  background-color: #ffffff;
  position: relative;
  padding: 36px 62px 51px 57px;
}

.contMask .closeBtn {
  position: absolute;
  top: 46px;
  right: 80px;
  cursor: pointer;
  font-size: 26px;
  color: #2B2B2B;
  z-index: 100;
}

.contMask .contTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #333333;
  position: relative;
}

.contMask .contTit::after {
  width: 33px;
  height: 2px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
}

.contMask .contTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  margin-top: 29px;
}

.contMask .contForm {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contMask .emaiBox {
  width: 100%;
}

.contMask .emaiBox .formItem {
  width: 100%;
}

.contMask .formItem {
  width: 48.91%;
  height: 49px;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  display: flex;
  align-items: start;
  padding: 0 10px;
  margin-bottom: 20px;
}

.contMask .formXing {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  margin-top: 14px;
  margin-right: 4px;
}

.contMask .formInput {
  width: 100%;
  height: 100%;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .formInput::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .formInput:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .formInput::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .formInput:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .m-formcountry {
  position: relative;
}

.contMask .m-formcountry .drop-btn {
  position: relative;
  width: 100%;
  height: 100%;
}

.contMask .m-formcountry .drop-btn i,
.contMask .m-formcountry .drop-btn svg {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.contMask .m-formcountry .drop-list {
  display: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  max-height: 223px;
  overflow-x: hidden;
  z-index: 10001;
  scrollbar-color: #333 rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
  left: 0;
}

.contMask .m-formcountry .drop-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.contMask .m-formcountry .drop-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.contMask .m-formcountry .drop-list::-webkit-scrollbar-thumb {
  background-color: #333;
}

.contMask .m-formcountry .drop-list li {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  padding: 5px 27px;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  color: #999;
}

.contMask .m-formcountry .drop-list li.on {
  background-color: #e0e0e0;
}

.contMask .formArea {
  width: 100%;
  border: solid 1px #dddddd;
  display: flex;
  align-items: start;
  padding: 9px 7px;
}

.contMask .formArea .formXing {
  margin-top: 0;
}

.contMask .messArea {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  width: 100%;
  height: 150px;
}

.contMask .messArea::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .messArea:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .messArea::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .messArea:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contMask .contSub {
  padding: 14px 58px;
  background-color: #1a3a8d;
  border: 1px solid #1a3a8d;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  transition: 0.2s;
  margin-top: 28px;
}

.contMask .contSub:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.neiBnner .neiVideo {
  width: 100%;
  height: 100%;
  position: relative;
}

.neiBnner .neiVideo:hover .boImg {
  width: 74px;
}

.neiBnner .videoImg {
  width: 100%;
  display: block;
  cursor: pointer;
}

.neiBnner .boImg {
  width: 64px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.neiBnner .neiCont {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.neiBnner .biao40 {
  color: #ffffff;
  text-transform: uppercase;
}

.neiBnner video{
    width: 100%;
}

.crumbsBox {
  padding-top: 20px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
}

.crumbsBox a {
  color: #333333;
}

.crumbsBox a:hover {
  color: #1a3a8d;
}

.crumbsBox .crumActive {
  color: #1a3a8d;
}

.biao36 {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 36px;
  color: #333333;
}

.biao36 em {
  color: #1a3a8d;
}

.blowerWrap {
  margin-top: 47px;
}

.blowerWrap .blowTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 10px;
}

.blowerWrap .blowBox {
  margin-top: 53px;
}

.blowerWrap .blowItem {
  margin-bottom: 50px;
}

.blowerWrap .blowItem:last-child {
  margin-bottom: 0;
}

.blowerWrap .blowName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #333333;
}

.blowerWrap .blowTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 4px;
}

.blowerWrap .blowImg {
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.blowerWrap .blowImg img {
  width: 82px;
  display: block;
}

.custWrap {
  margin-top: 74px;
  margin-bottom: 76px;
}

.custWrap .custCate {
  width: 100%;
  display: flex;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  position: relative;
  color: #333333;
  overflow: hidden;
}

.custWrap .custCate .swiper-slide {
  position: relative;
  padding: 0 12px;
  padding-bottom: 18px;
  flex-shrink: 0;
  cursor: pointer;
  width: max-content;
}

.custWrap .custCate .swiper-slide::after {
  width: 0;
  height: 4px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s;
  z-index: 100;
}

.custWrap .custCate .custAct::after {
  width: 100%;
}

.custWrap .custCate::-webkit-scrollbar {
  display: none;
}

.custWrap .custCate::after {
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
}

.custWrap .custBox {
  margin-top: 39px;
}

.custWrap .custList {
  display: flex;
  flex-wrap: wrap;
}

.custWrap .custCont {
  width: 23.83%;
  margin-right: 1.5%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.custWrap .custCont:hover img{
    transform: scale(1.1);
}

.custWrap .custCont:nth-child(4n) {
  margin-right: 0;
}

.custWrap .custVideo {
  width: 100%;
  display: block;
}

.custWrap .custFang {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custWrap .custFang img {
  width: 50px;
  display: block;
}

.custWrap .custItem {
  display: none;
}

.missWrap {
  margin-top: 40px;
}

.missWrap .biao36 {
  text-align: center;
}

.missWrap .missTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-align: center;
  margin-top: 13px;
}

.missWrap .missBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 63px;
}

.missWrap .missImg {
  width: 50%;
  overflow: hidden;
}

.missWrap .missImg img {
  width: 100%;
  display: block;
}
.missWrap .missImg:hover img{
    transform: scale(1.1);
}

.missWrap .missRight {
  width: 46.2%;
}

.missWrap .missItem {
  padding-left: 45px;
  margin-bottom: 36px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.missWrap .missItem p {
  margin-bottom: 9px;
}

.missWrap .missItem p:last-child {
  margin-bottom: 0;
}

.missWrap .missItem em {
  position: relative;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
}

.missWrap .missItem em::before {
  background: url("../images/supp2.png") center center/cover no-repeat;
  content: '';
  position: absolute;
  top: 3px;
  left: -45px;
  width: 32px;
  height: 16px;
}

.missWrap .missItem:last-child {
  margin-bottom: 0;
}

.emplWrap {
  margin-top: 93px;
  margin-bottom: 100px;
}

.emplWrap .biao36 {
  text-align: center;
}

.emplWrap .missTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-align: center;
  margin-top: 13px;
}

.emplWrap .missBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 63px;
}

.emplWrap .missImg {
  width: 50%;
  overflow: hidden;
}

.emplWrap .missImg:hover img{
    transform: scale(1.1);
}

.emplWrap .missImg img {
  width: 100%;
  display: block;
}

.emplWrap .missRight {
  width: 46.2%;
}

.emplWrap .missItem {
  margin-bottom: 17px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.emplWrap .missItem p {
  margin-bottom: 9px;
}

.emplWrap .missItem p:last-child {
  margin-bottom: 0;
}

.emplWrap .missItem em {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
}

.emplWrap .missItem:last-child {
  margin-bottom: 0;
}

.teamWrap {
  margin-top: 47px;
  margin-bottom: 53px;
}

.teamWrap .teamList {
  display: flex;
  flex-wrap: wrap;
}

.teamWrap .teamItem {
  width: 23.23%;
  margin-right: 2.3%;
  margin-bottom: 41px;
  overflow: hidden;
}

.teamWrap .teamItem:nth-child(4n) {
  margin-right: 0;
}

.teamWrap .teamImg {
  width: 100%;
  display: block;
}
.teamWrap .teamImg:hover{
    transform: scale(1.05);
}
.teamWrap .teamName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #222222;
  text-align: center;
  margin-top: 15px;
}

.teamWrap .teamPost {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #222222;
  text-align: center;
  margin-top: 7px;
}

.deveWrap {
  width: 100%;
  position: relative;
  /* margin-top: 47px; */
  padding-bottom: 126px;
  background: url('../images/deve1.jpg') center center / cover no-repeat;
  padding-top: 46px;
  padding-bottom: 128px;
}

.deveWrap .deveBlock {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.deveWrap .deveBox {
  position: relative;
  z-index: 100;
  background-color: #ffffff;
  padding: 50px 107px 70px 92px;
}

.deveWrap .deveLine {
  width: 2px;
  background-color: #1a3a8d;
  border-radius: 1px;
  height: 92%;
  position: absolute;
  left: 155px;
  top: 61px;
  z-index: 200;
}

.deveWrap .deveLine::after {
  background: url("../images/sanjiao1.png") center center/cover no-repeat;
  width: 22px;
  height: 19px;
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.deveWrap .deveList {
  width: 100%;
  position: relative;
  z-index: 200;
}

.deveWrap .deveItem {
  width: 100%;
  display: flex;
  align-items: start;
  margin-bottom: 19px;
}

.deveWrap .deveItem:last-child {
  margin-bottom: 0;
}

.deveWrap .deveItem:last-child .devePoint {
  display: none;
}

.deveWrap .deveYear {
  width: 128px;
  height: 51px;
  background-color: #1a3a8d;
  border-radius: 4px;
  line-height: 51px;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}

.deveWrap .deveLeft {
  flex-shrink: 0;
}

.deveWrap .devePoint {
  width: 20px;
  height: 20px;
  background-color: rgba(26, 58, 141, 0.21);
  position: relative;
  margin: 0 auto;
  margin-top: 86px;
  border-radius: 50%;
}

.deveWrap .devePoint::after {
  width: 10px;
  height: 10px;
  background-color: #8da9d5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  z-index: 300;
}

.deveWrap .deveCenter {
  width: 74px;
  height: 1px;
  background-color: #1a3a8d;
  margin-top: 25px;
  margin-left: 25px;
  flex-shrink: 0;
}

.deveWrap .deveRight {
  flex: 1;
  margin-left: 25px;
  height: 226px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 22px 30px 23px 36px;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow-y: auto;
}

.deveWrap .deveRight::-webkit-scrollbar {
  width: 3px;
  background-color: #f7f7f7;
}

.deveWrap .deveRight::-webkit-scrollbar-thumb {
  background-color: #1a3a8d;
}

.deveWrap .deveTxt {
  flex: 1;
  padding-top: 8px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
}

.deveWrap .deveTxt em {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #1a3a8d;
  position: relative;
}

.deveWrap .deveTxt em::before {
  width: 8px;
  height: 8px;
  background-color: #1a3a8d;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: 7px;
  left: -15px;
}

.deveWrap .deveImg {
  width: 257px;
  margin-left: 27px;
}

.deveWrap .deveImg img {
  width: 100%;
  display: block;
}

.recoNews {
  margin-top: 48px;
  margin-bottom: 88px;
}

.recoNews .recoSwiper {
  position: relative;
  width: 100%;
  background-color: #f7f7f7;
  overflow: hidden;
  border: 0px 1px 1px 0px;
}

.recoNews .swiper-slide {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.recoNews .recoImg {
  width: 63.58%;
  display: block;
  overflow: hidden;
}

.recoNews .recoImg img {
  width: 100%;
  display: block;
  overflow: hidden;
}

.recoNews .recoImg:hover img {
  transform: scale(1.1);
}

.recoNews .recoRight {
  padding: 54px 37px 80px 56px;
  flex: 1;
}

.recoNews .recoName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.recoNews .recoName a {
  color: #333333;
  display: block;
}

.recoNews .recoName a:hover {
  color: #1a3a8d;
}

.recoNews .recoText {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  margin-top: 12px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.recoNews .recoDate {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  margin-top: 17px;
}

.recoNews .recoBtn {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  width: max-content;
  max-width: 100%;
  background-color: #1a3a8d;
  border-radius: 1px;
  border: 1px solid #1a3a8d;
  margin-top: 28px;
  padding: 11.5px 18px;
}

.recoNews .recoBtn span {
  font-size: 16px;
  color: #ffffff;
  transition: 0.2s;
  margin-left: 8px;
}

.recoNews .recoBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.recoNews .recoBtn:hover span {
  color: #1a3a8d;
}

.recoNews .recoPoint {
  position: absolute;
  left: calc(63.58% + 56px);
  bottom: 48px;
  display: flex;
  z-index: 100;
}

.recoNews .swiper-pagination-bullet {
  width: 30px;
  height: 7px;
  background-color: #bbbbbb;
  border-radius: 1px;
  opacity: 1;
  margin: 0 !important;
  margin-right: 11px !important;
}

.recoNews .swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}

.recoNews .swiper-pagination-bullet-active {
  background-color: #1a3a8d;
}

.recoNews .newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 42px;
}

.recoNews .newsList::after {
  width: 31.83%;
  content: '';
}

.recoNews .newsItem {
  width: 31.83%;
  margin-bottom: 44px;
}

.recoNews .newsItem:hover .newsInfo {
  box-shadow: none;
  background-color: #1a3a8d;
}

.recoNews .newsItem:hover .newsName {
  color: #ffffff;
}

.recoNews .newsItem:hover .newsName a {
  color: #ffffff;
}

.recoNews .newsItem:hover .newsTxt {
  color: #ffffff;
}

.recoNews .newsItem:hover .newsBott {
  border-top: 2px solid #ffffff;
  color: #ffffff;
}

.recoNews .newsItem:hover .newsBott a {
  color: #ffffff;
}

.recoNews .newsItem:hover .newsBott a span {
  color: #ffffff;
}

.recoNews .newsItem:nth-child(n + 7) {
  display: none;
}

.recoNews .newsAct .newsItem {
  display: block !important;
}

.recoNews .newsImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.recoNews .newsImg img {
  width: 100%;
  display: block;
}

.recoNews .newsImg:hover img {
  transform: scale(1.1);
}

.recoNews .newsInfo {
  width: 100%;
  box-shadow: 0px 0px 17px 1px rgba(109, 110, 112, 0.1);
  padding: 25px 10px;
  padding-bottom: 23px;
  transition: 0.2s;
}

.recoNews .newsName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height:60px;
}

.recoNews .newsName a {
  color: #333333;
  display: block;
  text-underline-offset: 4px;
}

.recoNews .newsName a:hover {
  text-decoration: none;
}

.recoNews .newsTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 4px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.2s;
}

.recoNews .newsBott {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  border-top: 2px solid #F2F2F2;
  padding-top: 17px;
  margin-top: 12px;
  transition: 0.2s;
}

.recoNews .newsBott a {
  display: flex;
  align-items: center;
  color: #666666;
}

.recoNews .newsBott a span {
  font-size: 18px;
  color: #666666;
  transition: 0.2s;
  margin-left: 8px;
}

.recoNews .newsBott a:hover span {
  transform: scale(1.2);
}

.newsBtn {
  width: max-content;
  max-width: 100%;
  padding: 12px 21px;
  background-color: #ffffff;
  border-radius: 1px;
  border: solid 1px #1a3a8d;
  margin: 0 auto;
  margin-top: 24px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a3a8d;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.newsBtn:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.noNews {
  display: none;
}

.fenYe {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-top: 1px solid #dddddd;
  padding-top: 14px;
  margin-top: 36px;
}
.fenYe p{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fenYe a {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  width: 48%;
}

.fenYe a span {
  font-size: 18px;
  color: #333333;
  margin-right: 8px;
  transition: 0.2s;
  font-weight: bold;
}

.fenYe a img {
  width: 96px;
  display: block;
  margin-right: 9px;
}

.fenYe a:nth-child(2) {
  flex-direction: row-reverse;
  text-align: right;
}

.fenYe a:nth-child(2) span {
  margin-right: 0;
  margin-left: 8px;
}

.fenYe a:nth-child(2) img {
  margin-right: 0;
  margin-left: 7px;
}

.fenYe a:hover {
  color: #1a3a8d;
}

.fenYe a:hover span {
  color: #1a3a8d;
}

.newsDetail {
  margin-top: 43px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 87px;
}

.newsDetail .ndLeft {
  width: 66.67%;
}

.newsDetail .ndTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 28px;
  color: #0d3386;
}

.newsDetail .ndDate {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  margin-top: 19px;
}

.newsDetail .ndTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  border-top: 1px solid #dddddd;
  margin-top: 17px;
  padding-top: 8px;
}

.newsDetail .ndTxt a {
  color: #666666;
}

.newsDetail .ndTxt a:hover {
  color: #1a3a8d;
}

.newsDetail .ndTxt img {
  max-width: 100%;
}

.newsDetail .ndRight {
  width: 26.92%;
  margin-top: 5px;
}

.newsDetail .lateTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #ffffff;
  padding: 16.5px 23px;
  background-color: #0d3386;
}

.newsDetail .lateList {
  margin-top: 30px;
}

.newsDetail .lateItem {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 33px;
  padding-bottom: 33px;
}

.newsDetail .lateItem:last-child {
  margin-bottom: 0;
}

.newsDetail .lateDate {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
}

.newsDetail .lateName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
}

.newsDetail .lateName a {
  color: #333333;
  display: block;
}

.newsDetail .lateName a:hover {
  color: #1a3a8d;
}

.chanList {
  margin-top: 52px;
}

.chanList .biao36 {
  text-align: center;
}

.chanList .chanItem {
  margin-bottom: 58px;
}

.chanList .chanItem:last-child {
  margin-bottom: 0;
}

.chanList .prodList {
  margin-top: 36px;
}

.chanList .prodItem {
  background-color: #ffffff;
  border: solid 1px #dddddd;
  padding: 27px 36px 36px 29px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  transition: 0.2s;
  margin-bottom: 27px;
}

.chanList .prodItem:hover {
  background-color: #f6f6f6;
}

.chanList .prodImg {
  width: 222px;
  display: block;
  overflow: hidden;
}

.chanList .prodImg img {
  width: 100%;
  display: block;
}

.chanList .prodImg:hover img {
  transform: scale(1.1);
}

.chanList .prodRight {
  flex: 1;
  margin-left: 33px;
  margin-top: 7px;
}

.chanList .prodName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.chanList .prodName a {
  color: #333333;
  display: block;
}

.chanList .prodName a:hover {
  color: #1a3a8d;
}

.chanList .prodTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
}

.chanList .prodTxt p {
  width: 48%;
}

.chanList .prodBtn {
  display: flex;
  margin-top: 23px;
}

.chanList .prodBtn a {
  min-width: 152px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3a8d;
  padding: 11px 10px;
  border: 1px solid #1a3a8d;
  border-radius: 1px;
  margin-right: 16px;
}

.chanList .prodBtn a span {
  font-size: 18px;
  color: #1a3a8d;
  margin-left: 10px;
}

.chanList .prodBtn a:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.chanList .prodBtn a:hover span {
  color: #ffffff;
}

.chanList .prodBtn a:nth-child(2) {
  color: #333333;
  border: 1px solid #333333;
}

.chanList .prodBtn a:nth-child(2) span {
  color: #333333;
}

.chanList .prodBtn a:nth-child(2):hover {
  background-color: #333333;
  color: #ffffff;
}

.chanList .prodBtn a:nth-child(2):hover span {
  color: #ffffff;
}

.chooWrap {
  background-color: #1a3a8d;
  border-radius: 1px;
  padding-top: 70px;
  padding-bottom: 34px;
  margin-top: 90px;
}

.chooWrap .biao36 {
  text-align: center;
  color: #ffffff;
}

.chooWrap .chooTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin-top: 7px;
}

.chooWrap .chooList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 47px;
}

.chooWrap .chooList::after {
  width: 32%;
  content: '';
}

.chooWrap .chooItem {
  width: 32%;
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin-bottom: 33px;
  color: #ffffff;
}

.chooWrap .chooIcon {
  width: 58px;
  height: 58px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 9px;
  flex-shrink: 0;
}

.chooWrap .chooIcon:hover img{
    transform: scale(1.1);
}

.chooWrap .chooIcon img {
  max-width: 100%;
  display: block;
}

.faqWrap {
  margin-top: 78px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
}

.faqWrap .faqLeft {
  width: 23.67%;
  padding: 31px 0px 20px 22px;
  background-color: #f9f9f9;
  border-radius: 1px;
}

.faqWrap .faqTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
}

.faqWrap .biao36 {
  line-height: 50px;
  margin-top: 15px;
}

.faqWrap .faqTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  margin-top: 25px;
}

.faqWrap .contBtn {
  margin-top: 49px;
  border: 1px solid #1a3a8d;
  background-color: #1a3a8d;
}

.faqWrap .contBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.faqWrap .contBtn:hover span {
  color: #1a3a8d;
}

.faqWrap .faqRight {
  width: 73.67%;
}

.faqWrap .faqItem {
  border: 1px solid #E7E7E7;
  background-color: #F9F9F9;
  margin-bottom: 15px;
  padding: 0 11px;
}

.faqWrap .faqItem:last-child {
  margin-bottom: 0;
}

.faqWrap .faqQues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px;
  padding-right: 0;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

.faqWrap .jiaJian {
  font-size: 14px;
  color: #1a3a8d;
  font-weight: bold;
  margin-left: 10px;
}

.faqWrap .jinIcon {
  display: none;
}

.faqWrap .faqAnsw {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  border-top: 1px solid #dddddd;
  padding: 10px 66px 12px 20px;
  display: none;
}

.faqWrap .isShow {
  background-color: #ffffff;
}

.faqWrap .isShow .faqQues {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.provWrap {
  margin-top: 76px;
}

.provWrap .biao36 {
  text-align: center;
}

.provWrap .provTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  line-height: 28px;
  text-align: center;
  margin-top: 10px;
}

.provWrap .provList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 27px;
}

.provWrap .provItem {
  width: 23.5%;
  box-shadow: 0px 0px 15px 1px rgba(52, 51, 50, 0.08);
  border-radius: 1px;
  padding: 36px 25px;
  padding-bottom: 37px;
}

.provWrap .provItem:hover .provImg{
    transform: scale(1.1);
}

.provWrap .provImg {
  display: block;
  width: auto;
  height: 46px;
  margin: 0 auto;
}

.provWrap .provName {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-align: center;
  margin-top: 17px;
}

.neiTouch {
  margin-top: 77px;
}

.neiTouch .touchWrap {
  padding-top: 64px;
  padding-bottom: 55px;
}

.neiTouch .emilTouch {
  width: 100%;
}

.neiTouch .emilTouch .touchItem {
  width: 100%;
}

.neiTouch .touchItem {
  width: 48.91%;
  margin-bottom: 20px;
}

.neiTouch .touchForm {
  width: 72%;
  flex: unset;
  margin-left: 79px;
}

.neiTouch .touchBox {
  justify-content: center;
  align-items: center;
}

.neiTouch .m-formcountry {
  position: relative;
}

.neiTouch .m-formcountry .drop-btn {
  position: relative;
  width: 100%;
  height: 100%;
}

.neiTouch .m-formcountry .drop-btn i,
.neiTouch .m-formcountry .drop-btn svg {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.neiTouch .m-formcountry .drop-list {
  display: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  max-height: 223px;
  overflow-x: hidden;
  z-index: 10001;
  scrollbar-color: #333 rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
  left: 0;
}

.neiTouch .m-formcountry .drop-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.neiTouch .m-formcountry .drop-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.neiTouch .m-formcountry .drop-list::-webkit-scrollbar-thumb {
  background-color: #333;
}

.neiTouch .m-formcountry .drop-list li {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  padding: 5px 27px;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  color: #999;
}

.neiTouch .m-formcountry .drop-list li.on {
  background-color: #e0e0e0;
}

.neiTouch .touchSub {
  margin-top: 28px;
}

.caseWrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 73px;
  margin-bottom: 81px;
  justify-content: space-between;
}

.caseWrap .caseItem {
  width: 31.67%;
}

.caseWrap .caseImg {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 1px;
}

.caseWrap .caseImg img {
  width: 100%;
  display: block;
}

.caseWrap .caseImg:hover img {
  transform: scale(1.1);
}

.caseWrap .caseName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  margin-top: 17px;
  text-align: center;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.caseWrap .caseName a {
  color: #333333;
  display: block;
}

.caseWrap .caseName a:hover {
  color: #1a3a8d;
}

.caseWrap::after {
  width: 31.67%;
  content: '';
}

.crumWrap {
  background-color: #f6f6f6;
  border-radius: 1px;
}

.crumWrap .crumbsBox {
  padding: 16px 0px;
}

.prodDetail {
  margin-top: 47px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.prodDetail .detailLeft {
  width: 41.83%;
  position: relative;
}

.prodDetail .dtBox {
  width: 100%;
  position: relative;
}

.prodDetail .dtSwiper1 {
  overflow: hidden;
}

.prodDetail .dtSwiper1 .swiper-slide img {
  width: 100%;
  display: block;
}

.prodDetail .dtQie {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  transition: 0.2s;
  font-size: 38px;
  color: #333333;
  z-index: 100;
}

.prodDetail .dtPrev {
  left: -40px;
}

.prodDetail .dtNext {
  right: -40px;
}

.prodDetail .xiangSuo {
  width: 100%;
  position: relative;
  margin-top: 36px;
}

.prodDetail .suoSwiper {
  width: 100%;
  overflow: hidden;
  padding-right: 2px;
}

.prodDetail .suoSwiper .swiper-slide-thumb-active {
  border: 1px solid #1a3a8d;
}
/*.prodDetail .suoSwiper .swiper-slide-active {*/
/*  border: 1px solid #1a3a8d;*/
/*}*/

.prodDetail .suoItem {
  border-radius: 1px;
  border: solid 1px #dddddd;
  cursor: pointer;
}

.prodDetail .suoItem img {
  /*width: 100%;*/
	width:117px;
  display: block;
}

.prodDetail .suoItem:hover {
  border: 1px solid #1a3a8d;
}

.prodDetail .suoQie {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  transition: 0.2s;
}

.prodDetail .suoQie:hover {
  color: #1a3a8d;
}

.prodDetail .suoPrev {
  left: -19px;
}

.prodDetail .suoNext {
  right: -19px;
}

.prodDetail .detailRight {
  width: 51.42%;
  margin-top: 19px;
}

.prodDetail .detaTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
}

.prodDetail .detaTxt {
  border-top: 1px solid #cccccc;
  padding-top: 14px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  line-height: 26px;
  margin-top: 21px;
}

.prodDetail .detaTxt a {
  color: #666666;
}

.prodDetail .detaTxt a:hover {
  color: #1a3a8d;
}

.prodDetail .detaTxt em {
  color: #1a3a8d;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
}

.prodDetail .detaTxt strong {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #1a3a8d;
}

.prodDetail .detaList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 34px;
}

.prodDetail .detaItem {
  width: 30.31%;
  border-radius: 1px;
  border: solid 1px #dddddd;
  padding: 16px 10px;
  padding-bottom: 0;
}

.prodDetail .detaItem:hover .detaIcon img {
  transform: scale(1.1);
}

.prodDetail .detaIcon {
  width: 54px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.prodDetail .detaIcon img {
  max-width: 100%;
  display: block;
}

.prodDetail .detaInfo {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  text-align: center;
  margin-top: 6px;
  width: calc(100% + 22px);
  transform: translateX(-11px) translateY(1px);
  position: relative;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, #ffffff 100%);
}

.prodDetail .featName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #1a3a8d;
  margin-top: 38px;
}

.prodDetail .featBox {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  padding-left: 27px;
  margin-top: 10px;
}

.prodDetail .featBox em {
  position: relative;
}

.prodDetail .featBox em::before {
  background: url("../images/duigou1.png") center center/cover no-repeat;
  content: '';
  position: absolute;
  top: 0px;
  left: -27px;
  width: 20px;
  height: 20px;
}

.prodDetail .detaBtn {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.prodDetail .quotBtn {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 9.5px 17px;
  background-color: #1a3a8d;
  border-radius: 1px;
  border: solid 1px #1a3a8d;
}

.prodDetail .quotBtn span {
  font-size: 20px;
  color: #ffffff;
  margin-left: 10px;
}

.prodDetail .quotBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.prodDetail .quotBtn:hover span {
  color: #1a3a8d;
}

.prodDetail .downBtn {
  display: flex;
  margin-left: 37px;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #1a3a8d;
  width: 150px;
  line-height: 26px;
  align-items: center;
}

.prodDetail .downBtn span {
  font-size: 47px;
  margin-right: 10px;
}

.prodDetail .contBtn {
  background-color: #1a3a8d;
  border: solid 1px #1a3a8d;
  color: #ffffff;
  margin-top: 35px;
}

.prodDetail .contBtn span {
  color: #ffffff;
}

.prodDetail .contBtn:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.prodDetail .contBtn:hover span {
  color: #1a3a8d;
}

.induWrap {
  margin-top: 65px;
}

.induWrap .induTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  margin-top: 13px;
}

.induWrap .induBox {
  width: 70.25%;
  margin: 0 auto;
  position: relative;
  margin-top: 43px;
}

.induWrap .induBox video{
    width: 100%;
}

.induWrap .induImg {
  width: 100%;
  display: block;
}

.induWrap .fangBox {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.induWrap .induFang {
  width: 78px;
  display: block;
}

.blowerBox {
  margin-top: 96px;
}

.blowerBox .blowTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 9px;
}

.blowerBox .blowTxt a {
  color: #333333;
}

.blowerBox .blowTxt a:hover {
  color: #1a3a8d;
}

.blowerBox .blowTxt img {
  max-width: 100%;
}

.saveBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 47px;
}

.saveBox .saveImg {
  width: 74px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.saveBox .saveImg:hover img{
    transform: scale(1.1);
}

.saveBox .saveImg img {
  max-width: 100%;
  display: block;
}

.saveBox .saveName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  text-align: center;
  margin-top: 13px;
}

.saveBox .saveTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  text-align: center;
  margin-top: 9px;
}

.coreBox {
  margin-top: 81px;
}

.coreBox .coreList {
  margin-top: 33px;
}

.coreBox .coreItem {
  margin-bottom: 37px;
}

.coreBox .coreItem:last-child {
  margin-bottom: 0;
}

.coreBox .coreName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #333333;
}

.coreBox .coreCont {
  box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  margin-top: 25px;
  display: flex;
  align-items: start;
  padding: 36px 13px 35px 20px;
}

.coreBox .coreImg {
  width: 264px;
}

.coreBox .coreImg img {
  width: 100%;
  display: block;
}

.coreBox .coreInfo {
  flex: 1;
  margin-left: 27px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  margin-top: 7px;
  padding-left: 12px;
}

.coreBox .coreInfo em {
  position: relative;
}

.coreBox .coreInfo em::before {
  width: 6px;
  height: 6px;
  background-color: #1a3a8d;
  content: '';
  position: absolute;
  top: 7px;
  left: -12px;
  border-radius: 50%;
}

.coreBox .coreInfo img {
  max-width: 100%;
}

.coreBox .coreInfo a {
  color: #333333;
}

.coreBox .coreInfo a:hover {
  color: #1a3a8d;
}

.specBox {
  margin-top: 80px;
}

.specBox .specTips {
  display: flex;
  justify-content: space-between;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  margin-top: 25px;
}

.specBox .specCont {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  margin-top: 17px;
}

.specBox .specCont .tablen {
  width: 100%;
  overflow-x: auto;
}

.specBox .specCont .tablen::-webkit-scrollbar {
  height: 5px;
  background-color: #ecf3fa;
}

.specBox .specCont .tablen::-webkit-scrollbar-thumb {
  background-color: #1a3a8d;
}

.specBox .specCont table {
  width: 100%;
}

.specBox .specCont table td {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  border: 1px solid #dddddd;
  vertical-align: middle;
  text-align: center;
  padding: 14.5px 12px;
  min-width: 75px;
}

.specBox .specCont table tr:nth-child(1) {
  background-color: #f2f5fd;
}

.specBox .specCont table tr:nth-child(1) td {
  padding: 19px 12px;
}

.servSupp .biao36 {
  text-align: left;
}

.servSupp .provTips {
  text-align: left;
}

.servSupp .provWrap {
  margin-top: 47px;
}

.warrWrap {
  margin-top: 87px;
  margin-bottom: 87px;
}

.warrWrap .warrTop {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.warrWrap .warrLeft {
  width: 45.08%;
  margin-top: 44px;
}

.warrWrap .warrItem {
  margin-bottom: 25px;
}

.warrWrap .warrItem:last-child {
  margin-bottom: 0;
}

.warrWrap .warrName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #333333;
}

.warrWrap .warrTxt1 {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 6px;
}

.warrWrap .warrTxt1 a {
  color: #666666;
}

.warrWrap .warrTxt1 a:hover {
  color: #1a3a8d;
}

.warrWrap .warrTxt1 img {
  max-width: 100%;
}

.warrWrap .warrTxt1 em {
  color: #1a3a8d;
}

.warrWrap .warrTxt2 {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 3px;
}

.warrWrap .warrTxt2 a {
  color: #666666;
}

.warrWrap .warrTxt2 a:hover {
  color: #1a3a8d;
}

.warrWrap .warrTxt2 img {
  max-width: 100%;
}

.warrWrap .warrTxt2 em {
  position: relative;
  padding-left: 43px;
  line-height: 32px;
  color: #333333;
}

.warrWrap .warrTxt2 em::before {
  background: url("../images/supp2.png") center center/cover no-repeat;
  content: '';
  width: 32px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}

.warrWrap .warrRight {
  width: 50%;
  overflow: hidden;
}

.warrWrap .warrRight:hover img{
    transform: scale(1.1);
}

.warrWrap .warrRight img {
  width: 100%;
  display: block;
}

.warrWrap .warrBott {
  margin-top: 49px;
}

.warrWrap .warrBott .warrTxt1 {
  margin-top: 13px;
}

.serevFaq {
  margin-top: 35px;
  margin-bottom: 74px;
}

.serevFaq .faqItem {
  border: 1px solid #E7E7E7;
  background-color: #F9F9F9;
  margin-bottom: 15px;
  padding: 0 11px;
}

.serevFaq .faqItem:last-child {
  margin-bottom: 0;
}

.serevFaq .faqItem:nth-child(n + 14) {
  display: none;
}

.serevFaq .faqAct .faqItem {
  display: block !important;
}

.serevFaq .faqQues {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px;
  padding-right: 0;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

.serevFaq .jiaJian {
  font-size: 14px;
  color: #1a3a8d;
  font-weight: bold;
  margin-left: 10px;
}

.serevFaq .jinIcon {
  display: none;
}

.serevFaq .faqAnsw {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  border-top: 1px solid #dddddd;
  padding: 10px 66px 12px 20px;
  display: none;
}

.serevFaq .isShow {
  background-color: #ffffff;
}

.serevFaq .isShow .faqQues {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-weight:bold;
}

.serevFaq .newsBtn {
  margin-top: 67px;
}

.downWrap {
  margin-top: 48px;
  margin-bottom: 84px;
}

.downWrap .downCate {
  width: 452px;
  border-bottom: 1px solid #cccccc;
  display: flex;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  justify-content: center;
  margin: 0 auto;
}

.downWrap .downCate p {
  padding-bottom: 8px;
  position: relative;
  transition: 0.2s;
  margin-right: 40px;
  cursor: pointer;
}

.downWrap .downCate p:last-child {
  margin-right: 0;
}

.downWrap .downCate p::after {
  width: 0;
  height: 3px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: 0.2s;
  transform: translateX(-50%);
}

.downWrap .downCate p:hover::after {
  width: 100%;
}

.downWrap .downCate p:hover {
  color: #1a3a8d;
}

.downWrap .downCate .downAct {
  color: #1a3a8d;
}

.downWrap .downCate .downAct::after {
  width: 100%;
}

.downWrap .downBox {
  margin-top: 36px;
}

.downWrap .downItem {
  display: none;
}

.downWrap .downTop {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: center;
  color: #333333;
  padding: 18px 14px;
  padding-right: 20px;
}

.downWrap .downTop p:nth-child(1) {
  width: 40%;
  text-align: left;
}

.downWrap .downTop p:nth-child(2) {
  width: 150px;
}

.downWrap .downTop p:nth-child(3) {
  width: 150px;
}

.downWrap .downTop p:nth-child(4) {
  width: 116px;
}

.downWrap .downList {
  margin-top: 13px;
}

.downWrap .xiazItem {
  border-bottom: 1px solid #dddddd;
  padding: 0 14px;
  padding-bottom: 10px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.downWrap .xiazItem:last-child {
  margin-bottom: 0;
}

.downWrap .xiazItem:nth-child(n + 17) {
  display: none !important;
}

.downWrap .xiazAct .xiazItem {
  display: flex !important;
}

.downWrap .xiazName {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  width: 40%;
}

.downWrap .xiazName a {
  color: #333333;
}

.downWrap .xiazName a:hover {
  color: #1a3a8d;
}

.downWrap .xiazName span {
  font-size: 24px;
  color: #999999;
  margin-right: 10px;
}

.downWrap .xiazTxt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.downWrap .downTime {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  text-align: center;
  width: 150px;
}

.downWrap .downSize {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  text-align: center;
  width: 150px;
}

.downWrap .downBtn {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a3a8d;
  display: flex;
  align-items: center;
  width: 116px;
  justify-content: center;
}

.downWrap .downBtn span {
  font-size: 25px;
  color: #1a3a8d;
  margin-left: 2px;
}

.downWrap .downBtn:hover {
  text-shadow: 1px 1px 3px #1a3a8d;
}

.downWrap .newsBtn {
  margin-top: 73px;
}

.acceWrap {
  margin-top: 50px;
  margin-bottom: 78px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.acceWrap .acceLeft {
  width: 23.33%;
}

.acceWrap .acceYi {
  margin-bottom: 20px;
}

.acceWrap .acceYi:last-child {
  margin-bottom: 0;
}

.acceWrap .acceTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #1a3a8d;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acceWrap .acceTit span {
  display: none;
  font-size: 22px;
  color: #333333;
  transition: 0.2s;
}

.acceWrap .acceTit::after {
  width: 132px;
  height: 4px;
  background-color: #1a3a8d;
  border-radius: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
}

.acceWrap .acceCate {
  margin-top: 20px;
}

.acceWrap .acceItem {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 12px;
  margin-bottom: 15px;
  padding-left: 15px;
}

.acceWrap .acceItem:last-child {
  margin-bottom: 0;
}

.acceWrap .acceItem > a {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
}

.acceWrap .acceItem > a:hover {
  color: #1a3a8d;
}

.acceWrap .acceAct > a {
  color: #1a3a8d;
}

.acceWrap .acceEr {
  margin-top: 10px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 34px;
  color: #333333;
  padding-left: 15px;
}

.acceWrap .acceEr a {
  color: #333333;
  display: block;
  position: relative;
}

.acceWrap .acceEr a::after {
  width: 0px;
  height: 2px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  transition: 0.2s;
}

.acceWrap .acceEr a:hover {
  color: #1a3a8d;
}

.acceWrap .acceEr a:hover::after {
  width: 10px;
}

.acceWrap .acceEr .erAct::after {
  width: 10px;
}

.acceWrap .acceEr .erAct {
  color: #1a3a8d;
}

.acceWrap .acceRight {
  width: 70.83%;
}

.acceWrap .acceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.acceWrap .acceList::after {
  width: 32%;
  content: '';
}

.acceWrap .chanItem {
  width: 32%;
  margin-bottom: 21px;
}

.acceWrap .chanItem:nth-child(n + 13) {
  display: none;
}

.acceWrap .chanAct .chanItem {
  display: block !important;
}

.acceWrap .chanImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.acceWrap .chanImg img {
  width: 100%;
  display: block;
}

.acceWrap .chanImg:hover img {
  transform: scale(1.1);
}

.acceWrap .chanName {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 16px;
  text-align: center;
}

.acceWrap .chanName a {
  color: #333333;
}

.acceWrap .chanName a:hover {
  color: #1a3a8d;
}

.acceWrap .newsBtn {
  margin: 0;
  margin-top: 36px;
}

.prodAcce {
  margin-top: 96px;
  margin-bottom: 81px;
}

.prodAcce .biao36 {
  text-align: center;
}

.prodAcce .paBox {
  margin-top: 35px;
  position: relative;
}

.prodAcce .paQie {
  position: absolute;
  top: 34%;
  font-size: 20px;
  color: #333333;
  cursor: pointer;
  transition: 0.2s;
  z-index: 100;
  background-color: #f6f6f6;
  border-radius: 1px;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  font-weight: bold;
}

.prodAcce .paQie:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.prodAcce .paPrev {
  left: -57px;
}

.prodAcce .paNext {
  right: -57px;
}

.prodAcce .paSwiper {
  width: 100%;
  overflow: hidden;
}

.prodAcce .acceImg {
  width: 100%;
  display: block;
  border-radius: 1px;
  overflow: hidden;
}

.prodAcce .acceImg img {
  width: 100%;
  display: block;
}

.prodAcce .acceImg:hover img {
  transform: scale(1.1);
}

.prodAcce .acceName {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
}

.prodAcce .acceName a {
  color: #333333;
}

.prodAcce .acceName a:hover {
  color: #1a3a8d;
}

.videoWrap {
  margin-top: 40px;
  margin-bottom: 83px;
}

.videoWrap .videoCate {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid #cccccc;
  display: flex;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  justify-content: center;
  margin: 0 auto;
  padding: 0 63px;
  overflow-x: auto;
}

.videoWrap .videoCate p {
  padding-bottom: 8px;
  position: relative;
  transition: 0.2s;
  margin-right: 40px;
  cursor: pointer;
  flex-shrink: 0;
}

.videoWrap .videoCate p:last-child {
  margin-right: 0;
}

.videoWrap .videoCate p::after {
  width: 0;
  height: 3px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: 0.2s;
  transform: translateX(-50%);
}

.videoWrap .videoCate p:hover::after {
  width: 100%;
}

.videoWrap .videoCate p:hover {
  color: #1a3a8d;
}

.videoWrap .videoCate .videoAct {
  color: #1a3a8d;
}

.videoWrap .videoCate .videoAct::after {
  width: 100%;
}

.videoWrap .videoItem {
  display: none;
}

.videoWrap .videoBox {
  margin-top: 39px;
}

.videoWrap .videoList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.videoWrap .videoList::after {
  width: 32.25%;
  content: '';
}

.videoWrap .shipItem {
  width: 32.25%;
  margin-bottom: 34px;
}

.videoWrap .shipItem:nth-child(n + 10) {
  display: none;
}

.videoWrap .shipAct .shipItem {
  display: block !important;
}

.videoWrap .shipImg {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.videoWrap .shipImg:hover .videoFang {
  width: 59px;
}

.videoWrap .videoSrc {
  width: 100%;
  display: block;
}

.videoWrap .videoFang {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 49px;
}

.videoWrap .videoName {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin-top: 15px;
}

.videoWrap .newsBtn {
  margin-top: 34px;
}

.contactUs {
  margin-top: 68px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
}

.contactUs .contLeft {
  width: 43.42%;
  position: relative;
  z-index: 100;
  margin-top: 39px;
}

.contactUs .contBolck {
  width: 34.58%;
  position: absolute;
  bottom: 0;
  left: 59px;
}

.contactUs .biao36 {
  line-height: 46px;
}

.contactUs .contLx {
  margin-top: 40px;
}

.contactUs .contItem {
  display: flex;
  align-items: start;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  margin-bottom: 30px;
}

.contactUs .contItem a {
  color: #333333;
}

.contactUs .contItem a:hover {
  color: #1a3a8d;
}

.contactUs .contItem span {
  font-size: 42px;
  color: #1a3a8d;
  margin-right: 10px;
}

.contactUs .contItem:last-child {
  margin-bottom: 0;
}

.contactUs .contRight {
  width: 53%;
  background-color: #f1f4fd;
  padding: 43px 38px 44px 43px;
}

.contactUs .contBiao {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #333333;
  position: relative;
}

.contactUs .contBiao::after {
  width: 33px;
  height: 2px;
  background-color: #1a3a8d;
  border-radius: 1px;
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
}

.contactUs .contTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  margin-top: 38px;
}

.contactUs .emilTouch {
  width: 100%;
}

.contactUs .emilTouch .touchItem {
  width: 100%;
}

.contactUs .touchBox {
  justify-content: center;
  align-items: center;
}

.contactUs .m-formcountry {
  position: relative;
}

.contactUs .m-formcountry .drop-btn {
  position: relative;
  width: 100%;
  height: 100%;
}

.contactUs .m-formcountry .drop-btn i,
.contactUs .m-formcountry .drop-btn svg {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.contactUs .m-formcountry .drop-list {
  display: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  max-height: 223px;
  overflow-x: hidden;
  z-index: 10001;
  scrollbar-color: #333 rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
  left: 0;
}

.contactUs .m-formcountry .drop-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.contactUs .m-formcountry .drop-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.contactUs .m-formcountry .drop-list::-webkit-scrollbar-thumb {
  background-color: #333;
}

.contactUs .m-formcountry .drop-list li {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  padding: 5px 27px;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  color: #999;
}

.contactUs .m-formcountry .drop-list li.on {
  background-color: #e0e0e0;
}

.contactUs .touchForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 19px;
}

.contactUs .touchItem {
  width: 48.91%;
  height: 49px;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}

.contactUs .touchXing {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  position: absolute;
  top: 14px;
  left: 9px;
}

.contactUs .touchInput {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  width: 100%;
  height: 100%;
}

.contactUs .touchInput::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .touchInput:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .touchInput::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .touchInput:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .touchArea {
  width: 100%;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  position: relative;
  padding: 9px 20px;
}

.contactUs .touchArea .touchXing {
  top: 10px;
}

.contactUs .areaText {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
  width: 100%;
  height: 150px;
}

.contactUs .areaText::-webkit-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .areaText:-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .areaText::-moz-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .areaText:-ms-input-placeholder {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #999999;
}

.contactUs .touchSub {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  padding: 14px 58px;
  background-color: #1a3a8d;
  border: 1px solid #1a3a8d;
  transition: 0.2s;
  margin: 0 auto;
  margin-top: 38px;
}

.contactUs .touchSub:hover {
  background-color: #ffffff;
  color: #1a3a8d;
}

.mapBox {
  margin-top: 70px;
  margin-bottom: 87px;
}

.mapBox img {
  width: 100%;
  display: block;
}

.joinWrap {
  align-items: unset;
  margin-bottom: 103px;
}

.joinWrap .joinLeft {
  width: 42.83%;
  background: url("../images/cont3.jpg") center center/cover no-repeat;
  padding-top: 47px;
  padding-right: 44px;
}

.joinWrap .biao36 {
  line-height: 46px;
}

.joinWrap .joinTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  margin-top: 19px;
}

.joinWrap .joinBlock {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.joinWrap .joinBlock img {
  width: 113px;
  display: block;
}

.ppWrap {
  margin-top: 55px;
  margin-bottom: 82px;
}

.ppWrap .ppTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 28px;
  text-align: center;
}

.ppWrap .ppBox {
  margin-top: 25px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.ppWrap .ppBox a {
  color: #666666;
}

.ppWrap .ppBox a:hover {
  color: #1a3a8d;
}

.ppWrap .ppBox img {
  max-width: 100%;
}

.ppWrap .ppBox strong {
  color: #222222;
  font: inherit;
}

.ppWrap .ppBox em {
  position: relative;
  padding-left: 14px;
}

.ppWrap .ppBox em::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: '';
  background-color: #222222;
  position: absolute;
  top: 6px;
  left: 0px;
}

.searchWrap {
  margin-top: 43px;
  margin-bottom: 74px;
}

.searchWrap .searCate {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.searchWrap .searCate p {
  min-width: 147px;
  border-radius: 1px;
  border: solid 1px #1a3a8d;
  text-align: center;
  padding: 9.5px 10px;
  cursor: pointer;
  transition: 0.2s;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a3a8d;
  margin: 0 5px;
  margin-bottom: 10px;
}

.searchWrap .searCate p:last-child {
  margin-right: 0;
}

.searchWrap .searCate p:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.searchWrap .searCate .searAct {
  background-color: #1a3a8d;
  color: #ffffff;
}

.searchWrap .searBox {
  margin-top: 20px;
}

.searchWrap .searItem {
  display: none;
}

.searchWrap .souItem {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}

.searchWrap .souItem:last-child {
  margin-bottom: 0;
}

.searchWrap .souItem:nth-child(n + 11) {
  display: none;
}

.searchWrap .souAct .souItem {
  display: flex !important;
}

.searchWrap .souLeft {
  display: flex;
  align-items: center;
  flex: 1;
  margin-right: 20px;
}

.searchWrap .souImg {
  width: 99px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.06);
  border-radius: 1px;
  margin-right: 23px;
}
@media screen and (max-width:600px) {
  .searchWrap .souImg {
    width: 80%; 
  }
}


.searchWrap .souImg img {
  width: 100%;
  display: block;
}

.searchWrap .souName {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.searchWrap .souName a {
  color: #333333;
}

.searchWrap .souName a:hover {
  color: #1a3a8d;
}

.searchWrap .souCenter {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a3a8d;
  width: 100px;
  margin-right: 64px;
}

.searchWrap .souBtn {
  border-radius: 1px;
  border: solid 1px #1a3a8d;
  display: flex;
  align-items: center;
  padding: 7px 25px;
  width: max-content;
  max-width: 100%;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a3a8d;
}

.searchWrap .souBtn span {
  font-size: 18px;
  color: #1a3a8d;
  transition: 0.2s;
  margin-left: 10px;
}

.searchWrap .souBtn:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.searchWrap .souBtn:hover span {
  color: #ffffff;
}

.searchWrap .newsBtn {
  margin-top: 60px;
}

.anliWrap {
  margin-top: 50px;
  margin-bottom: 67px;
}

.anliWrap .anliList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.anliWrap .anliList::after {
  width: 31.83%;
  content: '';
}

.anliWrap .anliItem {
  width: 31.83%;
  margin-bottom: 38px;
}

.anliWrap .anliItem:hover .anliCont {
  background-color: #1a3a8d;
}

.anliWrap .anliItem:hover .anliName {
  color: #ffffff;
}

.anliWrap .anliItem:hover .anliName a {
  color: #ffffff;
}

.anliWrap .anliItem:hover .anliTxt {
  color: #ffffff;
}

.anliWrap .anliItem:hover .anliBtn {
  border-top: 2px solid #dddddd;
  color: #ffffff;
}

.anliWrap .anliItem:hover .anliBtn span {
  color: #ffffff;
}

.anliWrap .anliItem:nth-child(n + 10) {
  display: none;
}

.anliWrap .anliAct .anliItem {
  display: block !important;
}

.anliWrap .anliImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.anliWrap .anliImg img {
  width: 100%;
  display: block;
}

.anliWrap .anliImg:hover img {
  transform: scale(1.1);
}

.anliWrap .anliCont {
  background-color: #ffffff;
  box-shadow: 0px 0px 17px 1px rgba(109, 110, 112, 0.1);
  padding: 25px 10px 19px 15px;
  transition: 0.2s;
}

.anliWrap .anliName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.2s;
  height: 60px;
}

.anliWrap .anliName a {
  color: #333333;
  display: block;
}

.anliWrap .anliName a:hover {
  color: #1a3a8d;
}

.anliWrap .anliTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 4px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.2s;
}

.anliWrap .anliTag {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  padding: 5px 10px;
  width: max-content;
  max-width: 100%;
  border-radius: 13px;
  border: solid 1px #dddddd;
  margin-top: 15px;
  background-color: #ffffff;
  transition: 0.2s;
}

.anliWrap .anliBtn {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  border-top: 2px solid #EDEDED;
  padding-top: 18px;
  margin-top: 18px;
}

.anliWrap .anliBtn span {
  font-size: 18px;
  color: #666666;
  margin-left: 8px;
  transition: 0.2s;
}

.anliWrap .newsBtn {
  margin-top: 36px;
}

.caseDetail {
  margin-top: 37px;
}

.caseDetail .cdTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 28px;
  color: #0d3386;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 16px;
}

.caseDetail .cdTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.caseDetail .cdBox {
  position: relative;
  margin-top: 35px;
  margin-bottom: 28px;
}

.caseDetail .cdQie {
  font-size: 18px;
  color: #333333;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: #f6f6f6;
  border-radius: 1px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.2s;
  font-weight: bold;
}

.caseDetail .cdPrev {
  left: -59px;
}

.caseDetail .cdNext {
  right: -59px;
}

.caseDetail .cdQie:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.caseDetail .cdSwiper {
  width: 100%;
  overflow: hidden;
}

.caseDetail .cdSwiper img {
  width: 100%;
  display: block;
}

.caseDetail .cdVideo {
  width: 70.25%;
  /*width: 100%;*/
  position: relative;
  margin: 0 auto;
  margin-top: 65px;
  cursor: pointer;
}
.caseDetail .cdVideo video{
    width: 100%;
    object-fit: cover;
}
.caseDetail .cdVideo:hover .cdFang {
  width: 88px;
}

.caseDetail .cdSrc {
  width: 100%;
  display: block;
}

.caseDetail .cdFang {
  width: 78px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.relaWrap {
  width: 100%;
  margin-top: 74px;
  margin-bottom: 45px;
  overflow: hidden;
  padding-bottom: 50px;
}

.relaCase .biao36 {
  text-align: center;
}

.relaCase .relaBox {
  position: relative;
  margin-top: 34px;
}

.relaCase .relaQie {
  position: absolute;
  top: 30%;
  font-size: 18px;
  color: #333333;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: #f6f6f6;
  border-radius: 1px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-weight: bold;
  z-index: 100;
}

.relaCase .relaQie:hover {
  background-color: #1a3a8d;
  color: #ffffff;
}

.relaCase .relaPrev {
  left: -60px;
}

.relaCase .relaNext {
  right: -60px;
}

.relaCase .relaSwiper {
  width: 100%;
}

.relaCase .anliImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.relaCase .anliImg img {
  width: 100%;
  display: block;
}

.relaCase .anliImg:hover img {
  transform: scale(1.1);
}

.relaCase .anliCont {
  background-color: #ffffff;
  box-shadow: 0px 0px 17px 1px rgba(109, 110, 112, 0.1);
  padding: 25px 10px 19px 15px;
  transition: 0.2s;
}

.relaCase .anliName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.2s;
}

.relaCase .anliName a {
  color: #333333;
  display: block;
}

.relaCase .anliName a:hover {
  color: #1a3a8d;
}

.relaCase .anliTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 4px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.2s;
}

.relaCase .anliTag {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  padding: 5px 10px;
  width: max-content;
  max-width: 100%;
  border-radius: 13px;
  border: solid 1px #dddddd;
  margin-top: 15px;
  background-color: #ffffff;
  transition: 0.2s;
}

.relaCase .anliBtn {
  display: flex;
  align-items: center;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666666;
  border-top: 2px solid #EDEDED;
  padding-top: 18px;
  margin-top: 18px;
}

.relaCase .anliBtn span {
  font-size: 18px;
  color: #666666;
  margin-left: 8px;
  transition: 0.2s;
}

.relaCase .anliBtn:hover {
  color: #1a3a8d;
}

.relaCase .anliBtn:hover span {
  color: #1a3a8d;
}

.relaCase .swiper-slide {
  opacity: 0;
  pointer-events: none;
}

.relaCase .swiper-slide-visible {
  opacity: 1;
  pointer-events: all;
}

.phoneNav {
  display: none;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a3a8d;
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  z-index: 800;
}

.phoneNav .footClose {
  display: block;
}

.phoneNav .mobileBox {
  top: unset;
  bottom: 63px;
}

.phoneNav .mobilItem {
  text-align: center;
}

.phoneNav .mobilItem span {
  font-size: 26px;
  color: #ffffff;
}

.phoneNav .mobilItem p {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-top: 5px;
}

.phoneNav .mobilMenu {
  text-align: center;
}
.phoneNav .menuActive .icon-menu::before{
   content: "\e617";
}

.phoneNav .mobilMenu span {
  font-size: 26px;
  color: #ffffff;
}

.phoneNav .mobilMenu p {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-top: 5px;
}

@media (max-width: 1280px) {
  .contSafe {
    width: calc(100% - 160px);
  }
  .navBottWrap .navLogo {
    width: 200px;
  }
  .navBottWrap .navList > li > a {
    font-size: 16px;
  }
  .navBottWrap .searchIcon {
    font-size: 18px;
  }
  .navBottWrap .souBox::after {
    height: 24px;
  }
  .navBottWrap .qiuiIcon {
    font-size: 20px;
  }
  .navBottWrap .langBox {
    font-size: 16px;
  }
  .navBottWrap .jiaoIcon {
    margin-left: 10px;
  }
  .navBottWrap .navList > li {
    padding: 20px 0px;
    margin-right: 20px;
  }
  .physWrap {
    margin-top: 50px;
  }
  .physWrap .physIcon {
    height: 32px;
  }
  .physWrap .physName {
    font-size: 28px;
  }
  .physWrap .physItem {
    padding: 30px;
  }
  .biao40 {
    font-size: 30px;
  }
  .featWrap {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .featWrap .featInfo {
    padding: 30px;
  }
  .partWrap {
    margin-top: 50px;
  }
  .partWrap .partTips {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }
  .suppWrap {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .suppWrap .suppInfo {
    margin-top: 0;
  }
  .compWrap {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .contWrap .contBtn {
    margin-left: 30px;
  }
  .footWrap {
    padding-top: 50px;
  }
  .footWrap .footLogo {
    width: 200px;
  }
  .footWrap .footTips {
    font-size: 18px;
  }
  .footWrap .emailForm {
    width: 200px;
  }
  .footWrap .footCenter {
    margin-top: 20px;
    padding-top: 20px;
  }
  .biao36 {
    font-size: 30px;
  }
  .missWrap .missBox {
    margin-top: 30px;
  }
  .missWrap .missItem {
    margin-bottom: 20px;
  }
  .emplWrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .emplWrap .missBox {
    margin-top: 30px;
  }
  .emplWrap .missItem em {
    font-size: 18px;
  }
  .deveWrap {
    padding-bottom: 50px;
  }
  .deveWrap .deveBox {
    padding: 30px;
  }
  .deveWrap .deveLine {
    left: 93px;
  }
  .deveWrap .deveImg {
    width: 200px;
  }
  .recoNews .recoRight {
    padding: 20px;
    padding-bottom: 80px;
  }
  .recoNews .recoName {
    line-height: 26px;
  }
  .recoNews .recoDate {
    margin-top: 10px;
  }
  .recoNews .recoBtn {
    margin-top: 10px;
  }
  .recoNews .recoPoint {
    left: calc(63.58% + 20px);
  }
  .chanList {
    margin-top: 50px;
  }
  .chanList .prodItem {
    padding: 20px;
  }
  .chanList .prodName {
    font-size: 18px;
  }
  .chanList .prodBtn {
    margin-top: 10px;
  }
  .chooWrap {
    margin-top: 50px;
    padding-top: 50px;
  }
  .faqWrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .faqWrap .faqLeft {
    padding: 20px;
  }
  .faqWrap .biao36 {
    line-height: 1.2;
  }
  .provWrap {
    margin-top: 50px;
  }
  .provWrap .provItem {
    padding: 20px;
  }
  .caseWrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .caseWrap .caseName {
    font-size: 18px;
  }
  .prodDetail .detailRight {
    margin-top: 0;
  }
  .prodDetail .detaTxt {
    margin-top: 10px;
    padding-top: 10px;
  }
  .prodDetail .detaList {
    margin-top: 30px;
  }
  .prodDetail .detaInfo {
    font-size: 14px;
    line-height: 24px;
  }
  .blowerBox {
    margin-top: 50px;
  }
  .induWrap {
    margin-top: 50px;
  }
  .saveBox .saveName {
    font-size: 18px;
  }
  .coreBox {
    margin-top: 50px;
  }
  .coreBox .coreName {
    font-size: 20px;
  }
  .coreBox .coreCont {
    padding: 20px;
  }
  .specBox {
    margin-top: 50px;
  }
  .warrWrap {
    margin-top: 50px;
  }
  .warrWrap .warrLeft {
    margin-top: 0;
  }
  .warrWrap .warrName {
    font-size: 20px;
  }
  .downWrap {
    margin-bottom: 50px;
  }
  .downWrap .newsBtn {
    margin-top: 30px;
  }
  .videoWrap {
    margin-bottom: 50px;
  }
  .videoWrap .videoName {
    font-size: 16px;
  }
  .videoWrap .newsBtn {
    margin-top: 10px;
  }
  .contactUs {
    margin-top: 50px;
  }
  .contactUs .contLeft {
    margin-top: 0;
  }
  .contactUs .contRight {
    padding: 30px;
  }
}

@media (max-width: 1000px) {
  .contSafe {
    width: calc(100% - 60px);
  }
  .crumbWrap{
      background-color: #f6f6f6;
  }
  .crumbsBox{
    padding: 10px 0px;    
  }
  .contMask .maskBox {
    width: 90%;
  }
  .navBottWrap {
    padding: 10px 0px;
  }
  .navBottWrap .menuBtn {
    display: block;
    margin-left: 10px;
  }
  .navBottWrap .navList{
    display: none;
  }
  .navTopWrap {
        padding: 5.5px 0px;
    }
  .navTopWrap .navTopBox{
      justify-content: start;
  }
  .navTopWrap .navMeail:last-child{
      display: none;
  }
  .navBottWrap .searchWrap{
      margin: 0;
      width: 240px;
  }
  .navBottWrap .searchBox input{
      flex: unset;
      width: 100%;
  }
  .sideNav {
    bottom: -1px;
    right: unset;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: unset;
    transform: translateY(0);
  }
  .sideNav .sideBox span {
    line-height: 40px;
    font-size: 18px !important;
    color: #333333;
  }
  .sideNav .sideItem {
    flex: 1;
    width: unset;
    margin: 0;
    height: auto;
    border-radius: 0;
    background-color: #1a3a8d;
    box-shadow: none;
  }
  .sideNav .sideItem:hover span {
    color: #ffffff;
  }
  .sideNav .sideItem:last-child .sideBox span {
    line-height: 40px;
    font-size: 20px;
  }
  .sideNav .footBox {
    padding-bottom: 53px;
  }
  .sideNav .wxImg, .sideNav .phoneTxt {
    left: 10px;
    top: unset;
    bottom: calc(100% + 10px);
    transform: translateY(0);
  }
  .physWrap .physItem {
    padding: 20px;
  }
  .physWrap .physName {
    font-size: 20px;
    margin-top: 10px;
  }
  .featWrap .featName {
    font-size: 20px;
  }
  .featWrap .featBtn {
    padding: 5px 10px;
    margin-top: 20px;
  }
  .contWrap .contBtn {
    display: none;
  }
  .compWrap .compName {
    font-size: 18px;
  }
  .touchWrap .touchBox {
    flex-direction: column;
  }
  .touchWrap .touchLeft {
    width: 100%;
  }
  .touchWrap .touchTit {
    font-size: 24px;
    text-align: center;
  }
  .touchWrap .touchTit::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .touchWrap .touchTxt {
    text-align: center;
  }
  .touchWrap .touchForm {
    margin-left: 0;
    margin-top: 30px;
  }
  .touchWrap .touchSub {
    margin: 0 auto;
    margin-top: 36px;
  }
  .footWrap {
    padding-bottom: 90px;
  }
  .footWrap .footTop {
    flex-direction: column;
    align-items: start;
  }
  .footWrap .footLogo {
    width: 307px;
  }
  .footWrap .footTips {
    margin-top: 20px;
  }
  .footWrap .emailForm {
    width: 100%;
    margin-top: 26px;
  }
  .footWrap .footCenter {
    flex-direction: column;
  }
  .footWrap .footItem {
    width: 100%;
    max-width: 100%;
    margin-bottom: 35px;
  }
  .footWrap .footD {
    width: 100%;
  }
  .footWrap .contBtn {
    display: none;
  }
  .footWrap .footBott {
    text-align: center;
  }
  .sideNav {
    display: none;
  }
  .phoneNav {
    display: flex;
  }
  .biao36 {
    font-size: 26px;
    line-height: 1.2 !important;
  }
  .blowerWrap {
    margin-top: 30px;
  }
  .blowerWrap .blowName {
    font-size: 20px;
  }
  .blowerWrap .blowItem {
    margin-bottom: 20px;
  }
  .blowerWrap .blowBox {
    margin-top: 30px;
  }
  .custWrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .neiBnner .boImg {
    width: 40px;
  }
  .neiBnner{
      padding: 150px 0px !important;
  }
  .missWrap {
    margin-top: 30px;
  }
  .missWrap .missBox {
    flex-direction: column;
  }
  .missWrap .missImg {
    width: 450px;
    margin: 0 auto;
  }
  .missWrap .missRight {
    width: 100%;
    margin-top: 20px;
  }
  .emplWrap {
    margin-top: 30px;
  }
  .emplWrap .missBox {
    flex-direction: column-reverse;
  }
  .emplWrap .missImg {
    width: 450px;
    margin: 0 auto;
  }
  .emplWrap .missRight {
    width: 100%;
    margin-top: 20px;
  }
  .teamWrap .teamName {
    font-size: 18px;
  }
  .deveWrap {
    padding-top: 30px;
  }
  .deveWrap .deveCenter, .deveWrap .deveLine, .deveWrap .devePoint {
    display: none;
  }
  .deveWrap .deveItem {
    flex-direction: column;
  }
  .deveWrap .deveYear {
    padding: 10px 20px;
    width: auto;
    height: auto;
    line-height: unset;
  }
  .deveWrap .deveRight {
    margin-left: 0;
    margin-top: 10px;
    flex: unset;
    width: 100%;
    height: auto;
  }
  .deveWrap .deveBox {
    padding: 15px;
  }
  .recoNews {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .recoNews .swiper-slide {
    flex-direction: column;
  }
  .recoNews .recoImg {
    width: 100%;
  }
  .recoNews .recoPoint {
    left: 20px;
  }
  .recoNews .newsName {
    font-size: 18px;
    line-height: 26px;
  }
  .recoNews .newsInfo {
    padding: 10px;
  }
  .recoNews .newsBtn {
    margin-top: 10px;
  }
  .fenYe {
    flex-direction: column;
    margin-top: 20px;
  }
  .fenYe a {
    width: 100%;
    flex-direction: row !important;
    margin-bottom: 18px;
    text-align: left !important;
  }
  .fenYe a span {
    margin-left: 0 !important;
    margin-right: 5px !important;
  }
  .fenYe a img {
    margin-left: 0 !important;
    margin-right: 5px !important;
  }
  .newsDetail {
    margin-top: 30px;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .newsDetail .ndLeft {
    width: 100%;
  }
  .newsDetail .ndTit {
    text-align: center;
    font-size: 24px;
  }
  .newsDetail .ndDate {
    text-align: center;
  }
  .newsDetail .ndRight {
    width: 100%;
    margin-top: 30px;
  }
  .newsDetail .lateTit {
    font-size: 20px;
    padding: 10px;
  }
  .newsDetail .lateItem {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .chanList {
    margin-top: 30px;
  }
  .chanList .prodItem {
    flex-direction: column;
    padding: 0;
  }
  .chanList .prodImg {
    width: 350px;
    margin: 0 auto;
  }
  .chanList .prodRight {
    margin-left: 0;
    background-color: #f4f7fe;
    border-radius: 1px;
    width: 100%;
    padding: 30px 20px;
  }
  .chanList .prodTxt p {
    width: 100%;
  }
  .chooWrap .chooItem {
    width: 100%;
    margin-bottom: 20px;
  }
  .chooWrap .chooList {
    margin-top: 30px;
  }
  .faqWrap {
    flex-direction: column;
  }
  .faqWrap .faqLeft {
    width: 100%;
    text-align: center;
  }
  .faqWrap .faqTit {
    margin-top: 10px;
  }
  .faqWrap .contBtn {
    margin: 0 auto;
    margin-top: 20px;
  }
  .faqWrap .faqRight {
    width: 100%;
    margin-top: 16px;
  }
  .provWrap .provItem {
    width: 48%;
    margin-top: 20px;
  }
  .provWrap .provList {
    margin-top: 10px;
  }
  .caseWrap {
    margin-top: 20px;
  }
  .caseWrap .caseItem {
    width: 48%;
    margin-top: 30px;
  }
  .neiTouch .touchForm {
    width: 100%;
    padding: 0 50px;
  }
  .neiTouch .touchItem {
    width: 100%;
  }
  div.zoomdiv {
    display: none !important;
  }
  div.jqZoomPup {
    display: none !important;
  }
  .prodDetail {
    flex-direction: column;
    margin-top: 30px;
  }
  .prodDetail .detailLeft {
    width: 400px;
    margin: 0 auto;
  }
  .prodDetail .detailRight {
    width: 100%;
    margin-top: 20px;
  }
  .prodDetail .detaItem {
    width: 100%;
    margin-top: 30px;
  }
  .prodDetail .detaList {
    margin-top: 0px;
  }
  .prodDetail .dtQie {
    font-size: 36px;
  }
  .induWrap {
    margin-top: 50px;
  }
  .induWrap .induBox {
    width: 100%;
  }
  .induWrap .fangBox img {
    width: 40px;
  }
  .saveBox {
    margin-top: 10px;
  }
  .saveBox .saveItem {
    width: 49%;
    margin-top: 20px;
  }
  .coreBox .coreCont {
    flex-direction: column;
  }
  .coreBox .coreImg {
    width: 370px;
    margin: 0 auto;
  }
  .coreBox .coreInfo {
    flex: unset;
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .servSupp {
    margin-top: 30px;
  }
  .servSupp .biao36 {
    text-align: center;
  }
  .servSupp .provTips {
    text-align: center;
  }
  .warrWrap {
    margin-bottom: 50px;
  }
  .warrWrap .warrTop {
    flex-direction: column-reverse;
  }
  .warrWrap .warrRight {
    width: 100%;
  }
  .warrWrap .warrLeft {
    width: 100%;
    margin-top: 20px;
  }
  .serevFaq {
    margin-bottom: 50px;
  }
  .serevFaq .newsBtn {
    margin-top: 30px;
  }
  .serevFaq .faqQues {
    padding-left: 0;
  }
  .serevFaq .faqAnsw {
    padding: 10px 0px;
  }
  .downWrap {
    margin-top: 30px;
  }
  .downWrap .downTop, .downWrap .downTime, .downWrap .downSize {
    display: none;
  }
  .downWrap .xiazName {
    width: 70%;
  }
  .acceWrap {
    margin-top: 30px;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .acceWrap .acceLeft {
    width: 100%;
  }
  .acceWrap .acceTit span {
    display: block;
  }
  .acceWrap .acceCate {
    display: none;
  }
  .acceWrap .acceRight {
    width: 100%;
    margin-top: 30px;
  }
  .acceWrap .newsBtn {
    margin: 0 auto;
    margin-top: 20px;
  }
  .prodAcce {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .prodAcce .paBox {
    margin-top: 80px;
  }
  .prodAcce .paQie {
    top: -60px;
  }
  .prodAcce .paPrev {
    left: 30%;
  }
  .prodAcce .paNext {
    right: 30%;
  }
  .specBox .specTips {
    flex-direction: column;
  }
  .contactUs {
    margin-top: 30px;
    flex-direction: column;
  }
  .contactUs .contLeft {
    width: 100%;
  }
  .contactUs .contLx {
    margin-top: 20px;
  }
  .contactUs .contRight {
    width: 100%;
    margin-top: 30px;
  }
  .contactUs .contBolck {
    display: none;
  }
  .contactUs .touchItem {
    width: 100%;
  }
  .joinWrap {
    margin-bottom: 50px;
  }
  .joinWrap .joinLeft {
    width: 100%;
    min-height: 613px;
    padding-right: 20px;
  }
  .contMask .formItem {
    height: 40px;
  }
  .ppWrap {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .ppWrap .ppTit {
    font-size: 24px;
  }
  .searchWrap {
    margin-bottom: 50px;
  }
  .searchWrap .souCenter, .searchWrap .souBtn {
    display: none;
  }
  .anliWrap {
    margin-bottom: 50px;
  }
  .anliWrap .newsBtn {
    margin-top: 10px;
  }
  .anliWrap .anliName {
    font-size: 18px;
    line-height: 26px;
  }
  .caseDetail {
    margin-top: 30px;
  }
  .caseDetail .cdTit {
    font-size: 24px;
    text-align: center;
  }
  .caseDetail .cdBox {
    margin-top: 80px;
  }
  .caseDetail .cdQie {
    top: -40px;
  }
  .caseDetail .cdPrev {
    left: 30%;
  }
  .caseDetail .cdNext {
    right: 30%;
  }
  .relaWrap {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  .relaWrap .relaPrev {
    left: 10px;
  }
  .relaWrap .relaNext {
    right: 10px;
  }
  .relaWrap .relaQie {
    top: 18%;
  }
}

@media (max-width: 768px) {
    .neiBnner{
        height: 145px !important;
        padding: 0 !important;
    }
    .neiBnner img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .neiBnners{
        height: 145px !important;
        padding: 0 !important;
    }
    .neiBnners img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
  .contSafe {
    width: calc(100% - 30px);
  }
  .banner .carousel-control {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
  .banner .left {
    left: 15px;
  }
  .banner .right {
    right: 15px;
  }
  .biao40 {
    font-size: 24px;
    text-align: center;
  }
  .physWrap .physName {
    font-size: 20px;
  }
  .featWrap .featList {
    margin-top: 10px;
  }
  .featWrap .featItem {
    width: 100%;
    margin-top: 20px;
  }
  .contWrap .contItem {
    margin-right: 0px;
  }
  .contWrap .contLeft {
    width: 100%;
    justify-content: space-around;
  }
  .contWrap .contInfo {
    margin-left: 10px;
  }
  .partWrap .partItem {
    width: 32%;
    margin-right: 0;
  }
  .partWrap .partItem:nth-child(n + 7) {
    display: none;
  }
  .partWrap .partList {
    justify-content: space-between;
  }
  .partWrap .partList::after {
    width: 32%;
    content: '';
  }
  .partWrap .partTips {
    font-size: 16px;
    line-height: 26px;
  }
  .suppWrap {
    margin-top: 30px;
  }
  .suppWrap .suppCont {
    display: none;
  }
  .suppWrap .suppImg {
    display: none;
  }
  .suppWrap .suppInfo {
    width: 100%;
  }
  .suppWrap .suppMobil {
    display: flex;
  }
  .suppWrap .biao40 {
    text-align: center;
  }
  .suppWrap .suppTxt {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
  .suppWrap .suppBtn {
    margin: 0 auto;
    margin-top: 20px;
  }
  .compWrap .compBox {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .compWrap .compItem {
    width: 304px;
    flex-shrink: 0;
    margin-right: 16px;
  }
  .touchWrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .touchWrap .touchItem {
    width: 100%;
  }
  .touchWrap .touchForm {
    padding: 0 50px;
  }
  .biao36 {
    font-size: 22px;
  }
  .blowerWrap .blowName {
    font-size: 18px;
  }
  .crumbsBox {
    font-size: 16px;
    line-height: 26px;
  }
  .custWrap .custCont {
    width: 48%;
    margin-right: 0;
  }
  .custWrap .custList {
    justify-content: space-between;
  }
  .missWrap .missImg {
    width: 100%;
  }
  .emplWrap .missImg {
    width: 100%;
  }
  .teamWrap {
    margin-bottom: 30px;
  }
  .teamWrap .teamList {
    justify-content: space-between;
  }
  .teamWrap .teamItem {
    width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .deveWrap .deveRight {
    padding: 20px;
    flex-direction: column;
  }
  .deveWrap .deveImg {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .recoNews .newsItem {
    width: 100%;
    margin-bottom: 20px;
  }
  .faqWrap .faqAnsw {
    padding: 10px;
  }
  .faqWrap .faqQues {
    padding-left: 10px;
  }
  .prodDetail .xiangSuo {
    width: 96%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .induWrap .induBox {
    width: 100%;
    margin-top: 20px;
  }
  .induWrap .fangBox img {
    width: 40px;
  }
  .acceWrap .acceTit {
    font-size: 20px;
  }
  .acceWrap .chanItem {
    width: 49%;
  }
  .videoWrap .videoCate {
    justify-content: start;
    padding-left: 0;
    font-size: 18px;
  }
  .videoWrap .shipItem {
    width: 49%;
    margin-bottom: 20px;
  }
  .videoWrap .videoFang {
    width: 30px;
  }
  .contMask .formItem {
    width: 100%;
  }
  .contMask .maskBox {
    padding: 20px;
    width: 90%;
  }
  .contMask .closeBtn {
    top: 20px;
    right: 20px;
  }
  .contMask .contTit {
    font-size: 20px;
    text-align: center;
  }
  .contMask .contTit::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contMask .contTxt {
    text-align: center;
  }
  .contMask .contForm {
    margin-top: 20px;
  }
  .contMask .contSub {
    margin: 0 auto;
    margin-top: 20px;
  }
  .anliWrap {
    margin-top: 30px;
  }
  .anliWrap .anliItem {
    width: 100%;
  }
  .caseDetail .cdVideo {
    width: 100%;
  }
  .caseDetail .cdFang {
    width: 40px;
  }
  .relaWrap .relaQie {
    top: 26%;
  }
  .relaWrap .anliName {
    font-size: 18px;
    line-height: 1.2;
  }
  .prodDetail .downBtn{
      font-size: 16px;
      width: auto;
  }
}

@media (max-width: 500px) {
  .navBottWrap .navLogo {
    width: 150px;
  }
  .physWrap .physItem {
    padding: 10px;
    text-align: center;
  }
  .physWrap .physIcon {
    margin: 0 auto;
  }
  .physWrap .physName {
    text-align: center;
    justify-content: center;
  }
  .featWrap .featInfo {
    padding: 10px;
    text-align: center;
  }
  .featWrap .featName::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .featWrap .featBtn {
    margin: 0 auto;
    margin-top: 10px;
  }
  .contWrap {
    padding: 30px 0px;
  }
  .contWrap .contLeft {
    flex-direction: column;
  }
  .contWrap .contItem {
    margin-bottom: 20px;
  }
  .contWrap .contItem:last-child {
    margin-bottom: 0;
  }
  .suppWrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .suppWrap .suppItem {
    padding: 10px;
    width: 100%;
    min-height: unset;
  }
  .touchWrap .touchForm {
    padding: 0;
  }
  .footWrap .footLogo {
    width: 290px;
  }
  .mobileBox {
    width: 300px;
  }
  .phoneNav {
    padding: 10px 5px;
  }
  .phoneNav .mobilItem span {
    font-size: 20px;
  }
  .phoneNav .mobilItem p {
    font-size: 12px;
  }
  .phoneNav .mobilMenu span {
    font-size: 20px;
  }
  .phoneNav .mobilMenu p {
    font-size: 12px;
  }
  .custWrap .custFang img {
    width: 30px;
  }
  .chanList .prodImg {
    width: 100%;
  }
  .chanList .prodBtn {
    flex-direction: column;
  }
  .chanList .prodBtn a {
    margin-right: 0;
    margin-top: 10px;
  }
  .caseWrap .caseItem {
    width: 100%;
  }
  .provWrap .provItem {
    width: 100%;
  }
  .prodDetail .detaBtn {
    /*flex-direction: column;*/
    align-items: center;
  }
  .prodDetail .downBtn {
    margin-left: 10px;
    /*margin-top: 10px;*/
  }
  .prodDetail .downBtn span{
      font-size: 34px;
  }
  .prodDetail .quotBtn{
      padding: 9px;
      flex-shrink: 0;
  }
  .prodDetail .detailLeft {
    width: 100%;
  }
   .prodDetail .dtPrev {
    left: 0;
  }
  .prodDetail .dtNext {
    right: 0;
  }
  .saveBox .saveItem {
    width: 100%;
  }
  .coreBox .coreImg {
    width: 100%;
  }
  .downWrap .downCate {
    font-size: 16px;
    width: 100%;
  }
  .downWrap .downCate p {
    margin-right: 20px;
  }
  .downWrap .xiazItem {
    flex-direction: column;
  }
  .downWrap .xiazName {
    width: 100%;
    justify-content: center;
  }
  .downWrap .downBtn {
    margin-top: 10px;
  }
  .contactUs .contRight {
    padding: 20px;
  }
  .mapBox {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .searchWrap .searCate p {
    min-width: 118px;
  }
  .searchWrap .souLeft {
    margin-right: 0;
    flex-direction: column;
  }
  .searchWrap .souImg {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


@font-face {
  font-family: "iconfont";
  font-display: swap;
  src: url("../fonts/iconfont.woff2?t=1752716656995") format("woff2"), url("../fonts/iconfont.woff?t=1752716656995") format("woff"), url("../fonts/iconfont.ttf?t=1752716656995") format("truetype");
}

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

.icon-shouye10:before {
  content: "\f2d4";
}

.icon-menu:before {
  content: "\e677";
}

.icon-a-ziyuan130:before {
  content: "\e60d";
}

.icon-user1:before {
  content: "\e60b";
}

.icon-xiazai2:before {
  content: "\e60a";
}

.icon-pdf:before {
  content: "\e740";
}

.icon-xiazai-wenjianxiazai-16:before {
  content: "\e6f5";
}

.icon-fasong:before {
  content: "\e659";
}

.icon-yuyan:before {
  content: "\e85f";
}

.icon-icophone:before {
  content: "\e609";
}

.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-shangchuan:before {
  content: "\e602";
}

.icon-top2:before {
  content: "\e637";
}

.icon-biaoqian:before {
  content: "\e649";
}

.icon-twitter3:before {
  content: "\e7fd";
}

.icon-twitter4:before {
  content: "\e7fe";
}

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

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

.icon-tiktok:before {
  content: "\e8db";
}

.icon-delete:before {
  content: "\e69d";
}

.icon-chahao:before {
  content: "\e617";
}

.icon-earth:before {
  content: "\e6d5";
}

.icon-earth1:before {
  content: "\e781";
}

.icon-chahao1:before {
  content: "\e60e";
}

.icon-sousuoxiao:before {
  content: "\e6c6";
}

.icon-xialajiantouxiao-copy-copy:before {
  content: "\ec63";
}

.icon-xialajiantouxiao-copy-copy-copy:before {
  content: "\ec64";
}

.icon-jia:before {
  content: "\e642";
}

.icon-jian:before {
  content: "\e643";
}

.icon-sanjiao:before {
  content: "\e612";
}

.icon-user:before {
  content: "\e89a";
}

.icon-youxiang1:before {
  content: "\e613";
}

.icon-bianji:before {
  content: "\e603";
}

.icon-home1:before {
  content: "\e614";
}

.icon-youxiang:before {
  content: "\e605";
}

.icon-kefu:before {
  content: "\ec2e";
}

.icon-instagram2:before {
  content: "\e6fc";
}

.icon-rili:before {
  content: "\e8b4";
}

.icon-phoneLoudspeaker2:before {
  content: "\e969";
}

.icon-shoujitianchong:before {
  content: "\e6b9";
}

.icon-youxiang2:before {
  content: "\e632";
}

.icon-dianhua1:before {
  content: "\e8c3";
}

.icon-sanjiaoxia:before {
  content: "\e644";
}

.icon-youjiantou:before {
  content: "\e625";
}

.icon-youjiantou-copy:before {
  content: "\ec65";
}

.icon-a-16jijianfasong:before {
  content: "\e67d";
}

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

.icon-duigou:before {
  content: "\e663";
}

.icon-jiantou_xiangyou:before {
  content: "\eb08";
}

.icon-xiazai:before {
  content: "\e66d";
}

.icon-sousuo3:before {
  content: "\e604";
}

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

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

.icon-bofang:before {
  content: "\e615";
}

.icon-xiazai1:before {
  content: "\e618";
}

.icon-dianhuatianchong:before {
  content: "\e678";
}

.icon-dianhua:before {
  content: "\e62f";
}

.icon-weixin:before {
  content: "\e638";
}

.icon-youxiang3:before {
  content: "\e633";
}

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

.icon-youxiang4:before {
  content: "\e66b";
}

.icon-shouji:before {
  content: "\e655";
}

.icon-dianhua3:before {
  content: "\e8ad";
}

.icon-weizhi:before {
  content: "\e601";
}

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

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

.icon-sousuo2:before {
  content: "\e619";
}

.icon-earth2:before {
  content: "\e8f9";
}

.icon-jtou2:before {
  content: "\e653";
}

.icon-jtou2-copy:before {
  content: "\ec68";
}

.icon-jiantou1-copy-copy:before {
  content: "\e8b1";
}

.icon-shijian:before {
  content: "\e8b8";
}

.icon-dianhua2:before {
  content: "\e842";
}

.icon-jianhao1:before {
  content: "\e729";
}

.icon-jiahao:before {
  content: "\e630";
}

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

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

.icon-dianhua_o:before {
  content: "\ebac";
}

.icon-youxiang5:before {
  content: "\e908";
}

.icon-weizhi1:before {
  content: "\e641";
}

.box-video{
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 101%;
    min-height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: none \9;
    display: block \9\0;
}

.xun100{
    width: 100% !important;
}

.videoCont {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: calc((100vw - 1200px) / 2);
  padding-right: calc((100vw - 1200px) / 2);
}

.videoCont .videoTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 40px;
  color: #ffffff;
}

.videoCont .videoTxt {
  font-family: Inter-Regular,Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #ffffff;
  margin-top: 14px;
}

@media (max-width: 1280px) {
  .videoCont {
    padding: 10px 80px;
  }
  .videoCont .videoTit {
    font-size: 30px;
  }
  .videoCont .videoTxt {
    font-size: 20px;
    margin-top: 10px;
  }
}

@media (max-width: 1000px) {
  .videoCont {
    padding: 10px 30px;
  }
  .videoCont .videoTit {
    font-size: 22px;
  }
  .videoCont .videoTxt {
    font-size: 16px;
  }
  /*.bannerSwiper{*/
  /*    padding: 0 !important;*/
  /*}*/
  /*.bannerSwiper .swiper-wrapper{*/
  /*   position: unset !important;*/
  /*}*/
  /*.bannerSwiper .box-video{*/
  /*    position: unset !important;*/
  /*    width: 100% !important;*/
  /*    height: auto !important;*/
  /*       transform: none !important;*/
  /*  min-width: unset !important;*/
  /*  min-height: unset !important;*/
  /*}*/
  .bannerSwiper{
        padding-top: unset !important;
        height: 380px !important;    
  }
}

@media (max-width: 768px) {
  .videoCont {
    padding: 10px 15px;
  }
  .videoCont .videoTit {
    font-size: 20px;
  }
  .bannerSwiper .mobileVideo{
    display: block;
   }
   /*.bannerSwiper .pcVideo{*/
   /*    display: none;*/
   /*}*/
}

.inteWrap {
  margin-top: 108px;
}

.inteWrap .inteTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 20px;
}

.inteWrap .inteTxt a {
  color: #1a3a8d;
}

.fieldWrap {
  margin-top: 68px;
}

.fieldWrap .fielList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 36px;
}

.fieldWrap .fielList::after {
  width: 31.83%;
  content: '';
}

.fieldWrap .fielItem {
  width: 31.83%;
  margin-bottom: 25px;
  background-color: #ffffff;
  box-shadow: 0px 0px 17px 1px rgba(109, 110, 112, 0.1);
  transition: 0.2s;
}

.fieldWrap .fielItem img {
  width: 100%;
  display: block;
}

.fieldWrap .fielItem:hover {
  background-color: #1a3a8d;
}

.fieldWrap .fielItem:hover .fielName {
  color: #ffffff;
}

.fieldWrap .fielItem:hover .fielTxt {
  color: #ffffff;
}

.fieldWrap .fielInfo {
  width: 100%;
  padding: 28px 20px 23px 19px;
  transition: 0.2s;
}

.fieldWrap .fielName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  transition: 0.2s;
}

.fieldWrap .fielTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 12px;
  transition: 0.2s;
}

.fieldWrap .fielBox {
  width: 56.92%;
  margin-top: 82px;
}

.fieldWrap .fielTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #1a3a8d;
}

.fieldWrap .fielTips {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #000033;
  margin-top: 14px;
  line-height: 28px;
}

.fieldWrap .fielBott {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fieldWrap .fielEmail {
  width: 46%;
  display: flex;
  align-items: center;
}

.fieldWrap .fielEmail span {
  font-size: 34px;
  color: #1a3a8d;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  border: solid 1px #1a3a8d;
  line-height: 51px;
  text-align: center;
  flex-shrink: 0;
}

.fieldWrap .fielCont {
  flex: 1;
  margin-left: 17px;
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #666666;
}

.fieldWrap .fielCont a {
  color: #333333;
}

.fieldWrap .fielCont a:hover {
  color: #1a3a8d;
}

.fieldWrap .fielCont p:nth-child(2) {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333333;
  margin-top: 5px;
}

.fieldWrap .fielEmail:nth-child(2) span {
  font-size: 28px;
}

.systWrap {
  background-color: #f6f6f6;
  padding-top: 85px;
  padding-bottom: 57px;
  margin-top: 66px;
}

.systWrap .systImg {
  width: 61.75%;
  margin-top: 50px;
}

.systWrap .systImg img {
  width: 100%;
  display: block;
}

.systWrap .systList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 36px;
}

.systWrap .systItem {
  width: 42.83%;
  padding-left: 10px;
  margin-bottom: 27px;
}

.systWrap .systName {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #1a3a8d;
  position: relative;
}

.systWrap .systName::before {
  width: 6px;
  height: 6px;
  background-color: #1a3a8d;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
}

.systWrap .systTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 4px;
}

.pneuWrap {
  margin-top: 95px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.pneuWrap .pneuLeft {
  width: 51.5%;
}

.pneuWrap .pneuTit {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 28px;
  color: #1a3a8d;
}

.pneuWrap .pneuTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin-top: 22px;
}

.pneuWrap .pneuTxt a {
  color: #1a3a8d;
}

.pneuWrap .pneuTxt em {
  display: flex;
  align-items: start;
}

.pneuWrap .pneuTxt em::before {
  background: url("../images/duigou1.png") center center/cover no-repeat;
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 5px;
}

.pneuWrap .pneuRight {
  width: 45.5%;
}

.pneuWrap .pneuRight .pneuTit {
  color: #333333;
}

.pneuWrap .pneuRight .pneuTxt em::before {
  background: url("../images/xin3.png") center center/cover no-repeat;
}

.diffWrap {
  margin-top: 79px;
}

.diffWrap .diffTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 24px;
}

.diffWrap .diffTxt a {
  color: #1a3a8d;
}

.diffWrap .diffTxt em {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #1a3a8d;
}

.convWrap {
  background-color: #f6f6f6;
  padding-top: 75px;
  padding-bottom: 87px;
  margin-top: 92px;
}

.convWrap .convTxt {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin-top: 24px;
}

.convWrap .convTxt em {
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #1a3a8d;
}

.convWrap .convTxt a {
  color: #1a3a8d;
}

.convWrap .convBott {
  padding: 0 122px;
  margin-top: 64px;
}

.convWrap .convSwiper {
  width: 100%;
  overflow: hidden;
}

.convWrap .swiper-slide {
  font-family: Inter-Light,Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #333333;
  text-align: center;
}

.convWrap .swiper-slide img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.gasWrap {
  margin-top: 83px;
}

.gasWrap .biao36 {
  text-align: center;
}

.gasWrap .gasList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 49px;
}

.gasWrap .gasItem {
  width: 23.75%;
  margin-right: 1.6%;
  margin-bottom: 27px;
}

.gasWrap .gasImg {
  width: 100%;
  display: block;
  overflow: hidden;
}

.gasWrap .gasImg img {
  width: 100%;
  display: block;
}

.gasWrap .gasImg:hover img {
  transform: scale(1.1);
}

.gasWrap .gasName {
  margin-top: 19px;
  font-family: Inter-Bold,Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gasWrap .gasName a {
  color: #333333;
  display: block;
}

.gasWrap .gasName a:hover {
  color: #1a3a8d;
}

.gasWrap .gasItem:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 1280px) {
  .inteWrap {
    margin-top: 50px;
  }
  .fieldWrap {
    margin-top: 50px;
  }
  .fieldWrap .fielInfo {
    padding: 15px;
  }
  .fieldWrap .fielName {
    font-size: 18px;
  }
  .fieldWrap .fielTxt {
    margin-top: 10px;
  }
  .fieldWrap .fielBox {
    margin-top: 30px;
  }
  .fieldWrap .fielTit {
    font-size: 24px;
  }
  .fieldWrap .fielBott {
    margin-top: 20px;
  }
  .fieldWrap .fielCont {
    font-size: 16px;
  }
  .fieldWrap .fielCont p:nth-child(2) {
    font-size: 16px;
  }
  .systWrap {
    margin-top: 30px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .systWrap .systItem {
    width: 48%;
    margin-bottom: 20px;
  }
  .systWrap .systName {
    font-size: 18px;
  }
  .systWrap .systName::before {
    top: 6px;
  }
  .pneuWrap {
    margin-top: 50px;
  }
  .pneuWrap .pneuTit {
    font-size: 20px;
  }
  .diffWrap {
    margin-top: 50px;
  }
  .diffWrap .diffTxt em {
    font-size: 18px;
  }
  .convWrap {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .convWrap .convBott {
    padding: 0 80px;
    margin-top: 30px;
  }
  .convWrap .swiper-slide {
    font-size: 18px;
  }
  .convWrap .convTxt em {
    font-size: 18px;
  }
  .gasWrap {
    margin-top: 50px;
  }
}

@media (max-width: 1000px) {
  .inteWrap {
    margin-top: 30px;
  }
  .inteWrap .biao36 {
    text-align: center;
  }
  .fieldWrap {
    margin-top: 30px;
  }
  .fieldWrap .biao36 {
    text-align: center;
  }
  .fieldWrap .fielList {
    margin-top: 30px;
  }
  .fieldWrap .fielItem {
    width: 49%;
  }
  .fieldWrap .fielBox {
    width: 100%;
    margin-top: 10px;
  }
  .fieldWrap .fielTit {
    font-size: 20px;
    text-align: center;
  }
  .fieldWrap .fielTips {
    text-align: center;
    margin-top: 10px;
  }
  .systWrap {
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .systWrap .biao36 {
    text-align: center;
  }
  .systWrap .systImg {
    margin: 0 auto;
    margin-top: 30px;
  }
  .pneuWrap {
    flex-direction: column;
    margin-top: 30px;
  }
  .pneuWrap .pneuLeft {
    width: 100%;
  }
  .pneuWrap .pneuRight {
    width: 100%;
    margin-top: 30px;
  }
  .diffWrap {
    margin-top: 30px;
  }
  .convWrap {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .convWrap .convBott {
    padding: 0 30px;
  }
  .convWrap .swiper-slide {
    font-size: 16px;
  }
  .convWrap .swiper-slide img {
    margin-bottom: 10px;
  }
  .gasWrap {
    margin-top: 30px;
    margin-bottom: -50px;
  }
  .gasWrap .gasList {
    justify-content: space-between;
    margin-top: 30px;
  }
  .gasWrap .gasList::after {
    width: 32%;
    content: '';
  }
  .gasWrap .gasItem {
    width: 32%;
    margin-right: 0;
  }
  .gasWrap .gasName {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .fieldWrap .fielItem {
    width: 100%;
  }
  .fieldWrap .fielInfo {
    padding: 10px;
    text-align: center;
  }
  .systWrap .systImg {
    width: 100%;
  }
  .systWrap .systItem {
    width: 100%;
  }
  .systWrap .systList {
    margin-top: 30px;
  }
  .convWrap .convBott {
    padding: 0 15px;
  }
  .gasWrap .gasItem {
    width: 49%;
  }
}

@media (max-width: 500px) {
  .fieldWrap .fielEmail {
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
  }
  .fieldWrap .fielCont {
    margin-left: 0;
    width: 100%;
    flex: unset;
    text-align: center;
    margin-top: 10px;
  }
  .fieldWrap .fielBott {
    margin-top: 0;
  }
  .gasWrap .gasName {
    font-size: 14px;
    line-height: 24px;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  /*background: white;*/
  /*border-radius: 15px;*/
  /*width: 90%;*/
  /*max-width: 700px;*/
  
  width: 993px;
  min-height: 120px;
  height: 556px;
  /*overflow: hidden;*/
  transform: scale(0.8);
  transition: transform 0.4s ease;
  /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);*/
}

.modal video{
    width: 100%;
    height: 100%;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 14px;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 200;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.modal-body {
  /*padding: 30px;*/
  /*background: #f5f7fa;*/
  width: 100%;
  height: 100%;
}

.loader-container {
  display: none;
  flex-direction: column;
  align-items: center;
  /*margin-bottom: 20px;*/
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #1a2a6c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 16px;
  color: #555;
}

.video-container {
  /*display: none;*/
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

video {
  width: 100%;
  display: block;
}

.video-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.control-btn {
  background: #1a2a6c;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.control-btn:hover {
  background: #2a3a9c;
}

@media (max-width: 1000px){
    .modal{
        width: 90%;
        height: auto;
    }
}

@media (max-width: 600px) {
  .modal-title {
    font-size: 18px;
  }
  .loader {
    width: 40px;
    height: 40px;
  }
}


.navIcon{
    position: absolute;
    right: -20px;
    font-size: 12px;
    color: #333333;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

@media(max-width: 1280px){
    .navIcon{
        right: -15px;
    }
}