.banner {
  position: relative;
}

.banner .bg {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner .text {
  position: absolute;
  width: 100%;
  top: 14.7395833333vw;
  padding: 0 6.0416666667vw;
  color: white;
}

.banner .text .en {
  font-weight: 300;
  font-family: "Montserrat";
}

.banner .text .t1 {
  margin: 0.5208333333vw 0 2.5520833333vw 0;
  font-weight: 250;
}

.banner .text .info {
  display: flex;
  flex-direction: column;
  gap: 1.6145833333vw;
}

.banner .text .info a {
  display: flex;
  gap: 1.25vw;
  line-height: 1;
  align-items: center;
}

.banner .text .info a .icon {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .text .info a .icon img {
  width: 1.0416666667vw;
  display: block;
}

.banner .text .info a:hover {
  text-decoration: underline;
}

.banner .text .code {
  margin-top: 6.25vw;
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}

.banner .text .code img {
  width: 6.71875vw;
  height: 6.71875vw;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.banner .text .code .txt .p1 {
  font-weight: 250;
  margin-bottom: 0.2083333333vw;
}

.container {
  padding: 8.9583333333vw 10.9375vw 15.2083333333vw 10.9375vw;
  background: rgba(244, 244, 244, 0.05) url(../images/cbg.png) no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.container .title {
  text-align: center;
}

.container .title .p1 {
  font-weight: 500;
  line-height: 1;
}

.container .title .p2 {
  line-height: 2;
  color: #999;
  height: 2.2395833333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5208333333vw;
}

.container .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6041666667vw;
  margin-top: 6.71875vw;
}

.container .list .item {
  display: block;
  width: 100%;
  background: #fff;
}

.container .list .item .pic {
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.container .list .item .pic::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: .6;
  z-index: 2;
}

.container .list .item .pic .ht {
  position: absolute;
  left: 0;
  bottom: 1.3541666667vw;
  width: 100%;
  padding: 0 3.28125vw;
  z-index: 3;
  color: white;
}

.container .list .item .pic .ht .cn {
  font-weight: 500;
  line-height: 1.2;
}

.container .list .item .pic .ht .en {
  margin-top: 0.46875vw;
  font-family: "Montserrat";
  text-transform: uppercase;
  opacity: .67;
}

.container .list .item .pic img {
  width: 100%;
  display: block;
  height: 11.3020833333vw;
  object-fit: cover;
  transition: all 600ms;
}

.container .list .item .text {
  padding: 2.2916666667vw 2.0833333333vw 2.4479166667vw 3.28125vw;
}

.container .list .item .text a {
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.container .list .item .text a:not(:last-child) {
  margin-bottom: 0.8333333333vw;
}

.container .list .item .text a img {
  width: 0.9375vw;
  display: block;
}

.container .list .item .text a p {
  width: 100%;
  flex: 1;
  color: #333;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.container .list .item:hover .pic img {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .banner {
    margin-top: 60px;
    position: relative;
  }

  .banner .bg {
    height: 400px;
    object-fit: cover;
  }

  .banner .text {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5%;
    width: 100%;
  }

  .banner .text .t1 {
    font-size: 18px;
    margin: 10px 0 20px 0;
  }

  .banner .text .info {
    gap: 15px;
  }

  .banner .text .info a {
    gap: 15px;
    font-size: 14px;
  }

  .banner .text .info a .icon {
    width: 16px;
    height: 16px;
  }

  .banner .text .info a .icon img {
    width: 16px;
  }

  .banner .text .code {
    margin-top: 30px;
    gap: 20px;
  }

  .banner .text .code img {
    width: 80px;
    height: 80px;
  }

  .banner .text .code .txt .p1 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .banner .text .code .txt .p2 {
    font-size: 12px;
  }

  .container {
    padding: 30px 5% 80px 5%;
    background-size: cover;
    background-position: bottom center;
  }

  .container .title .p1 {
    font-size: 20px;
  }

  .container .title .p2 {
    line-height: 1.5;
    font-size: 16px;
    height: auto;
    margin-top: 10px;
  }

  .container .list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .container .list .item .pic .ht {
    bottom: 20px;
    padding: 0 20px;
  }

  .container .list .item .pic .ht .cn {
    font-size: 18px;
  }

  .container .list .item .pic .ht .en {
    margin-top: 5px;
    font-size: 12px;
  }

  .container .list .item .pic img {
    height: 180px;
  }

  .container .list .item .text {
    padding: 20px;
  }

  .container .list .item .text a {
    gap: 15px;
  }

  .container .list .item .text a:not(:last-child) {
    margin-bottom: 12px;
  }

  .container .list .item .text a img {
    width: 18px;
  }

  .container .list .item .text a p {
    font-size: 16px;
    line-height: 1.5;
  }
}