.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;
}

.myContent {
  padding: 100px 0 140px;
}

.myContent .list {
  display: flex;
  flex-wrap: wrap;
  /* gap: 42px; */
  /* justify-content: space-between; */
  gap: 20px;
}

.myContent .list .item {
  width: calc((100% - 100px) / 6);
  flex: auto 0;
  position: relative;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}

.myContent .list .item .link {
  border: solid 1px #dcdcdc;
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

.myContent .list .item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  transition: all 0.5s ease-in-out;
  bottom: 100%;
  left: 0;
}

.myContent .list .item .link .imgBox {
  width: 83.12%;
  /* aspect-ratio: 318 / 279; */
  padding-top: calc(279 / 318 * 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}

.myContent .list .item .link .imgBox .img {
  display: block;
  position: absolute;
  max-width: 90.5%;
  max-height: 90.5%;
  object-fit: cover;
  object-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.myContent .list .item .link .text {
  /* font-family: OPPOSans-M; */
  font-size: 16px;
  height: 50px;
  background: #EFEFEF;
  text-align: center;
  color: #313131;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myContent .list .item .link:hover {
  /* border-color: var(--theme-color); */
}
.myContent .list .item:hover{
  transform: translateY(-5px);
  box-shadow: 0 0 25px -12px rgba(0, 0, 0, .5);
}
.myContent .list .item:hover::after{
  width: 100%;
}
.myContent .list .item .link:hover .text {
  background: var(--theme-color);
  color: #FFF;
}

.myContent .pageChange {
  margin-top: 40px;
}

.toptit .title_3{margin-bottom: 50px;cursor: pointer;font-weight: 900;}
.toptit .catcon{margin-bottom: 50px;display: none;}


@media (max-width: 1200px) {
  .banner .title .ch {
    font-size: 38px;
  }

  .banner .title .en {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .banner .title {
    bottom: 50%;
    transform: translate(-50%, 50%);
  }

  .banner .title .ch {
    font-size: 32px;
  }

  .banner .title .en {
    font-size: 16px;
  }

  .myContent {
    padding: 60px 0;
  }

  .myContent .list {
    gap: 15px;
  }

  .myContent .list .item {
    width: calc(33% - 8px);
    flex-grow: 0;
  }
}

@media (max-width: 768px) {
  .banner .title .ch {
    font-size: 24px;
  }

  .banner .title .en {
    font-size: 15px;
  }

  .myContent {
    padding: 40px 0;
  }

  .myContent .list {
    gap: 15px;
    justify-content: space-between;
  }

  .myContent .list .item {
    width: calc(50% - 8px);
    flex-grow: 0;
  }

  .myContent .list .item .link .text {
    font-size: 14px;
    height: 35px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .myContent .pageChange {
    margin-top: 20px;
  }
}