.type-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.type-div-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.type-div-item-img {
  width: 109px;
  height: 109px;
  object-fit: cover;
  border-radius: 100%;
}

.type-div-item-img-title {
  text-align: center;
  margin-top: 12px;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #58b19f;
  font-weight: 500;
  font-size: 20px;
  color: #58b19f;
  line-height: 40px;
  padding: 0 20px;
  margin:27px  22px 0 23px ;
  box-sizing: border-box;
}
.type-div-item-img-title:hover{
  border: 1px solid #b4bfba00;
  color:#ffffff;
  background: #55e6c1;
}

@media only screen and (max-width:678px) {
  .type-div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0;
    column-gap: 0;
  }

  .type-div-item-img {
    zoom: 0.7;
  }
  .type-div-item-img-title {
    font-size:18px;
    color: #58b19f;
    line-height: 35px;
    padding: 0 10px;
    margin:27px  22px 0 23px ;
    box-sizing: border-box;
  }
}

.top-div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 0;
  column-gap: 0;
  padding-bottom: 53px;
}

.top-div-item {
  position: relative;
  display: inline-block;
  align-self: center;
  width: 195px;
  height: 135px;
  border-radius: 28px;
  margin-top: 40px;
}

.top-div-item-img {
  transition: filter 0.3s ease;
  /* 平滑过渡效果 */
  width: 195px;
  height: 135px;
  object-fit: cover;
  border-radius: 28px 28px 28px 28px;
}

.top-div-item-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: white;
  padding-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  /* 半透明背景 */
  opacity: 0;
  /* 文本默认不显示 */
  transition: opacity 0.3s ease;
  /* 平滑过渡效果 */
}

.top-div-item:hover .top-div-item-img {
  filter: grayscale(50%);
  /* 应用灰度滤镜 */
  border-radius: 28px 28px 28px 28px;
}

.top-div-item:hover .top-div-item-text {
  opacity: 1;
  /* 鼠标悬停时显示文本 */
}

@media only screen and (max-width:678px) {
  .top-div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
    column-gap: 0;
  }

  .top-div-item {
    zoom: 0.7;
  }
}

.game-content{
  font-weight: 500;
  font-size: 16px;
  color: #B4BFBA;
  line-height: 26px;
  margin: 10px 0 53px 0;
}



.list-div {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 0;
  column-gap: 25px;
}

.list-div-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 30px;
  background: #000000;
  border-radius: 16px 16px 16px 16px;
  width: 100%;
}

.list-div-item-img {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 56%;
}

.list-div-item-img img {
  border-radius: 16px 16px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-div-item-content {
  width: 100%;
  height: 65px;
  background: #000000;
  border-radius: 16px 16px 16px 16px;
}

.list-div-item-content-1 {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  padding: 0 11px;
  line-height: 21px;
  margin-top: 10px;
}

.list-div-item-content-2 {
  font-weight: 400;
  font-size: 16px;
  padding: 0 11px;
  color: #999;
  line-height: 19px;
  margin-top: 7px;
}


@media only screen and (max-width:678px) {
  .list-div {
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
    column-gap: 25px;
  }

  .list-div-item {
    /* width: 95%; */
  }

  /* .list-div-item {
    zoom: 0.4;
  } */
}
