@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: PingFang-Medium;
}
@font-face {
  /* 数字字体 */
  font-family: PingFang-Medium;
  src: url(/public/home/font/PingFang-Medium_0.ttf);
}
@font-face {
  /* 标题 */
  font-family: PingFang-Heavy;
  src: url(/public/home/font/PingFang-Heavy_0.ttf);
}
@font-face {
  font-family: Din;
  src: url(/public/home/font/DIN-MEDIUM.TTF);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul {
  padding: 0;
  margin: 0;
}

ul[role=list],
ol[role=list],
li {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  color: #111;
}

/* A elements that don't have a class get default styles */
a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
video {
  object-fit: cover;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: transparent;
}
input:focus {
  outline: none;
}
button {
  cursor: pointer;
  display: block;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=reset.css.map */


:root {
  --main: #EC6816;
  --main-2: #005CFB;
  --text-color: #19152A;
  --pd-x: 1.6rem;
  --neg-pd-x: -1.6rem;
  --tr: all .4s ease-in-out;
  --navH: .7rem;
}

html {
  font-size: 100px;
}

body {
  font-size: .16rem;
  background: white;
  color: var(--text-color);
  padding: 0;
  margin: 0;
}
.num-font {
  font-family: Din;
}
.container {
  padding: 0 var(--pd-x)
}
.home-nav {
  background: transparent;
}

.flx, .flx-bt, .flx-ct, .flx-bt-top, .flx-ct-top, .flx-start, .flx-end {
  display: flex;
  flex-wrap: wrap;
}

.flx-ct {
  justify-content: center;
  align-items: center;
}

.flx-bt {
  justify-content: space-between;
  align-items: center;
}

.flx-bt-top {
  justify-content: space-between;
  align-items: flex-start;
}
.flx-ct-top {
  align-items: flex-start;
  justify-content: center;
}
.flx-start {
  justify-content: flex-start;
  align-items: center;
}
.flx-end {
  justify-content: flex-end;
  align-items: center;
}
.big-title {
  font-size: 0.32rem;
  font-weight: bold;
  text-align: center;
}

/* 文字超出一行省略 */
.one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 文字超出两行省略 */
.double-line {
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.round {
  border-radius: 9999px;
}
.banner {
  width: 100%;
  height: 100vh;
  background: url() center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.banner-title {
  font-size: .62rem;
  font-family: PingFang-Heavy;
  text-align: center;
}
.banner-subtitle-1, .banner-subtitle-2 {
  font-size: .42rem;
  font-family: PingFang-Medium;
  text-align: center;
}
.banner-subtitle-2 {
  font-size: .3rem;
}
.common-title {
  font-size: .52rem;
  color: #111;
  font-family: PingFang-Heavy;
  text-align: center;
}
.fade-in, .fade-in-left, .fade-in-right, .fade-in-up, .fade-in-down { /* 定义动画 */
  transition-property: opacity, transform;
  transition-duration: 0.7s, 0.7s;
  transition-timing-function: ease-in-out, ease-in-out;
  opacity: 0;
  transform: translateY(100%);
}
.fade-in.exe-animation, .exe-animation.fade-in-left, .exe-animation.fade-in-right, .exe-animation.fade-in-up, .exe-animation.fade-in-down { /* 执行动画 */
  opacity: 1 !important;
  transform: translateY(0%) !important;
}

.fade-in-up {
  transform: translateY(50%);
}
.fade-in-down {
  transform: translateY(-50%);
}
.fade-in-left, .fade-in-right {
  transform: translateX(-100%);
}
.fade-in-left.exe-animation, .exe-animation.fade-in-right { /* 执行动画 */
  transform: translateX(0) !important;
}

.fade-in-right {
  transform: translateX(100%);
}
::-webkit-scrollbar {
  width: 6px;
  background: rgba(255,255,255, .3);
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

@media (min-width: 992px) {
  .pc-show {
      display: block;
  }
  .mobile-show {
      display: none;
  }
}
@media (max-width: 991px) {
  :root {
    --pd-x: .25rem;
    --pd-x1: .25rem;
    --neg-pd-x1: -.25rem;
  }
  .sm-flx-ct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .sm-flx-item {
    flex-basis: 100%!important;
    height: auto!important;
  }
  .sm-hidden {
    display: none;
  }
  .pc-show {
      display: none;
  }
  .mobile-show {
      display: block;
  }
  .common-title {
    font-size: .46rem;
  }
  .banner-subtitle-2 {
    margin-left: 30px!important;
    margin-right: 30px!important;
  }
}
.align-center{
    display: flex;justify-content: center
}
.align-center img{
    width:100%!important;
}<!--0.00014400482177734-->