@import url(common.css);
@import url(head.css);
@import url(foot.css);
.indexWrap {
  padding: 0 3.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.indexWrap .pcAd,
.indexWrap .tabletAd,
.indexWrap .mobileAd {
  display: none;
}
.indexWrap .trending .trendingTitle {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3rem;
  color: #333333;
  padding: 1.1rem 0;
}
.indexWrap .trending .itemList {
  display: grid;
  margin: 1.6rem 0;
}
.indexWrap .trending .itemList .item {
  flex: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  border: 1px solid #F2F2F2;
  margin-left: -1px;
  margin-top: -1px;
  padding: 2.4rem 0;
}
.indexWrap .trending .itemList .item a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.indexWrap .trending .itemList .item .itemImg {
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 2rem;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 2px 4px #0000001a;
}
.indexWrap .trending .itemList .item .itemTitle {
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #3D332D;
  margin: 0.8rem;
  text-align: center;
}
.indexWrap .trending .itemList .item .itemDescribe {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexWrap .trending .itemList .item .itemDescribe .star img {
  width: 2rem;
  height: 2rem;
}
.indexWrap .trending .itemList .item .itemDescribe .score {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #FFA940;
  padding: 0 0.4rem;
}
.indexWrap .trending .itemList .item:hover {
  background-color: #F6F6F6;
}
.indexWrap .trending .itemList .item:hover .itemTitle {
  color: #00AD7C;
}
@media only screen and (max-width: 767px) {
  .indexWrap {
    padding: 0 1.6rem;
    display: block;
  }
  .indexWrap .mobileAd {
    display: grid;
    grid-column: span 3;
  }
  .indexWrap .trending .itemList {
    grid-gap: 1.6rem 1.6rem;
    grid-template-columns: repeat(3, calc((100% - 3.2rem) / 3));
  }
  .indexWrap .trending .itemList .item {
    border: none;
    margin: 0;
    padding: 0;
  }
  .indexWrap .trending .itemList .item .itemImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .indexWrap .trending .itemList .item .itemTitle {
    -webkit-line-clamp: 2;
  }
  .indexWrap .trending .itemList .item:hover {
    background-color: #FFFFFF;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .indexWrap .tabletAd {
    display: grid;
    grid-column: span 4;
  }
  .indexWrap .trending .itemList {
    grid-template-columns: repeat(4, calc((100% - 0rem) / 4));
  }
}
@media only screen and (min-width: 1367px) {
  .indexWrap {
    padding: 0 2.4rem;
  }
  .indexWrap .pcAd {
    display: grid;
    grid-column: span 5;
  }
  .indexWrap .trending .itemList {
    grid-template-columns: repeat(5, calc((100% - 0rem) / 5));
  }
}
