@charset "UTF-8";
@font-face {
  font-family: "Ltao-Bold";
  src: url("../font/Lato-Medium.ttf");
}
@font-face {
  font-family: "Lato-Medium";
  src: url("../font/Lato-Medium.ttf");
}
@font-face {
  font-family: "Lato-Regular";
  src: url("../font/Lato-Regular.ttf");
}
@font-face {
  font-family: "StyreneAWeb-Regular";
  src: url("../font/StyreneAWeb-Regular.ttf");
}
@font-face {
  font-family: "StyreneAWeb-Medium";
  src: url("../font/StyreneAWeb-Medium.ttf");
}
* {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* 保持图片缩小后不模糊 */
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.panel {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.img {
  font-size: 0;
}

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

.container {
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
}

.header {
  padding: 0 5%;
  width: 100%;
  height: 70px;
  background-color: #001E26;
}
.header .logo {
  width: 165px;
}
.header .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header .links {
  display: none;
}

.logo_line {
  -webkit-animation: flicker 0.5s ease infinite;
     -moz-animation: flicker 0.5s ease infinite;
       -o-animation: flicker 0.5s ease infinite;
          animation: flicker 0.5s ease infinite;
}

@-webkit-keyframes flicker {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes flicker {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes flicker {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flicker {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gh {
  display: block;
  position: relative;
  height: 35px;
  width: 35px;
  z-index: 100;
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}

.gh.selected {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gh.selected a {
  background-color: transparent;
}

.gh.selected a::before,
.gh.selected a::after {
  top: 0;
}

.gh.selected a::before {
  -webkit-transform: translateY(0px) rotate(-45deg);
  -moz-transform: translateY(0px) rotate(-45deg);
  -o-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
}

.gh.selected a::after {
  -webkit-transform: translateY(0px) rotate(45deg);
  -moz-transform: translateY(0px) rotate(45deg);
  -o-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}

.gh a {
  display: block;
  height: 2px;
  margin-top: -2px;
  position: relative;
  top: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  width: 60%;
  margin: 0 20%;
  background: #fff;
}

.gh a::before,
.gh a::after {
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  -o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  width: 100%;
  background: #fff;
}

.gh a::before {
  top: -8px;
}

.gh a::after {
  top: 8px;
}

#language .active {
  color: #fff;
  text-decoration: underline;
}

#nav {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#nav .active {
  text-decoration: underline;
}

.page-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.aside-nav-wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.aside-nav-wrap.show {
  opacity: 1;
  visibility: visible;
}
.aside-nav-wrap.show .aside-nav-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.aside-nav-wrap.show .close-btn {
  opacity: 1;
  visibility: visible;
}
.aside-nav-wrap .close-btn {
  top: 0;
  left: 0;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.aside-nav-wrap .close-btn svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
.aside-nav-wrap .aside-nav-box {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 45px;
  width: 100%;
  height: 100%;
  background: #00171d;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
     -moz-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.aside-nav-wrap .links {
  margin-top: 50px;
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.aside-nav-wrap .links a {
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 50%;
  line-height: 50px;
}
.aside-nav-wrap .links a::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/link.png") no-repeat left center;
  -o-background-size: cover;
     background-size: cover;
}

@-webkit-keyframes downMove {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes downMove {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes downMove {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes downMove {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.more-down {
  position: absolute;
  left: 50%;
  bottom: 100px;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
}

.more-down i {
  margin: 0 auto;
  display: block;
  width: 25px;
  height: 16px;
  background: url("../images/more.png") no-repeat;
  -o-background-size: cover;
  background-size: cover;
  -webkit-animation: downMove 2s infinite;
  -moz-animation: downMove 2s infinite;
  -o-animation: downMove 2s infinite;
  animation: downMove 2s infinite;
}

.more-down i:nth-child(1) {
  -moz-animation-delay: -1s;
  -o-animation-delay: -1s;
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.more-down i:nth-child(2) {
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.more-down i:nth-child(3) {
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #fff;
}

textarea {
  resize: none;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
}

.home-section5 .swiper-pagination {
  bottom: -50px;
}

.page-menu {
  margin-top: 50px;
  width: 100%;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0;
     -moz-transition-delay: 0;
       -o-transition-delay: 0;
          transition-delay: 0;
  z-index: 2;
}

.page-menu.open {
  opacity: 1;
  visibility: visible;
}

.page-menu ul {
  padding-bottom: 50px;
  width: 100%;
  height: 100%;
  font-size: 15px;
  word-break: break-word;
  text-align: center;
}

.page-menu a {
  display: block;
  padding: 10px 20px;
}

.home-section1.ani-slide .menu-text span, .home-section2.ani-slide .menu-text span {
  color: #fff;
}
.home-section1.ani-slide .page-menu, .home-section2.ani-slide .page-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
     -moz-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.map {
  margin-bottom: 30px;
  width: 100%;
  height: 175px;
  background: url("../images/map.png") no-repeat center;
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
}

.map-china-dot {
  top: 36%;
  left: 77%;
}

.map-germany-dot {
  top: 24%;
  left: 51%;
}

.map-france-dot {
  top: 22%;
  left: 36.5%;
}

.map-belgium-dot {
  top: 20%;
  left: 49%;
}

.about-map .map-china-dot {
  top: 36%;
  left: 77.5%;
}

.about-map .map-germany-dot {
  top: 24%;
  left: 53%;
}

.about-map .map-france-dot {
  top: 21%;
  left: 36.5%;
}

.about-map .map-belgium-dot {
  top: 19.5%;
  left: 50%;
}

.home-swiper .sub-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-family: "StyreneAWeb-Medium";
  text-align: center;
}

.home-section4.ani-slide li {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.home-section4 li {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translate3d(0, 120px, 0);
     -moz-transform: translate3d(0, 120px, 0);
          transform: translate3d(0, 120px, 0);
  opacity: 0;
  visibility: hidden;
  height: 135px;
}

.home-section4 li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
     -moz-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.home-section4 li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
     -moz-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.home-section4 li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
     -moz-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.home-section4 li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
     -moz-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.menu-text {
  text-align: center;
}

.menu-text span {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.home-section2 .menu-text span:nth-child(1) {
  opacity: 0;
  color: #fff;
  -webkit-transition: opacity 600 ease;
  -o-transition: opacity 600 ease;
  -moz-transition: opacity 600 ease;
  transition: opacity 600 ease;
}

.home-section2.ani .menu-text span {
  opacity: 1;
}

.service-box {
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.service-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.contact-tabs {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  color: #2d4c55;
}

.contact-tabs li {
  display: inline-block;
}
.contact-tabs li.active {
  color: #fff;
}

.contact-tabs a {
  display: block;
  padding: 0 10px;
}

.home-section7 .contact-item {
  padding: 30px 0;
  display: none;
}

.home-section7 .contact-item img {
  margin-top: 2px;
  margin-right: 15px;
  display: block;
  width: 20px;
}

.home-section6 .sub-title {
  margin-bottom: 40px;
}

.home-section6 .contact-item-tit {
  margin-bottom: 30px;
  font-size: 20px;
}

.home-section6 .contact-item {
  margin-bottom: 50px;
}

.home-section6 .contact-item li {
  margin-bottom: 20px;
}

.home-section6 .contact-item img {
  display: block;
  margin-right: 15px;
  width: 20px;
}

.home-section6 .contact-wrap {
  height: 100%;
}

.home-section6 .contact-box {
  overflow-y: auto;
  height: 485px;
}

.home-section6 .contact-box::-webkit-scrollbar {
  width: 4px;
}

.home-section6 .contact-box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #fff;
}

.home-section6 .contact-box::-webkit-scrollbar-track {
  background: #203a41;
  width: 1px;
}

.panel-top .img {
  top: 50%;
  right: 0;
}

.team-wrap li {
  position: relative;
}

.team-wrap a {
  position: relative;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: rotateY(0);
     -moz-transform: rotateY(0);
          transform: rotateY(0);
  -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
          backface-visibility: hidden;
}

.team-wrap .txt p:nth-child(2) {
  min-height: 50px;
}

.team-wrap .mark {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.88vw;
  width: 100%;
  height: 100%;
  background: #13343d;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -1px;
  word-spacing: 4px;
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow-y: auto;
}

.team-wrap .mark::-webkit-scrollbar {
  width: 6px;
}

.team-wrap .mark::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.team-wrap li:hover a {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.team-wrap li:hover .mark {
  -webkit-transform: rotateY(0);
     -moz-transform: rotateY(0);
          transform: rotateY(0);
}/*# sourceMappingURL=style.css.map */