.container {
  position: relative;
}

.banner {
  height: 100vh;
  position: relative;
}

.container .banner .banner_img {
  width: 100%;
  height: 100%;
}

.container .banner .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .banner .banner_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container .banner .banner_title span {
  font-size: .52rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(255, 255, 255, 1);
}


.container .content {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}

.container .content .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 17.2rem;
  justify-content: center;
}

.container .content .list .item {
  position: relative;
  overflow: hidden;
  width: 5.1rem;
  height: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.4rem;
  border-radius: 0 .4rem 0 .4rem;
}

.container .content .list .item .product_img {
  transition: transform 0.3s ease;
  width: 5.1rem;
  height: 3.2rem;
  object-fit: cover;
}

.container .content .list .item.item_lang {
  min-width: 10.7rem;
}

.container .content .list .item.item_lang .product_img {
  min-width: 10.7rem;
  transition: transform 0.3s ease;
  height: 3.2rem;
  object-fit: cover;
}

.container .content .list .item .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: .36rem 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.container .content .list .item .bg {
    width: 100%;
    height: 1.2rem;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.64) 0%, rgba(34, 34, 34, 0) 100%);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 1;
}

.container .content .list .item .info h3 {
  font-family: 'HarmonyOS Sans SC';
  font-size: 0.24rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0.16rem;
  text-align: center;
}

.container .content .list .item:hover .product_img {
  transform: scale(1.1);
}

.container .content .list .item .info .button {
  border: .01rem solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%) border-box;
  border-radius: .26rem;
  width: 1.7rem;
  height: .44rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: .14rem .14rem .14rem .25rem;
}

.container .content .list .item .info .button:hover {
  border: .01rem solid transparent;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .content .list .item .info .button:hover span {
  color: white;
}

.container .content .list .item .info .button span {
  font-size: .14rem;
  line-height: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  transition: color 0.3s ease;
}

.container .content .list .item .info .button .icons {
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .content .list .item .info .button .icon {
  height: .064rem;
  width: .032rem;
}


@media (max-width: 767px) {
    .banner {
        height: auto;
    }
    .container .content .list {
        width: 100%;
        padding: 0 .32rem;
    }
    .container .content .list .item.item_lang {
        min-width: 100%;
    }
    .container .content .list .item .info h3 {
        font-size: .3rem;
    }
    .container .content .list .item .info .combtn {
        font-size: .22rem;
    }
    .container .content .list .item {
        width: 100%;
    }
    .container .content .list .item .product_img {
        width: 100%;
    }
}








