.banner {
  position: relative;
  height: 0;
  padding-top: 18.75%;
  background-image: url(../images/honor-banner.jpg);
  background-position: center;
  background-size: 100% 100%;
}
.banner.banner-women {
  background-image: url(../images/women-banner.jpg);
}
.list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.list .list-item {
  width: calc(33.333% - 13.333px);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.22s ease;
}
.list .list-item .item-img {
  width: 100%;
  padding-top: 69.953%;
  position: relative;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
.list .list-item .item-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  transition: all 0.22s ease;
}
.list .list-item .item-title {
  font-size: 18px;
  color: var(--theme);
  text-align: center;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list .list-item .item-title:hover {
  color: var(--themeHover);
}
.list .list-item:nth-child(3n) {
  margin-right: 0;
}
.list .list-item:hover {
  box-shadow: 0 6px 12px rgba(1, 89, 163, 0.05);
}
.list .list-item:hover .item-img img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .wrapper .banner {
    padding-top: 33.333%;
    height: 0;
    background-size: cover;
    position: relative;
  }
  .wrapper .banner .cnt-grid {
    position: absolute;
    height: 100%;
    top: 0;
  }
  .wrapper .banner .cnt-grid .banner-title-en {
    display: none;
  }
  .wrapper .banner .cnt-grid .banner-title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .wrapper .banner .cnt-grid .banner-tip {
    font-size: 12px;
  }
  .wrapper .tab {
    margin-bottom: 0;
  }
  .wrapper .list {
    padding: 10px;
    display: block;
    margin-bottom: 0;
  }
  .wrapper .list .list-item {
    display: block;
    margin-bottom: 10px;
    width: auto;
    margin-right: 0;
  }
  .wrapper .list .list-item .item-img {
    padding-top: 0;
    text-align: center;
  }
  .wrapper .list .list-item .item-img img {
    position: static;
    vertical-align: top;
    max-width: 100%;
    height: auto;
  }
  .wrapper .list .list-item .item-title {
    font-size: 18px;
  }
  .wrapper .list .list-item .item-intro {
    margin-bottom: 0;
  }
  .wrapper .list .list-item .item-btn {
    display: none;
  }
  .wrapper .container {
    padding-bottom: 40px;
  }
  .tab .cnt-grid {
    justify-content: flex-start;
  }
}
