@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-family: 'MicrosoftYaHei';
}

/* 保持图片缩小后不模糊 */
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;
}

.container {
  margin: 0 auto;
  max-width: 1220px;
}

.img {
  font-size: 0;
}

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

.shade {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
}

.banner {
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 12 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .bannerText {
  text-align: center;
  max-width: 1092px;
  font-family: Cambria;
  line-height: 1.3;
  letter-spacing: 1px;
  font-size: 36px;
}

.title_1 {
  font-family: Moderat-Light;
  font-size: 36px;
  line-height: 1;
  color: #000;
  padding-top: 108px;
  padding-bottom: 52px;
  text-align: center;
}

@media (max-width: 1024px) {
  .banner .bannerText {
    font-size: 28px;
  }
  .title_1 {
    padding-top: 8%;
    padding-bottom: 5%;
    font-size: 28px;
  }
}

@media (max-width: 860px) {
  .banner {
    margin-top: 56px;
  }
}

@media (max-width: 768px) {
  .banner .bannerText {
    font-size: 20px;
  }
}
