:root {
  --main-color: #d2a36c;
  --color-blue: #3fc6ff;
  --color-dark: #1d1d1f;
  --color-dark-grey: #666;
  --color-grey: #a7a9ad;
  --bezier-mazel: cubic-bezier(0, 0, 0.58, 1);
  --bezier-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --animation-duration: 0.275s;
  --f-size-13: 13px;
  --f-size-14: 14px;
  --f-size-16: 16px;
  --f-size-18: 18px;
  --f-size-20: 20px;
  --f-size-22: 22px;
  --f-size-24: 24px;
  --f-size-26: 26px;
  --f-size-28: 28px;
  --f-size-30: 30px;
  --f-size-36: 36px;
  --f-size-40: 40px;
  --f-size-45: 45px;
  --f-size-48: 48px;
  --f-size-58: 58px;
  --f-size-68: 68px;
  --f-size-82: 82px;
  --nav-height: 64px;
}
html,
body,
div,
p,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
button,
textarea,
iframe,
table,
th,
td,
header,
section,
article {
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Arial", "微软雅黑", "黑体",
    "Helvetica Neue", "Source Han Sans CN", "sans-serif", "Hiragino Sans GB";
  font-size: var(--f-size-14);
  line-height: 1.5;
  color: var(--color-dark-grey);
  overflow-x: hidden;
}
img {
  width: 100%;
  border: 0 none;
  vertical-align: top;
  outline: none;
}
ul,
li,
ol,
dl {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
input,
button,
textarea {
  font-family: "PingFang SC", "Microsoft YaHei", "Arial", "Sans-serif",
    "Helvetica";
  border-radius: 0;
  border: 0;
}
button {
  cursor: pointer;
}
i,
em,
cite,
u {
  font-style: normal;
}
input:focus,
textarea:focus {
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
a {
  color: var(--color-dark-grey);
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: var(--main-color);
}
a:focus {
  outline: none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  font-size: 0;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
a,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  :root {
    --nav-height: 50px;
    --f-size-14: 13px;
    --f-size-16: 14px;
    --f-size-18: 14px;
    --f-size-20: 14px;
    --f-size-22: 18px;
    --f-size-24: 20px;
    --f-size-30: 22px;
    --f-size-36: 24px;
    --f-size-40: 24px;
  }
}
@media screen and (max-width: 375px) {
  :root {
    --f-size-14: 12px;
    --f-size-16: 13px;
    --f-size-22: 16px;
  }
}
@media screen and (max-width: 320px) {
  :root {
    --f-size-14: 12px;
    --f-size-16: 12px;
  }
}
body.modal-open {
  position: fixed;
  width: 100%;
}
p {
  text-align: justify !important;
}
.header {
  position: fixed;
  height: var(--nav-height);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
}
.header .wrap-box {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: var(--nav-height);
}
.header::before,
.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.header::before {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.header::after {
  top: 0;
  background: #141414;
  transition: transform 0.275s ease-in;
  transform: translate3d(0, -150%, 0);
}
.header.scrolling::after {
  transform: translate3d(0, 0, 0);
}
.header a {
  color: rgba(255, 255, 255, 0.7);
}
.header a:hover {
  color: #fff;
}
.sup {
  transform: scale(0.75) translateY(-14%);
  display: inline-block;
}
.logo {
  width: 129px;
  height: 28px;
  background: url(../images/logo@2x.png) no-repeat;
  display: block;
  background-size: 100% auto !important;
  margin-right: 40px;
}
.nav {
  margin-left: auto;
  padding-right: 20px;
}
.nav ul {
  display: flex;
}
.nav ul li {
  position: relative;
  margin-left: 40px;
}
.nav ul li.current a.text-link,
.nav ul li:hover a.text-link {
  font-weight: bold;
  color: #fff;
}
.nav ul li.current a.text-link::after,
.nav ul li:hover a.text-link::after {
  transform: scaleX(1);
}
.nav ul li a.text-link {
  position: relative;
  display: block;
}
.nav ul li a.text-link::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  background-color: var(--main-color);
  transition: transform 0.275s linear;
  transform: scaleX(0);
}
.nav ul li .icon-arrow {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 24;
}
.nav ul li .drop-menu {
  width: 170px;
  height: 0;
  overflow: hidden;
  background: #101010;
  position: absolute;
  left: -20px;
  top: var(--nav-height);
  transition: transform 0.275s ease-out, opacity 0.275s linear;
  transform: translate3d(0, 20%, 0);
  opacity: 0;
  z-index: -1;
}
.nav ul li .drop-menu a {
  line-height: 44px;
  display: block;
  padding: 0 20px;
  font-size: 13px;
  position: relative;
}
.nav ul li .drop-menu .drop-menu-item {
  position: relative;
}
.nav ul li .drop-menu .drop-menu-item a.current {
  color: #fff;
  font-weight: 600;
}
.nav ul li .drop-menu .drop-menu-item:hover > a {
  color: #fff;
  font-weight: 600;
}
.nav ul li .drop-menu .drop-menu-item:hover .drop-s-list {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(1) .drop-s-list {
  top: 0px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(2) .drop-s-list {
  top: -44px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(3) .drop-s-list {
  top: -88px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(4) .drop-s-list {
  top: -132px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(5) .drop-s-list {
  top: -176px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(6) .drop-s-list {
  top: -220px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(7) .drop-s-list {
  top: -264px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(8) .drop-s-list {
  top: -308px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(9) .drop-s-list {
  top: -352px;
}
.nav ul li .drop-menu .drop-menu-item:nth-child(10) .drop-s-list {
  top: -396px;
}
.nav ul li .drop-menu .drop-s-list {
  background: #101010;
  position: absolute;
  width: max-content;
  left: 170px;
  top: 0;
  transition: transform 0.275s ease-out, opacity 0.275s linear;
  transform: translate3d(0, 40%, 0);
  opacity: 0;
  z-index: -1;
}
.nav ul li:hover .drop-menu {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  height: auto;
  overflow: initial;
}
.lang-switch {
  padding-left: 26px;
  background: url(../images/language-icon@2x.png) no-repeat left 50%;
  background-size: 16px 16px;
}
.icon-arrow {
  width: 44px;
  height: 44px;
  background: url(../images/arrow-r@2x.png) no-repeat center center;
  display: block;
  background-size: 5px 8px;
}
.wrap-box {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
.top-banner {
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.top-banner.banner-index {
  height: 100vh;
}
.top-banner.banner-index .banner-slogan {
  height: 37.037%;
  max-width: 836px;
  min-width: 575px;
  width: 43.5vw;
}
.top-banner .scroll-down-tips {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 100;
  font-size: var(--f-size-20);
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-banner .scroll-down-tips .txt {
  margin-bottom: 5px;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: center bottom;
  animation-name: go_down_txt;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}
.top-banner .scroll-down-tips .arrow-down {
  width: 20px;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: center bottom;
  animation-name: go_down_animation;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}
.column-banner {
  height: 28.125vw;
  min-height: 540px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #000;
  color: #fff;
}
.column-banner .wrap-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.column-banner .inner-content {
  max-width: 930px;
  margin-top: 30px;
}
.column-banner .inner-content .txt {
  font-size: var(--f-size-16);
  line-height: 1.4;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.column-banner.align-l .wrap-box {
  justify-content: flex-start;
}
.column-banner.align-l .wrap-box .banner-title {
  text-align: left;
}
.column-banner.align-l .inner-content {
  max-width: 640px;
}
.column-banner.align-l::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  bottom: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  z-index: 1;
}
.column-banner.full-screen {
  height: 100vh;
}
.column-banner.banner-techno .wrap-box {
  align-items: flex-end;
}
.column-banner.banner-techno .inner-content {
  padding-bottom: 8.796vh;
}
.banner-title {
  font-size: var(--f-size-40);
  color: #fff;
  font-weight: 700;
}
.banner-title .sup {
  transform: scale(0.75) translateY(-14%);
}
@keyframes go_down_txt {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  10% {
    transform: translateY(0px);
  }
  30% {
    opacity: 0.5;
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  57% {
    opacity: 1;
    transform: translateY(-7px);
  }
  64% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes go_down_animation {
  0% {
    opacity: 1;
    transform: scale(1, 1) translateY(0px);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0px);
  }
  30% {
    opacity: 0.3;
    transform: scale(0.9, 1.1) translateY(-20px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0px);
  }
  57% {
    opacity: 1;
    transform: scale(1, 1) translateY(-7px);
  }
  64% {
    transform: scale(1, 1) translateY(0px);
  }
  100% {
    transform: scale(1, 1) translateY(0px);
  }
}
.footer {
  background: #101010;
}
.footer .wrap-box {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer .logo {
  width: 156px;
  height: 36px;
  opacity: 0.5;
  margin-bottom: 36px;
}
.footer .mission {
  max-width: 413px;
  padding-bottom: 36px;
}
.footer .mission p {
  letter-spacing: 2px;
  padding-top: 3px;
}
.footer .share-bar {
  position: absolute;
  z-index: 50;
  bottom: 0;
  padding-bottom: 40px;
  display: flex;
}
.footer .share-bar a {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.275s linear;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .share-bar a .icon {
  width: 20px;
  height: 18px;
  display: block;
}
.footer .share-bar a .code-box {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  bottom: 44px;
  transform-origin: bottom center;
  transition: transform 0.275s ease-in;
  transform: translate(-50%, 0) scale(0);
}
.footer .share-bar a .code-box::after {
  content: "";
  border-top: 5px #fff solid;
  border-left: 5px rgba(0, 0, 0, 0) solid;
  border-right: 5px rgba(0, 0, 0, 0) solid;
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
}
.footer .share-bar a:hover {
  background: rgba(255, 255, 255, 0.4);
}
.footer .share-bar a:hover .code-box {
  transform: translate(-50%, 0) scale(1);
}
.footer .bot-nav {
  display: flex;
}
.footer .bot-nav li {
  margin-left: 90px;
}
.footer .bot-nav li h3 {
  font-size: 15px;
}
.footer .bot-nav li h3 a {
  color: #fff;
}
.footer .bot-nav li a {
  line-height: 44px;
  display: block;
}
.footer .bot-nav li .list a {
  display: block;
  line-height: 20px;
  padding: 7px 0;
}
.footer .bot-nav li:first {
  margin-left: 0;
}
.copyright {
  text-align: center;
  padding: 20px 0 50px 0;
  border-top: 1px rgba(255, 255, 255, 0.11) solid;
}
.banner-slogan {
  position: relative;
  z-index: 100;
}
.bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.bg-img .img-box {
  height: 100%;
}
.bg-img img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.grey-bg {
  background: #ededed;
}
.black-bg {
  background: #000;
}
.m-nav-switch {
  width: 44px;
  height: 44px;
  position: relative;
  display: none;
}
.m-nav-switch span {
  width: 16px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  left: 15px;
  transition: transform 0.375s var(--bezier-mazel);
}
.m-nav-switch span:nth-child(1) {
  top: 17px;
  transition-delay: 0;
}
.m-nav-switch span:nth-child(2) {
  top: 22px;
  transform-origin: left center;
  transition-delay: 0.275s;
}
.m-nav-switch span:nth-child(3) {
  top: 27px;
  transition-delay: 0;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.video-bg .video {
  height: 100%;
  width: 100%;
  line-height: 0;
  object-fit: cover;
  pointer-events: none;
}
.video-bg img {
  height: 100%;
  object-fit: cover;
}
.cont-title {
  font-size: var(--f-size-36);
  color: var(--color-dark);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
.cont-title .sup {
  transform: scale(0.75) translateY(-7px);
}
.cont-title.white {
  color: #fff;
}
.subtitle {
  font-size: var(--f-size-14);
  text-align: center;
  line-height: 20px;
  padding-top: 12px;
}
.more-btn {
  padding-right: 16px;
  font-size: var(--f-size-20);
  color: var(--main-color);
  background: url(../images/arrow-hover.png) no-repeat right center;
  background-size: 8px 12px;
  display: inline-block;
  transition: opacity 0.275s linear;
}
.more-btn:hover {
  opacity: 0.8 !important;
}
.mobile-show {
  display: none;
}
.more-border-btn {
  border: 1px var(--main-color) solid;
  padding: 0 22px;
  display: inline-block;
  position: relative;
  line-height: 40px;
  color: var(--main-color);
  border-radius: 4px;
  transition: all 0.275s linear;
}
.more-border-btn .txt {
  background: url(../images/scroll-prompt.png) no-repeat right center;
  background-size: 11px auto;
  padding-right: 14px;
}
.more-border-btn:hover {
  background-color: #fff;
}
.align-c {
  text-align: center;
}
.pt90 {
  padding-top: 90px !important;
}
.pt70 {
  padding-top: 70px;
}
.pt100 {
  padding-top: 100px !important;
}
.pb90 {
  padding-bottom: 90px !important;
}
.pb110 {
  padding-bottom: 110px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb30 {
  margin-bottom: 30px;
}
.mt60 {
  margin-top: 60px;
}
.mt50 {
  margin-top: 50px;
}
@media screen and (max-width: 1220px) {
  .wrap-box {
    padding-left: 25px;
    padding-right: 25px;
  }
  .nav ul li {
    margin-left: 20px;
  }
  .footer .bot-nav li {
    margin-left: 40px;
  }
}
@media screen and (max-width: 920px) {
  .footer .mission {
    max-width: 300px;
  }
  .footer .bot-nav li {
    margin-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .pt70 {
    padding-top: 40px;
  }
  .pt90 {
    padding-top: 50px !important;
  }
  .pt100 {
    padding-top: 55px !important;
  }
  .pb90 {
    padding-bottom: 50px !important;
  }
  .pb110 {
    padding-bottom: 60px !important;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .mb40 {
    margin-bottom: 26px !important;
  }
  .mt60 {
    margin-top: 30px;
  }
  .mt50 {
    margin-top: 25px;
  }
  .header.opened .m-nav-switch span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
    transition-delay: 0.275s;
  }
  .header.opened .m-nav-switch span:nth-child(2) {
    transform: scaleX(0);
    transition-delay: 0;
  }
  .header.opened .m-nav-switch span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -3px);
    transition-delay: 0.275s;
  }
  .header.opened .nav {
    transform: translate3d(0, 0, 0);
  }
  .logo {
    width: 111px;
    height: 24px;
    z-index: 100;
  }
  .m-nav-switch {
    display: block;
    margin-right: -14px;
    position: absolute;
    right: 20px;
    z-index: 101;
  }
  .active > .icon-arrow {
    transform: rotate(90deg);
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--nav-height) 20px 0 20px;
    margin-left: 0;
    background: #141414;
    transform: translate3d(-100%, 0, 0);
    transition: all 0.375s var(--bezier-mazel);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    margin: 0;
    line-height: 44px;
  }
  .nav ul li a {
    border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
  }
  .nav ul li a.text-link::after {
    display: none;
  }
  .nav ul li .icon-arrow {
    right: -18px;
    opacity: 0.7;
    transition: transform 0.275s ease-out;
  }
  .nav ul li .drop-menu {
    width: 100%;
    transform: translate3d(0, 0, 0);
    border-bottom: 1px rgba(255, 255, 255, 0.05) solid;
    position: static;
    background: none;
    opacity: 1;
    z-index: 10;
    display: none;
  }
  .nav ul li .drop-menu .drop-menu-item {
    position: relative;
    padding-left: 20px;
  }
  .nav ul li .drop-menu .drop-menu-item a {
    padding: 0;
  }
  .nav ul li .drop-menu .drop-menu-item:last-child > a {
    border-bottom: none;
  }
  .nav ul li .drop-menu .drop-menu-item.active .drop-s-list {
    display: block;
  }
  .nav ul li .drop-menu .drop-s-list {
    position: static;
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    z-index: 10;
    background: none;
    display: none;
  }
  .nav ul li.active .drop-menu {
    display: block;
  }
  .lang-switch {
    padding-left: 22px;
    margin-right: 30px;
    margin-left: auto;
    z-index: 101;
  }
  .wrap-box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-show {
    display: block;
  }
  .mobile-hide {
    display: none !important;
  }
  .top-banner.banner-index {
    height: 106.667vw;
  }
  .top-banner.banner-index .banner-slogan {
    width: 84.266%;
    min-width: 0;
  }
  .top-banner .m-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .top-banner .m-bg img {
    height: 100%;
    object-fit: cover;
  }
  .column-banner {
    height: 96vw;
    min-height: 0;
    max-height: 540px;
  }
  .column-banner .inner-content {
    width: 90.74%;
  }
  .column-banner .inner-content .banner-title {
    text-align: center !important;
  }
  .column-banner.align-l .wrap-box {
    justify-content: center;
  }
  .column-banner.align-l .inner-content {
    width: 90%;
    max-width: 640px;
  }
  .column-banner.h58vw {
    height: 58.667vw;
  }
  .column-banner.full-screen {
    height: 96vw;
  }
  .column-banner.banner-techno {
    height: 149.333vw;
    max-height: 100vh;
  }
  .column-banner.banner-techno .wrap-box {
    align-items: flex-start;
  }
  .column-banner.banner-techno .inner-content {
    padding-bottom: 0;
    padding-top: 52px;
  }
  .footer .wrap-box {
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 40px;
  }
  .footer .logo {
    margin-bottom: 20px;
  }
  .footer .mission {
    width: 85%;
    max-width: 413px;
    padding-bottom: 15px;
  }
  .footer .bot-nav {
    flex-direction: column;
  }
  .footer .bot-nav li {
    margin-left: 0;
    position: relative;
    border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
  }
  .footer .bot-nav li .icon-arrow {
    position: absolute;
    right: -18px;
    top: 0;
    transition: transform 0.275s linear;
  }
  .footer .bot-nav li .list {
    display: none;
    padding-left: 20px;
  }
  .footer .bot-nav li .list a {
    line-height: 44px;
    border-top: 1px rgba(255, 255, 255, 0.05) solid;
  }
  .footer .bot-nav li.active .list {
    display: block;
  }
  .footer .share-bar {
    position: static;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .footer .share-bar a .code-box {
    width: 80px;
    height: 80px;
  }
  .footer .share-bar a:hover .code-box {
    transform: translate(-50%, 0) scale(1);
  }
  .footer .share-bar a.bilibili:hover .code-box,
  .footer .share-bar a.zhihu:hover .code-box {
    display: none;
  }
  .footer .copyright {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .pt70 {
    padding-top: 33px;
  }
  .pt90 {
    padding-top: 40px !important;
  }
  .pt100 {
    padding-top: 45px !important;
  }
  .pb90 {
    padding-bottom: 40px !important;
  }
  .pb110 {
    padding-bottom: 50px !important;
  }
  .footer .mission p {
    letter-spacing: 0;
  }
  .column-banner {
    --f-size-20: 12px;
  }
}
@media screen and (max-width: 320px) {
  .wrap-box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.houmo-video {
  background: var(--color-dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.houmo-video::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.houmo-video::after {
  content: "";
  width: 80px;
  height: 80px;
  background: url(../images/play-btn.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: transform 0.275s linear;
}
.houmo-video:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}
.products-box {
  height: 100vh;
  min-height: 900px;
  overflow: hidden;
  box-sizing: border-box;
}
.products-box .wrap-box {
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.products-box .xp-box {
  width: 400px;
  height: 350px;
  margin: 70px auto 50px auto;
  position: relative;
  z-index: 100;
}
.products-box .xp-box #canvas {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate3d(-50%, 16%, 0);
  transform-origin: top center;
}
.products-box ul {
  width: 100%;
  z-index: 99;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-left: -12px;
  margin-right: -12px;
  transform: translateY(150%);
  opacity: 0;
}
.products-box ul li {
  width: 33.333%;
  padding: 12px;
  box-sizing: border-box;
}
.products-box ul li .inner {
  background-color: #202020;
  height: 100%;
  box-sizing: border-box;
  padding: 46px 20px 42px 20px;
  border-radius: 10px;
}
.products-box ul li .inner .icon {
  width: 48px;
  display: block;
  margin: 0 auto 25px auto;
}
.products-box ul li .inner h3 {
  font-size: var(--f-size-22);
  color: var(--main-color);
}
.products-box .title-box {
  transform: translateY(50%);
  position: relative;
  z-index: 102;
  padding-left: 25px;
  padding-right: 25px;
}
.products-box .bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.25;
  transform: translate3d(0, -50%, 0) scale(0.75);
}
.news-box {
  text-align: center;
}
.news-container {
  display: flex;
  justify-content: space-between;
}
.img-swiper {
  width: 580px;
  height: 387px;
  margin: 0 20px 0 0;
  border-radius: 10px;
}
.img-swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
.text-swiper {
  width: 620px;
  height: 387px;
  margin: 0;
  text-align: left;
}
.text-swiper .swiper-slide {
  box-sizing: border-box;
  padding-right: 20px;
  height: auto;
  margin-bottom: 20px;
}
.text-swiper .swiper-slide.hover .content h3 {
  color: var(--main-color);
}
.text-swiper .swiper-slide.hover .content .txt {
  height: 3em;
  opacity: 1;
}
.text-swiper .swiper-slide.hover .content .more-btn2 {
  background: url(../images/arrow-hover.png) no-repeat right center;
  color: var(--main-color);
  opacity: 1;
  transform: translateY(0);
}
.text-swiper .swiper-slide a {
  display: block;
  background: #fff;
  border-radius: 8px;
}
.text-swiper .swiper-slide .content {
  padding: 26px 36px;
}
.text-swiper .swiper-slide .content h3 {
  font-size: var(--f-size-20);
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
  max-height: 3em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: height 0.275s ease-in, opacity 0.275s linear;
}
.text-swiper .swiper-slide .content .txt {
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  height: 0;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: height 0.275s ease-in, opacity 0.275s linear;
}
.text-swiper .swiper-slide .content .date {
  color: #999;
}
.text-swiper .swiper-slide .content .bot {
  display: flex;
  justify-content: space-between;
}
.text-swiper .swiper-slide .content .more-btn2 {
  background: url(../images/arrow.png) no-repeat right center;
  display: inline-block;
  background-size: 8px 12px !important;
  color: #666;
  padding-right: 14px;
  transition: transform 0.275s ease-in, opacity 0.275s linear;
  opacity: 0;
  transform: translateY(50%);
}
.text-swiper .swiper-slide:last-child {
  margin-bottom: 50px;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  left: auto;
  right: 0;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--main-color);
}
@media screen and (max-width: 768px) {
  .houmo-video::after {
    width: 46px;
    height: 46px;
  }
  .products-box {
    height: auto;
  }
  .products-box .wrap-box {
    padding-left: 0;
    padding-right: 0;
  }
  .products-box .title-box {
    padding-top: 40px;
  }
  .products-box .xp-box {
    margin-top: 40px;
    width: 48vw;
    height: 42vw;
  }
  .products-box ul {
    margin: 0;
    padding: 0 20px;
    bottom: 40px;
  }
  .products-box ul li {
    width: 100%;
  }
  .products-box .bg {
    left: -23%;
    right: -21%;
    top: 0;
    transform: translate3d(0, 0, 0) scale(0.75);
  }
  .news-box {
    padding-left: 0;
    padding-right: 0;
  }
  .text-swiper {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    height: auto;
  }
  .text-swiper .swiper-slide {
    padding-right: 0;
    opacity: 0.5;
    transition: opacity 0.275s linear;
  }
  .text-swiper .swiper-slide .thumb {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
  .text-swiper .swiper-slide .content {
    padding: 18px 20px;
  }
  .text-swiper .swiper-slide .content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .text-swiper .swiper-slide .content .txt {
    height: 4.5em;
    opacity: 1;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .text-swiper .swiper-slide .content .more-btn2 {
    opacity: 1;
    transform: translateY(0);
  }
  .text-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  .text-swiper .swiper-pagination-bullet {
    opacity: 0.1;
  }
  .text-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--main-color);
  }
}
@media screen and (max-width: 480px) {
  .products-box .xp-box {
    margin-top: 30px;
  }
  .products-box .bg {
    left: -33%;
    right: -28%;
  }
}
.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10590;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.modal-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.modal-box.opened {
  opacity: 1;
  z-index: 10592;
}
.modal-box.opened .inner-content {
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.125s;
}
.modal-box .inner-content {
  width: 90%;
  max-width: 880px;
  height: 90vh;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10593;
  transform: translate(-50%, -50%) scale(0);
  transition-delay: 0;
  transition: all 0.275s var(--bezier-bounce);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-box .modalbox-header {
  width: 100%;
  line-height: 44px;
  height: 44px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  border-radius: 3px 3px 0 0;
  color: var(--color-dark);
  font-size: var(--f-size-18);
}
.modal-box .modalbox-header h3 {
  padding-left: 20px;
}
.modal-box .modalbox-header .close-modal {
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: absolute;
  transition: all 0.375s linear;
  top: 50%;
  right: -10px;
  margin-top: -22px;
  border-radius: 50%;
}
.modal-box .modalbox-header .close-modal svg {
  transform: scale(0.45);
}
.modal-box .modalbox-header .close-modal svg path {
  fill: #fff;
}
.modal-box .modalbox-header .close-modal:hover svg path {
  fill: var(--main-color);
}
.modal-box .houmo-video-box {
  width: 100%;
}
.contact-map {
  width: 100%;
  height: 500px;
  background: #e5e5e5;
  position: relative;
}
.contact-map img {
  width: auto;
}
.amap-icon img,
.amap-marker-content img {
  width: 25px !important;
  height: 34px !important;
}
.marker {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-15%);
  color: #fff;
  padding: 4px 15px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  background-color: rgba(210, 163, 108, 0.8);
  border-radius: 3px;
}
.marker::after {
  content: "";
  border-left: 5px rgba(0, 0, 0, 0) solid;
  border-right: 5px rgba(0, 0, 0, 0) solid;
  border-top: 6px rgba(210, 163, 108, 0.8) solid;
  position: absolute;
  bottom: -6px;
  left: 15px;
}
@media screen and (max-width: 768px) {
  .contact-map {
    height: 80vh;
  }
}
.chip-img {
  max-width: 739px;
  margin-left: auto;
  margin-right: auto;
}
.grid-col-2,
.grid-col-3,
.grid-col-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -12px;
  margin-right: -12px;
}
.grid-col-2 li,
.grid-col-3 li,
.grid-col-4 li {
  width: 50%;
  padding: 12px;
  box-sizing: border-box;
}
.grid-col-3 li {
  width: 33.33%;
}
.grid-col-4 li {
  width: 25%;
}
.advantage-list {
  align-items: stretch;
}
.advantage-list li .inner {
  height: 100%;
  box-sizing: border-box;
  background-color: #202020;
  padding: 46px 36px 42px 36px;
  border-radius: 10px;
}
.advantage-list li .inner .icon {
  width: 56px;
  display: block;
  margin-bottom: 20px;
}
.advantage-list li .inner h3 {
  font-size: var(--f-size-22);
  color: #fff;
  margin-bottom: 10px;
}
.advantage-list li .inner .txt {
  font-size: var(--f-size-18);
  color: #868689;
  line-height: 1.4;
  transition: height 0.275s ease-in, opacity 0.275s linear;
}
.feature-list {
  align-items: stretch;
}
.feature-list li .inner {
  display: flex;
  align-items: center;
  background: #fff;
  height: 100%;
  box-sizing: border-box;
  padding: 35px 40px;
  border-radius: 8px;
  transition: all 0.275s linear;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.feature-list li .inner .icon {
  width: 76px;
  margin-right: 20px;
}
.feature-list li .inner .content {
  width: calc(100% - 76px - 20px);
}
.feature-list li .inner h3 {
  font-size: var(--f-size-22);
  color: var(--color-dark);
  margin-bottom: 10px;
}
.feature-list li .inner .txt {
  line-height: 1.4;
}
.feature-list li .inner:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}
.related-products .item {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  margin-bottom: 60px;
  overflow: hidden;
  display: block;
}
.related-products .item .content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 25;
  box-sizing: border-box;
  padding: 0 80px;
  display: flex;
  align-items: center;
}
.related-products .item .content .inner {
  max-width: 476px;
}
.related-products .item .content .cont-title {
  text-align: left;
}
.related-products .item .content .txt {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 30px;
}
.related-products .item .bg-img {
  position: static;
  height: 100%;
}
.related-products .item img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.related-products .item:nth-child(2n) .content {
  justify-content: flex-end;
}
.related-products .item:nth-child(2n) img {
  object-position: left center;
}
.related-products .item:last-child {
  margin-bottom: 0 !important;
}
.more-block-btn {
  line-height: 44px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #caa267;
  color: var(--color-dark);
  font-size: 16px;
  text-shadow: 0 1px 1px 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 0 30px;
  transition: all 0.275s linear;
}
.more-block-btn:hover {
  background: #e0ac5f;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}
.download-btn {
  position: relative;
  border-radius: 10px;
  transition: all 0.275s linear;
  display: block;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.download-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
@media screen and (max-width: 768px) {
  .grid-col-2,
  .grid-col-3,
  .grid-col-4 {
    margin-left: -6px;
    margin-right: -6px;
  }
  .grid-col-2 li,
  .grid-col-3 li,
  .grid-col-4 li {
    width: 100%;
    padding: 6px;
  }
  .advantage-list li .inner {
    padding: 30px 20px;
  }
  .advantage-list li .inner .icon {
    width: 44px;
    margin-bottom: 15px;
  }
  .advantage-list li .inner .txt {
    margin-top: 6px;
    height: auto;
    display: block;
  }
  .feature-list li .inner {
    padding: 16px 20px;
  }
  .feature-list li .inner .icon {
    width: 56px;
    margin-right: 10px;
  }
  .feature-list li .inner .content {
    width: calc(100% - 56px - 10px);
  }
  .feature-list li .inner h3 {
    margin-bottom: 5px;
  }
  .related-products .item {
    height: auto;
    max-height: 620px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  .related-products .item .content {
    padding: 0 20px 20px 20px;
    text-align: center;
    justify-content: center !important;
    align-items: flex-end;
  }
  .related-products .item .content .txt {
    text-align: left;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 15px;
    color: #868689;
  }
  .related-products .item .content .more-block-btn {
    background: url(../images/arrow-hover.png) no-repeat right center;
    background-size: 8px 12px;
    padding: 0 16px;
    line-height: 30px;
    color: var(--main-color);
    font-size: 14px;
    box-shadow: none;
  }
  .related-products .item img {
    object-position: center center;
  }
}
body.page-abs .header {
  position: absolute;
}
.loading {
  width: 90px;
  margin: 30px auto;
  display: none;
}
.no-data {
  display: block;
  color: #999;
  padding: 10px 0;
  display: none;
}
.detais-top-bar {
  height: var(--nav-height);
  background-color: var(--color-dark);
}
.news-filter-box {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.news-filter-box .item {
  font-size: var(--f-size-16);
  color: var(--color-dark);
  padding: 25px 90px;
  display: inline-block;
  line-height: 20px;
}
.news-filter-box .item:hover,
.news-filter-box .item.active {
  color: var(--main-color);
}
.news-filter-box.scroll-fixed {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  z-index: 9000;
}
.news-filter-box.scroll-fixed + .wrap-box {
  padding-top: 110px;
}
.news-wrap-box {
  background-color: #f5f5f7;
  padding-bottom: 60px;
}
.news-wrap-box .wrap-box {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.news-wrap-box .wrap-box .news-title {
  margin-bottom: 24px;
}
.news-title {
  font-size: var(--f-size-24);
  color: var(--color-dark);
  font-weight: 800;
}
.news-list {
  width: 72.95%;
}
.news-list ul {
  width: 100%;
  padding-bottom: 10px;
}
.news-list ul li {
  margin-bottom: 24px;
}
.news-list ul li a {
  display: flex;
  height: 200px;
  color: var(--color-dark-grey);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.news-list ul li a:hover .thumb img {
  transform: scale(1.06);
}
.news-list ul li a:hover .content h4 {
  color: var(--main-color);
}
.news-list ul li .thumb {
  width: 300px;
  height: 100%;
  overflow: hidden;
}
.news-list ul li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s linear;
}
.news-list ul li .content {
  width: 66.292%;
  height: 100%;
  box-sizing: border-box;
  padding: 24px 35px;
  display: flex;
  flex-direction: column;
}
.news-list ul li .content h4 {
  font-size: var(--f-size-20);
  color: var(--color-dark);
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
.news-list ul li .content .txt {
  line-height: 1.4;
  height: 4.2em;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 16px 0 0 0;
}
.news-list ul li .content .date {
  margin-top: auto;
  line-height: 1;
  color: #999;
}
.recommend-list {
  width: 24.59%;
}
.recommend-list ul li {
  margin-bottom: 24px;
}
.recommend-list ul li a {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  color: var(--color-dark-grey);
}
.recommend-list ul li a:hover .thumb img {
  transform: scale(1.06);
}
.recommend-list ul li a:hover .content h4 {
  color: var(--main-color);
}
.recommend-list ul li .thumb {
  height: 200px;
  overflow: hidden;
}
.recommend-list ul li .thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s linear;
}
.recommend-list ul li .content {
  padding: 18px 24px;
}
.recommend-list ul li h4 {
  font-size: 16px;
  color: var(--color-dark);
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  margin-bottom: 10px;
}
.recommend-list ul li .date {
  color: #999;
}
.crumbs-bar {
  display: flex;
  line-height: 40px;
  margin-bottom: 20px;
  font-size: var(--f-size-16);
}
.crumbs-bar a {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  margin-right: 8px;
  color: #999;
  flex-shrink: 0;
}
.crumbs-bar a::after {
  content: "";
  width: 8px;
  height: 12px;
  background: url(../images/arrow.png) no-repeat right center;
  background-size: 8px 12px;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}
.crumbs-bar a:hover {
  color: var(--main-color);
}
.crumbs-bar .txt {
  max-width: 800px;
  overflow: hidden;
  color: var(--color-dark);
  height: 40px;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: bold;
}
.news-detail-box {
  width: 72.95%;
}
.article-content {
  background: #fff;
  border-radius: 8px;
  padding: 26px 36px;
  font-size: var(--f-size-16);
  color: var(--color-dark);
  line-height: 1.5;
}
.article-content .article-header {
  border-bottom: 1px #f1f1f1 solid;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.article-content h3 {
  font-size: var(--f-size-36);
  color: var(--color-dark);
  font-weight: 800;
  line-height: 1.3;
}
.article-content .date {
  font-size: var(--f-size-18);
  color: #999;
}
.article-content p {
  padding: 13px 0;
}
@media screen and (max-width: 1220px) {
  .news-filter-box {
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px;
  }
  .news-filter-box .item {
    padding: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .news-filter-box {
    border-bottom: 1px #f4f4f4 solid;
  }
  .news-filter-box .item {
    position: relative;
  }
  .news-filter-box .item::after {
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    background-color: var(--main-color);
    z-index: 10;
    transform: scaleX(0);
    transition: transform 0.275s linear;
  }
  .news-filter-box .item:hover {
    color: var(--color-dark);
  }
  .news-filter-box .item.active {
    color: var(--main-color) !important;
  }
  .news-filter-box .item.active::after {
    transform: scaleX(1);
  }
  .news-wrap-box {
    padding-bottom: 40px;
  }
  .news-wrap-box .wrap-box {
    flex-direction: column;
  }
  .news-wrap-box .wrap-box .news-title {
    margin-bottom: 12px;
  }
  .news-list,
  .news-detail-box {
    width: 100%;
  }
  .recommend-list {
    width: 100%;
    padding-top: 20px;
  }
  .recommend-list .news-title {
    text-align: center;
  }
  .recommend-list ul li {
    margin-bottom: 20px;
  }
  .recommend-list ul li .thumb {
    height: 40vw;
  }
  .crumbs-bar {
    line-height: 30px;
    margin-bottom: 10px;
  }
  .crumbs-bar .txt {
    height: 30px;
  }
  .article-content {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .news-wrap-box {
    padding-bottom: 30px;
  }
  .news-wrap-box .wrap-box {
    padding-top: 20px;
  }
  .news-wrap-box .wrap-box .news-title {
    margin-bottom: 20px;
  }
  .news-list {
    width: 100%;
  }
  .news-list ul {
    padding-bottom: 0;
  }
  .news-list ul li a {
    height: auto;
    flex-direction: column;
  }
  .news-list ul li .thumb {
    width: 100%;
    height: 60.8vw;
  }
  .news-list ul li .content {
    width: 100%;
    padding: 18px 20px;
  }
  .news-list ul li .content h4 {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .news-list ul li .content .txt {
    display: none;
  }
  .recommend-list ul li:last-child {
    margin-bottom: 0;
  }
  .recommend-list ul li .thumb {
    height: 60vw;
  }
  .news-filter-box .item {
    padding: 15px 0;
  }
  .news-filter-box.scroll-fixed + .wrap-box {
    padding-top: 70px;
  }
  .article-content {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}
.about-intro {
  height: 26.145vw;
  max-height: 670px;
  position: relative;
  box-sizing: border-box;
}
.about-intro .wrap-box {
  height: 100%;
  display: flex;
  align-items: center;
}
.about-intro .wrap-box .infor {
  max-width: 561px;
  padding-bottom: 4vw;
}
.about-intro .wrap-box .infor .cont-title {
  font-size: var(--f-size-30);
  text-align: left;
  padding-bottom: 20px;
}
.about-intro .wrap-box .infor p {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.75;
  padding-bottom: 20px;
}
.about-intro .bg-img img {
  object-position: right 50%;
}
.news-filter-box.scroll-fixed + .about-intro {
  margin-top: 70px;
}
.about-culture {
  height: 30.73vw;
  position: relative;
}
.about-culture .wrap-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-culture .feature-list li .inner .icon {
  width: 64px;
}
.about-culture .feature-list li .inner .txt {
  font-size: var(--f-size-16);
}
.history-content .history-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 90px;
  margin-bottom: 10px;
}
.history-content .history-item .infor {
  width: 43.442%;
  box-sizing: border-box;
  background-color: #f5f5f7;
  padding: 30px 36px 30px 30px;
  font-size: var(--f-size-16);
  color: var(--color-dark);
  border-radius: 8px;
}
.history-content .history-item .infor .item {
  line-height: 1.375;
  padding: 5px 0;
  overflow: hidden;
}
.history-content .history-item .infor .month {
  width: 40px;
  padding-right: 20px;
  float: left;
  text-align: right;
}
.history-content .history-item .infor .txt {
  display: table-cell;
}
.history-content .history-item .year {
  font-size: 26px;
  color: #d2a36c;
  font-weight: bold;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.history-content .history-item::after {
  content: "";
  width: 4px;
  position: absolute;
  top: 55px;
  left: 50%;
  bottom: 0;
  z-index: 2;
  background: #f39e31;
  transform: translateX(-50%);
}
.history-content .history-item:nth-child(2n) {
  justify-content: flex-start;
}
.history-content .history-item:first-child::after {
  background: linear-gradient(
    to top,
    #f39e31 25%,
    #fcbc4e 65%,
    rgba(255, 200, 89, 0) 100%
  );
}
.history-content .history-item:last-child {
  padding-bottom: 51px;
}
.history-content .history-item:last-child::after {
  background: linear-gradient(
    180deg,
    #f39e31 25%,
    #fcbc4e 65%,
    rgba(255, 200, 89, 0) 100%
  );
}
.contact-box {
  background-color: #f5f5f7;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 100%;
  background-origin: content-box;
}
.contact-mailbox .feature-list li .inner {
  align-items: flex-start;
}
.contact-mailbox .feature-list li .inner .icon {
  width: 30px;
}
.contact-mailbox .feature-list li .inner h3 {
  font-size: 18px;
  line-height: 1.4;
}
.contact-mailbox .feature-list li .inner .txt {
  font-size: 15px;
  color: var(--color-dark);
}
.address-title {
  font-size: var(--f-size-22);
  color: var(--color-dark);
  font-weight: 800;
}
.contact-address .feature-list li .inner {
  position: relative;
}
.contact-address .feature-list li .inner .icon {
  width: 74px;
}
.contact-address .feature-list li .inner .txt {
  line-height: 1.5;
  min-height: 4.5em;
}
.contact-address .feature-list li .inner .txt p span.label {
  float: left;
}
.contact-address .feature-list li .inner .txt p span {
  display: table-cell;
}
.contact-address .feature-list li .inner a {
  background: url(../images/icon-location.png) no-repeat 10px center #f5f5f7;
  background-size: 17px 20px;
  line-height: 30px;
  border-radius: 3px;
  display: inline-block;
  padding: 0 10px 0 35px;
  position: absolute;
  right: 30px;
  top: 25px;
  transition: all 0.275s linear;
  opacity: 0;
  transform: translateY(10px);
}
.contact-address .feature-list li .inner:hover a {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1920px) {
  .about-intro {
    height: 502px;
  }
  .about-intro .wrap-box .infor {
    padding-bottom: 30px;
  }
  .about-culture {
    height: 590px;
  }
}
@media screen and (max-width: 1440px) {
  .about-intro .bg-img img {
    object-position: 80% 50%;
  }
}
@media screen and (max-width: 768px) {
  .about-intro {
    height: auto;
    max-height: 2000px;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .about-intro .wrap-box {
    padding-top: 20px;
    order: 2;
  }
  .about-intro .wrap-box .infor {
    padding-bottom: 0;
  }
  .about-intro .wrap-box .infor .cont-title {
    padding-bottom: 12px;
  }
  .about-intro .wrap-box .infor p {
    font-size: 15px;
    line-height: 1.6;
  }
  .about-intro .bg-img {
    position: static;
    margin: 0 20px;
    order: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  .about-intro .bg-img img {
    object-position: 50% 50%;
  }
  .news-filter-box.scroll-fixed + .about-intro {
    margin-top: 50px;
  }
  .about-culture {
    height: auto;
    background: #ededed;
    padding: 50px 0 50px 0;
  }
  .about-culture .cont-title {
    color: var(--color-dark) !important;
  }
  .about-culture .feature-list li .inner .icon {
    width: 56px;
  }
  .history-content .history-item {
    padding-bottom: 6px !important;
  }
  .history-content .history-item .infor {
    width: 100%;
    padding: 60px 20px 20px 20px;
  }
  .history-content .history-item .infor .month {
    width: 40px;
    padding-right: 20px;
    float: left;
    text-align: right;
  }
  .history-content .history-item .infor .txt {
    display: table-cell;
  }
  .history-content .history-item .year {
    font-size: 20px;
    left: 20px;
    transform: translate(0, 20px);
  }
  .history-content .history-item::after {
    display: none;
  }
  .contact-box {
    background-size: 200% auto;
    background-position: bottom center;
  }
  .contact-address .feature-list li .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-address .feature-list li .inner .icon {
    width: 56px;
    margin-bottom: 12px;
  }
  .contact-address .feature-list li .inner .content {
    width: 100%;
  }
  .contact-address .feature-list li .inner .txt {
    min-height: 0;
  }
  .contact-address .feature-list li .inner .txt p {
    padding-bottom: 8px;
  }
  .contact-address .feature-list li .inner .txt p:last-child {
    padding-bottom: 0;
  }
  .contact-address .feature-list li .inner a {
    opacity: 1;
    transform: translateY(0);
    right: 20px;
  }
}
.drive-box .feature-list li .inner,
.industry-box .feature-list li .inner {
  flex-direction: column;
  padding: 35px 28px;
}
.drive-box .feature-list li .inner .icon,
.industry-box .feature-list li .inner .icon {
  width: 88px;
  margin-right: 0;
  margin-bottom: 20px;
}
.drive-box .feature-list li .inner .content,
.industry-box .feature-list li .inner .content {
  width: 100%;
}
.drive-box .feature-list li .inner h3,
.industry-box .feature-list li .inner h3 {
  text-align: center;
}
.drive-box .feature-list li .inner:hover,
.industry-box .feature-list li .inner:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.industry-box .feature-list li .inner {
  padding: 35px 40px;
}
.core-scene-box,
.application-scene-box {
  height: 38.4375vw;
  min-height: 738px;
  max-height: 980px;
}
.core-scene-box .swiper-slide .wrap-box,
.application-scene-box .swiper-slide .wrap-box {
  height: 100%;
  box-sizing: border-box;
  padding-top: 15.3125vw;
  color: #fff;
}
.core-scene-box .swiper-slide .content,
.application-scene-box .swiper-slide .content {
  max-width: 568px;
}
.core-scene-box .swiper-slide .content h3,
.application-scene-box .swiper-slide .content h3 {
  font-size: var(--f-size-30);
  margin-bottom: 28px;
  font-weight: 800;
  transition: all 0.7s ease;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
.core-scene-box .swiper-slide .content .txt,
.application-scene-box .swiper-slide .content .txt {
  font-size: var(--f-size-18);
  transition: all 0.7s ease;
  opacity: 0;
  transform: translate3d(0, 50%, 0);
  color: rgba(255, 255, 255, 0.8);
}
.core-scene-box .swiper-slide.swiper-slide-active .content h3,
.core-scene-box .swiper-slide.swiper-slide-active .content .txt,
.application-scene-box .swiper-slide.swiper-slide-active .content h3,
.application-scene-box .swiper-slide.swiper-slide-active .content .txt {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.35s;
}
.core-scene-box .scene-header,
.application-scene-box .scene-header {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 12.195%;
}
.scene-swiper-nav {
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
  display: flex;
  justify-content: center;
}
.scene-swiper-nav li {
  position: relative;
  cursor: pointer;
  padding-bottom: 23px;
  margin: 0 100px;
  font-size: var(--f-size-22);
  color: #fff;
  transition: all 0.275s linear;
}
.scene-swiper-nav li .txt {
  display: inline-block;
  position: relative;
  padding-left: 44px;
}
.scene-swiper-nav li .txt::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/car-icon.png) no-repeat;
  background-size: 64px 64px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
  transition: all 0.275s linear;
}
.scene-swiper-nav li::after {
  content: "";
  height: 3px;
  background-color: var(--main-color);
  border-radius: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.275s linear;
}
.scene-swiper-nav li.item-commercial .txt::before {
  background-position: 0 0;
}
.scene-swiper-nav li.item-commercial.active .txt::before {
  background-position: -32px 0;
}
.scene-swiper-nav li.item-passenger .txt::before {
  background-position: 0 -32px;
}
.scene-swiper-nav li.item-passenger.active .txt::before {
  background-position: -32px -32px;
}
.scene-swiper-nav li.active {
  color: var(--main-color);
}
.scene-swiper-nav li.active::after {
  transform: scaleX(1);
}
.scene-swiper-nav.J-application-scene {
  display: none;
}
.scene-swiper-nav.J-application-scene li .txt {
  padding: 0;
}
.scene-swiper-nav.J-application-scene li .txt::before {
  display: none;
}
.application-scene-box {
  width: 1220px;
  height: 770px;
}
.application-scene-box .swiper-slide {
  width: 594px;
  height: 480px;
  margin-top: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.application-scene-box .swiper-slide .wrap-box {
  padding-top: 115px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, 80%, 0);
  transition: transform 0.375s ease;
}
.application-scene-box .swiper-slide .bg-img {
  transition: all 0.375s linear;
}
.application-scene-box .swiper-slide .content {
  padding: 0 38px;
}
.application-scene-box .swiper-slide .content h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 18px;
  opacity: 1;
  transform: translate3d(0, -84px, 0);
}
.application-scene-box .swiper-slide .content .txt {
  font-size: 15px;
}
.application-scene-box .swiper-slide:first-child {
  margin-right: 32px;
}
.application-scene-box .swiper-slide:hover .wrap-box {
  transform: translate3d(0, 0, 0);
}
.application-scene-box .swiper-slide:hover .wrap-box h3,
.application-scene-box .swiper-slide:hover .wrap-box .txt {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.application-scene-box .swiper-slide:hover .parameter {
  opacity: 1;
}
.application-scene-box .swiper-slide:hover .bg-img {
  filter: blur(10px);
  transform: scale(1.05);
}
.parameter {
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px rgba(255, 255, 255, 0.2) solid;
  position: absolute;
  bottom: 0;
  left: 38px;
  right: 38px;
  opacity: 0;
  transition: opacity 0.375s linear;
}
.parameter .item {
  width: 33.33%;
  position: relative;
  text-align: center;
}
.parameter .item .num {
  font-size: 28px;
  font-weight: bold;
  color: #d2a36c;
  line-height: 40px;
  background: linear-gradient(270deg, #f09121 0%, #ffc159 60%, #ffcd59 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.parameter .item .text {
  line-height: 1.4;
  height: 2.8em;
}
.parameter .item span {
  display: block;
}
.parameter .item::after {
  content: "";
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.parameter .item:last-child::after {
  display: none;
}
.partner-scrolling-box {
  width: 100%;
  overflow: hidden;
}
.partner-scrolling-box .scrolling-item .img-item {
  width: 287px;
  padding: 12px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 8px;
  float: left;
}
.partner-scrolling-box .scrolling-item .img-item img {
  border-radius: 8px;
}
@media screen and (max-width: 1920px) {
  .core-scene-box .swiper-slide .wrap-box {
    padding-top: 294px;
  }
}
@media screen and (max-width: 1220px) {
  .application-scene-box {
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
  }
  .application-scene-box .swiper-slide .content {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .core-scene-box,
  .application-scene-box {
    width: 100%;
    min-height: 600px;
  }
  .core-scene-box .swiper-slide .wrap-box,
  .application-scene-box .swiper-slide .wrap-box {
    padding-top: 240px;
  }
  .application-scene-box {
    padding: 0;
  }
  .application-scene-box .cont-title {
    color: #fff;
  }
  .application-scene-box .swiper-slide {
    height: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  .application-scene-box .swiper-slide .wrap-box {
    transform: translate3d(0, 0, 0);
  }
  .application-scene-box .swiper-slide .wrap-box h3 {
    font-size: 20px;
  }
  .application-scene-box .swiper-slide .wrap-box h3,
  .application-scene-box .swiper-slide .wrap-box .txt {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  .application-scene-box .swiper-slide .content {
    max-width: 100%;
    padding: 0;
  }
  .application-scene-box .swiper-slide:last-child {
    margin: 0;
  }
  .application-scene-box .swiper-slide.swiper-slide-active .parameter {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.35s;
  }
  .application-scene-box .swiper-slide.swiper-slide-active .bg-img {
    filter: blur(3px);
    transform: scale(1.05);
    transition-delay: 0.35s;
  }
  .parameter {
    transform: translate3d(0, 50%, 0);
    transition: all 0.7s ease;
  }
  .drive-box,
  .industry-box {
    background: #ededed;
  }
  .drive-box .feature-list li .inner,
  .industry-box .feature-list li .inner {
    flex-direction: row;
    padding: 16px 20px;
  }
  .drive-box .feature-list li .inner .icon,
  .industry-box .feature-list li .inner .icon {
    width: 56px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .drive-box .feature-list li .inner .content,
  .industry-box .feature-list li .inner .content {
    width: calc(100% - 56px - 10px);
  }
  .drive-box .feature-list li .inner h3,
  .industry-box .feature-list li .inner h3 {
    margin-bottom: 5px;
    text-align: left;
  }
  .industry-box .feature-list li .inner {
    align-items: flex-start;
    padding: 20px 25px 20px 20px;
  }
  .scene-swiper-nav.J-application-scene {
    display: flex;
  }
  .scene-swiper-nav li {
    margin: 0 50px;
  }
  .partner-scrolling-box .scrolling-item .img-item {
    width: 186px;
  }
}
@media screen and (max-width: 480px) {
  .core-scene-box,
  .application-scene-box {
    height: 139.2vw;
    min-height: 0;
  }
  .core-scene-box .swiper-slide .content h3,
  .application-scene-box .swiper-slide .content h3 {
    margin-bottom: 16px;
  }
  .application-scene-box .scene-header {
    top: 7.65%;
  }
  .application-scene-box .scene-header .mb40 {
    margin-bottom: 10px !important;
  }
  .application-scene-box .swiper-slide .wrap-box {
    padding-top: 165px;
  }
  .application-scene-box .swiper-slide .content .txt {
    font-size: 13px;
  }
  .parameter {
    left: 20px;
    right: 20px;
    padding: 15px 0;
  }
  .parameter .item .num {
    font-size: 20px;
  }
  .scene-swiper-nav {
    background: rgba(255, 255, 255, 0.2);
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 10px;
    border-bottom: none;
  }
  .scene-swiper-nav li {
    margin: 0 20px;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 375px) {
  .parameter .item {
    font-size: 11px;
  }
  .parameter .item .num {
    font-size: 17px;
  }
}
.technology-box {
  background: url(../images/t_cont-bg.jpg) no-repeat bottom center #000;
  background-size: auto 511px;
}
.technology-video {
  background-image: url(../images/video-box-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
body.lang-en p {
  text-align: left !important;
}
body.lang-en .nav ul li.current a.text-link,
body.lang-en .nav ul li:hover a.text-link {
  font-weight: normal;
}
body.lang-en .nav ul li:nth-child(3) .drop-menu {
  width: 270px;
}
body.lang-en .nav ul li:nth-child(3) .drop-menu .drop-s-list {
  width: 215px;
  left: 270px;
}
body.lang-en .nav ul li .drop-menu a {
  white-space: nowrap;
}
body.lang-en .nav ul li .drop-menu .drop-menu-item a.current {
  font-weight: normal;
}
body.lang-en .nav ul li .drop-menu .drop-menu-item:hover > a {
  color: #fff;
  font-weight: normal;
}
body.lang-en .footer .mission p {
  letter-spacing: 0;
}
body.lang-en .footer .bot-nav li {
  margin-left: 52px;
}
body.lang-en .footer .bot-nav li h3 a {
  white-space: nowrap;
}
body.lang-en .top-banner.banner-index .banner-slogan {
  max-width: 1400px;
  width: 72.5vw;
}
body.lang-en .core-scene-box .swiper-slide .content {
  max-width: 600px;
}
body.lang-en .core-scene-box .swiper-slide .content h3 {
  line-height: 1.3;
}
body.lang-en .application-scene-box .swiper-slide .content h3 {
  margin-bottom: 10px;
}
body.lang-en .application-scene-box .swiper-slide .content .txt {
  font-size: 14px;
  line-height: 1.3;
}
body.lang-en .application-scene-box .swiper-slide:hover .wrap-box {
  height: calc(100% + 50px);
  transform: translate3d(0, -50px, 0);
}
body.lang-en .article-content h3 {
  line-height: 1.2;
  padding-bottom: 10px;
}
body.lang-en .parameter .item .text {
  line-height: 1.2;
  height: 3.6em;
  font-size: 12px;
  padding: 0 10px;
}
body.lang-en .history-content .history-item .infor .item .month {
  width: 72px;
}
body.lang-en .contact-address .feature-list li .inner .txt {
  line-height: 1.5;
  min-height: 4.5em;
}
body.lang-en .contact-address .feature-list li .inner .txt p span.label {
  float: none;
  display: block;
  font-weight: bold;
}
body.lang-en .contact-address .feature-list li .inner .txt p span {
  display: block;
}
body.lang-en .news-list ul li .content h4 {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  max-height: 2.4em;
}
body.lang-en .news-list ul li .content .txt {
  margin: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  body.lang-en .footer .bot-nav li {
    margin-left: 0;
  }
  body.lang-en .top-banner.banner-index .banner-slogan {
    width: 86.25%;
  }
  body.lang-en .history-content .history-item .infor .item .month {
    padding-right: 10px;
  }
}
@media screen and (max-width: 480px) {
  body.lang-en .scene-swiper-nav li {
    line-height: 1.2;
  }
  body.lang-en .application-scene-box .swiper-slide .content h3 {
    margin-bottom: 10px;
  }
  body.lang-en .application-scene-box .swiper-slide .content .txt {
    font-size: 12px;
  }
  body.lang-en .application-scene-box .swiper-slide:hover .wrap-box {
    height: 100%;
    transform: translate3d(0, 0, 0);
  }
  body.lang-en .parameter {
    padding: 20px 0;
    bottom: 10px;
  }
  body.lang-en .parameter .item .num {
    font-size: 18px;
    line-height: 1;
    padding-bottom: 5px;
  }
  body.lang-en .parameter .item .text {
    font-size: 10px;
  }
}
.ani-delay-125 {
  transition-delay: 0.125s !important;
}
.ani-delay-25 {
  transition-delay: 0.25s !important;
}
.ani-delay-375 {
  transition-delay: 0.375s !important;
}
.ani-delay-5 {
  transition-delay: 0.5s !important;
}
.ani-delay-625 {
  transition-delay: 0.625s !important;
}
.ani-delay-75 {
  transition-delay: 0.75s !important;
}
.ani-delay-875 {
  transition-delay: 0.875s !important;
}
.ani-delay-10 {
  transition-delay: 1s !important;
}
.ani-up-in,
.ani-up-in2,
.ani-up-in3,
.ani-down-in2,
.ani-left-in,
.ani-left-in2,
.ani-right-in,
.ani-right-in2,
.ani-up-in-100 {
  transition: transform 0.75s ease, opacity 1s linear;
  opacity: 0;
}
.ani-left-in {
  transform: translate3d(-100%, 0, 0);
}
.ani-left-in2 {
  transform: translate3d(-50%, 0, 0);
}
.ani-right-in {
  transform: translate3d(100%, 0, 0);
}
.ani-right-in2 {
  transform: translate3d(50%, 0, 0);
}
.ani-down-in2 {
  transform: translate3d(0, -50%, 0);
}
.ani-up-in {
  transform: translate3d(0, 100%, 0);
}
.ani-up-in2 {
  transform: translate3d(0, 50%, 0);
}
.ani-up-in3 {
  transform: translate3d(0, 10%, 0);
}
.ani-up-in-100 {
  transform: translate3d(0, 120px, 0);
}
.ani-opacity-in {
  opacity: 0;
  transition: all 1s ease-in;
}
.ani-scale-in {
  transition: all 0.75s ease-in;
  transform: scale(0);
}
.active .ani-up-in,
.active .ani-up-in2,
.active .ani-up-in3,
.active .ani-down-in2,
.active .ani-left-in,
.active .ani-left-in2,
.active .ani-right-in,
.active .ani-right-in2,
.active .ani-up-in-100 {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.active .ani-opacity-in {
  opacity: 1 !important;
}
.active .ani-scale-in {
  transform: scale(1);
}
