* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
body {
  width: 100%;
  /* font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; */
}
ul li {
  list-style: none;
}
@media (min-width: 801px) {
  .container {
    min-width: 1280px;
    min-height: 100vh;
    position: relative;
    padding-bottom: 40px;
  }
  .container * {
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
  }
  header {
    min-width: 1280px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: space-between;
  }
  header .logo {
    display: flex;
    align-items: center;
  }
  header .logo .icon {
    width: 50px;
    height: 47px;
  }
  header .logo .icon img {
    width: 100%;
    height: 100%;
  }
  header .logo .company-name {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
  header .links {
    display: flex;
    align-items: center;
  }
  header .links a {
    font-size: 20px;
    color: #aacbbf;
    margin-left: 44px;
  }
  header .links a:hover {
    color: #ffffff;
  }
  header .links .active {
    font-size: 20px;
    color: #ffffff;
  }
  footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #525252;
    font-size: 12px;
    color: #ffffff;
  }
  footer ul {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  footer ul .hung {
    height: 10px;
    width: 1px;
    background-color: #fff;
  }
  footer ul a {
    font-size: 12px;
    color: #ffffff;
  }
  footer ul a:hover {
    opacity: 0.7;
  }
  footer ul .police {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .title {
    margin-bottom: 30px;
  }
  .title .chinese-title {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title .chinese-title .hung {
    width: 50px;
    height: 1px;
    background-color: #fff;
  }
  .title .chinese-title .info {
    margin: 0 20px;
  }
  .title .chinese-title .info span {
    font-size: 40px;
    color: #ffffff;
    font-family: al-95;
  }
  .title .chinese-title .info .yellow {
    color: #e5a81d;
  }
  .title .english-title {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.45);
    font-family: al-75;
    text-align: center;
  }
  .small-title .chinese-title .info span {
    font-size: 30px !important;
  }
  .small-title .english-title {
    transform: translate(0, -11px);
  }
}
@font-face {
  font-family: "al-95";
  src: url(../assets/font/AlibabaPuHuiTi-3-95-ExtraBold.ttf);
}
@font-face {
  font-family: "al-75";
  src: url(../assets/font/AlibabaPuHuiTi-3-75-SemiBold.ttf);
}
@font-face {
  font-family: "al-105";
  src: url(../assets/font/AlibabaPuHuiTi-3-105-Heavy.ttf);
}
@font-face {
  font-family: "al-65";
  src: url(../assets/font/AlibabaPuHuiTi-3-65-Medium.ttf);
}
.f65 {
  font-family: al-65;
}
.f75 {
  font-family: al-75;
}
.f95 {
  font-family: al-95;
}
.f105 {
  font-family: al-105;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
