.banner {
  position: relative;
}

.banner .img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-position: center;
  object-fit: cover;
}

.banner .title {
  left: 50%;
  bottom: 27%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
}

.banner .title .ch {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 60px;
  line-height: 1.33;
  color: #ffffff;
}

.banner .title .en {
  font-family: Gilroy-Regular;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
}
.title_1 {
  text-align: center;
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 48px;
  position: relative;
  padding-bottom: 22px;
  line-height: 1;
  width: fit-content;
  margin: auto;
  color: #253745;
}

.title_1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 27.60%;
  height: 3px;
  background: var(--theme-color);
  transition: all 0.3s;
}

.title_1:hover::after {
  width: 76%;
}

.title_2 {
  padding-top: 20px;
  font-family: OPPOSans-R;
  font-size: 18px;
  color: #535353;
  text-align: center;
  width: 90.5%;
  margin: auto;
  max-width: 1400px;
}

.myContent {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.myContentActive {
  max-height: 10000px;
}

.market {
  padding: 100px 0;
}

.market .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 65px;
  gap: 80px 40px;
}

.market .list .item {
  width: calc((100% - 120px) / 4);
  aspect-ratio: 16 / 21;
  
}

.market .list .item li {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.market .list .item .text {
    position: absolute;
  margin: auto;
  max-width: 90.5%;
  padding-top: 20px;
  font-family: OPPOSans-M;
  font-size: 24px;
  padding-bottom: 14px;

  color: #253745;
  text-align: center;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.market .list .item .text::after {
  /*position: absolute;*/
  /*content: '';*/
  /*left: 50%;*/
  /*bottom: 0;*/
  /*transform: translateX(-50%);*/
  /*width: 30px;*/
  /*height: 1px;*/
  /*background: #FFF;*/
}

.market .link {
  display: block;
}

.market .link .btn {
  width: 160px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 24px;
  border: solid 1px #898989;
  margin: auto;
  margin-top: 40px;
  font-family: OPPOSans-M;
  font-size: 16px;
  color: #7d7d7d;
  transition: all 0.3s;
  display: block;
}

.market .link .btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFF;
}

@media (max-width: 1024px) {
  .title_1 {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .title_2 {
    font-size: 16px;
    padding-top: 10px;
  }
  .market {
    padding: 60px 0;
  }
  .market .list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 80px 20px;
  }
  .market .list .item {
    width: calc((100% - 40px) / 3);
    /*margin-bottom: 3%;*/
  }
  .market .list .item:not(:nth-child(3n)) {
    /*margin-right: 5%;*/
  }
}

@media (max-width: 768px) {
  .title_1 {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .title_2 {
    font-size: 14px;
  }
  .market {
    padding: 40px 0;
  }
  .market .list {
    padding-top: 30px;
    justify-content: space-between;
  }
  .market .list .item {
    width: calc((100% - 20px) / 2);
    border-radius: 3%;
  }
  .market .list .item .text {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 8px;
    width: 100%;
  }
  .market .list .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .market .link .btn {
    width: 120px;
    height: 35px;
    font-size: 12px;
    margin-top: 20px;
  }
}
