@font-face {
  font-family: 'DINPro-Bold';
  src: url("/lib/fonts/DINPro-Bold.otf");
  font-display: swap;
}

@font-face {
  font-family: 'DINPro-Black';
  src: url("/lib/fonts/DINPro-Black.otf");
  font-display: swap;
}

@font-face {
  font-family: 'DINPro-Regular';
  src: url("/lib/fonts/DINPro-Regular.otf");
  font-display: swap;
}

@font-face {
  font-family: 'DINPro-Medium';
  src: url("/lib/fonts/DINPro-Medium.otf");
  font-display: swap;
}

@font-face {
  font-family: 'DINPro-Light';
  src: url("/lib/fonts/DINPro-Light.otf");
  font-display: swap;
}


@keyframes animate_shake {
  0% {

    transform: translate3d(0, 0, 0);
  }

  5% {

    transform: translate3d(0px, -15px, 0);
  }

  10% {

    transform: translate3d(0px, 0, 0);
  }

  15% {
    transform: translate3d(0px, 15px, 0);

  }

  20% {
    transform: translate3d(0px, 0, 0);

  }
}

.animate_shake {

  animation: animate_shake 5s infinite;
}


body {
  max-width: 1920px;
  font-family: 'DINPro-Regular';
  color: #101010;
}

.flex {
  display: flex;
}

.com-container {
  max-width: 1720px;
  padding: 0 40px;
  margin: auto;
}

.com-subtitle {
  text-align: center;
  font-size: 28px;
  font-family: 'DINPro-Medium';
}

.com-title {
  margin: auto auto 4.16665vw;
  text-align: center;
  font-family: 'DINPro-Medium';
  font-size: 48px;
  line-height: 64px;
}

.title-xian {
  width: 60px;
  height: 2px;
  display: flex;
  justify-content: center;
  margin: 35px auto;
  background: #101010;
}

.com-text {
  margin: auto;
  text-align: center;
  font-size: 20px;
  color: #3a3a3a;
  line-height: 1.5;
}

.com-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  max-width: 300px;
  width: 100%;
  margin: 140px auto auto;
  border: 1px solid #101010;
  transition: all 1s;
  cursor: pointer;
}

.com-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.com-btn img {
  display: none;
  transition: all 1s;
}

.com-btn.active {
  background: #10b28c;
  border: none;
}

.com-btn:hover a {
  color: #fff;
  transform: translateX(-10px);
  transition: all 1s;
}

.com-btn:hover img {
  display: block;
  transition: all 1s;
}

.com-btn:hover img.active {
  transform: translateX(10px);
  transition: all 1s;
}

.text-overflow {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1279px) {
  .com-title {
    font-size: 36px;
  }

  .com-btn,
  .view-more-detail,
  .quote-btn {
    margin: 80px auto auto !important;
  }
}

@media (max-width: 1024px) {
  .com-title {
    line-height: 50px;
  }

  .title-xian {
    margin: 30px auto;
  }
}

@media (max-width: 767px) {
  .com-container {
    padding: 0 15px;
  }

  .com-subtitle {
    font-size: 20px;
  }

  .com-title {
    font-size: 24px;
    line-height: 1.5;
  }

  .com-text {
    font-size: 16px;
  }

  .com-btn,
  .view-more-detail,
  .quote-btn {
    margin: 20px auto auto auto !important;

  }

  .com-btn {
    height: 50px;
    max-width: 150px !important;
  }
}












/* 头部 start */
/* pc端 strat */
.fixed {
  position: fixed;
  top: 0;
  z-index: 22;
  width: 100%;
  height: 90px;
  background: rgba(16, 16, 16, .8);
  /* background: linear-gradient(to bottom, rgba(16, 16, 16, 1), rgba(16, 16, 16, 0)); */
}

.fixed.active {
  height: 80px;
  background: rgba(16, 16, 16, 0.8);
}

.pc-header {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;

}

.pc-header .logo img {
  width: 90%;
}

.header-content {
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.header-left {
  align-items: center;
}

.menu-wrapper {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.menu-wrapper>.menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 4.166665vw;
}

.menu-wrapper>.menu-item>a {
  color: rgba(255, 255, 255, 1);
}

.current-menu-item>a {
  color: #10b28c !important;
}

.menu-wrapper>.menu-item:hover a {
  color: #10b28c;
}

/* 二级菜单下的li */
.sub-menu {
  /* padding: 10px 0px; */
}

.sub-menu>.menu-item {
  height: 48px;
  /* padding: 10px 15px; */
}

.sub-menu>.menu-item>a {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  /* min-width: 220px;
  max-width: 280px; */
  padding: 0px 30px;

  color: #101010 !important;
}

.sub-menu>.menu-item:hover>a {
  color: #10b28c !important;
}



/* 分享图标 */
.header-share {
  align-items: center;
  margin-left: 0.520835vw;
}

.header-share p {
  margin-right: 3vw;
}

.header-fenge {
  display: flex;
  align-items: center;
  height: 16px;
  width: 1px;
  margin: auto 2.08334vw auto 1.04167vw;
  background: rgba(255, 255, 255, .3);
}

.header-icon {
  align-items: center;
}

.nav-search {
  margin-right: 1.562505vw;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: auto;
  /* padding: 10px 0; */
  display: none;
  box-shadow: 0 0 5px rgb(47 64 82 / 10%);
  background: #fff;
}

/* pc端 end */

/* 手机端 start */
/* 手机端头部start */
.brick {
  display: none;
  height: 70px;
}

@media (max-width: 1279px) {
  .brick {
    display: block;
  }
}



.mobile-header {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 10, 32, 0.1);
}

.mobile-header-content {
  width: 100%;
}


.mobile-header-content .logo img {
  width: 50%;
}

.mobile-header .content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}

/* 导航列表 start */
.mobile-menu-container {
  height: 100%;
}

.mobile-header .sub-menu.active {
  transition: none;
}

.nav-mobile {
  position: fixed;
  left: 0;
  top: 0;
  /* top: 44px; */
  z-index: 99999;
  /* display: flex; */
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-mobile.active {
  opacity: 1 !important;
  pointer-events: auto;
}

.nav-mobile.active .nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.nav-mobile .nav {
  width: 80%;
  max-width: 300px;
  height: 100%;
  overflow: auto;
  margin: auto 0;
  padding: 0 15px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-mobile .menu-wrapper {
  min-height: 80%;
  height: 85%;
  width: 100%;
  display: inline-block;
}

.nav-mobile .menu-item:first-child {
  margin-top: 14px;
  border-top: 0;
}

.nav-mobile .menu-wrapper>.menu-item {
  margin-left: 0;
}

.nav-mobile .menu-wrapper .menu-item a {
  color: #101010;
  /* width: 100%; */
  display: flex;
  padding: 0;
}

.nav-mobile .sub-menu .menu-item:hover {
  color: #101010;
}

/* 手机端一级导航 start */
.nav-mobile .menu-wrapper .menu-item {
  height: auto;
  padding: 15px 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid #cccccc;
}

.nav-mobile .menu-wrapper .menu-item:first-child {
  border-top: none;
}

/* 手机端一级导航 end */


/* 手机端二级导航 start */
.nav-mobile .sub-menu {
  position: relative;
  box-shadow: none;
  width: 100%;
  display: none;
}

.nav-mobile .sub-menu .menu-item {
  padding-left: 10px;
  border-top: none;
}

.nav-mobile .sub-menu .menu-item:first-child {
  margin-top: 0;
}

/* 手机端二级导航 end */

/* 箭头 */
.nav-mobile .nav .menu-item-has-children::after {
  position: absolute;
  content: '';
  top: 10px;
  right: 2px;
  height: .7rem;
  width: .7rem;
  margin-top: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all .8s;
}
.nav-mobile .nav .menu-item-has-children> a.active{
  margin-bottom: 15px;
}

.nav-mobile .nav .menu-item-has-children> a{
  transition: all 0.5s;
}

.nav-mobile .nav::-webkit-scrollbar {
  display: none;
}

.nav-mobile .nav .menu-item-has-children.active::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* 箭头 end*/
.mobile-phone a {
  align-items: center;
}

.mobile-phone a img {
  margin-right: 10px;
}

/* 导航列表 end */

/* 手机 search 、语言、购物 start  */
.mobile-header .nav-others {
  align-items: center;
}

.mobile-header .nav-others .nav-search {
  /* margin-right: 0; */
  margin: auto 15px;
  flex-shrink: 0;
}

.mobile-header .nav-others img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-left:10px;
}

/* 手机 search 、语言、购物 end */


/* 导航图标 start */
.mobile-nav-btn {
  width: 20px;
  height: 18px;
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-nav-btn span {
  display: inline-block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #10b28c;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.mobile-nav-btn.active span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.mobile-nav-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-btn.active span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(45deg);
  transform: translateY(-8.5px) rotate(45deg);
}

/* 导航图标 end */

.mobile-header .header-share p {
  width: 24px;
}

.mobile-header .header-share p svg {
  width: 100%;
}

/* 手机端头部 end */

/* 语言 */
.switcher {
  width: 130px !important;
  position: relative !important;
  overflow: visible !important;
}

.switcher .option{
  position: absolute !important;
  width: 130px !important;
}

.switcher .selected a{
  width: 120px !important;
}
.switcher .selected img {
  margin-left:5px !important;
  margin-right:5px !important;

}


/* 头部 end */


/* 底部 start */

.footers {
  /* display: none; */
  background: #101010;
}

.footers-container {
  padding:4.20835vw 0 0;
}


.footer-logo a {
  display: flex;
  justify-content: center;
  margin-bottom: 2.08334vw;
}

.footer-share-div {
  align-items: center;
  justify-content: center;
  margin-bottom: 2.08334vw;
}

.footer-share-xian {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-share {
  margin: 0 1.04167vw 0 3.12501vw;
}

.footer-share a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2.08334vw;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
}

.footer-share a:hover svg {
  fill: #10b28c;
}

.footer-share a:hover {
  border-color: #10b28c;
}

.copyright {
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.footer-link {
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 3.12501vw;
}

.footer-link-content {
  width: 100%;
  max-width: 1720px;
  margin: auto;
  padding: 0 40px;
  justify-content: center;
}

.footer-link ul {
  display: flex;
}

.footer-link ul li {
  position: relative;
  margin-right: 3.645845vw;
  padding-left: 10px;
}

.footer-link ul li:last-child {
  margin-right: 0;
}

.footer-link ul li::before {
  position: absolute;
  content: '';
  top: 12px;
  left: 0;
  width: 5px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.footer-link ul li:hover::before {
  background: #10b28c;
}


.footer-link ul li:hover a {
  color: #10b28c;
}

.footer-link ul li a {
  color: rgba(255, 255, 255, .5);
}

.footer-others  {
  justify-content: center;
  padding: 2.604175vw 0;
}

.footer-others a {
  color: rgba(255, 255, 255, .5);
  margin-left: 24px;
}

.footer-others a:hover {
  color: #10b28c;
}


@media (max-width: 767px) {

  .header-left {
    width: 80px;
  }

  .mobile-header-content .logo img {
    width: 100%;
  }

  .mobile-header .nav-others .nav-search {
    margin: auto 15px !important;
  }

  .mobile-header .content-container {
    padding: 20px 15px;
  }


  .footer-link-content {
    flex-direction: column;
  }

  .footer-others {
    margin-top: 20px;
    justify-content: center;
  }

  .footer-link-content {
    align-items: center;
  }

  .footer-share {
    margin: 20px 20px 20px 30px;
  }

  .footers-container {
    padding: 30px 0 0;
  }

  .footer-link ul li {
    margin-bottom: 20px;
  }
}

/* 底部 end */