.gridAdvBox {
  margin: 0 16px 18px;
}
.gridAdvBox .gridAdvTitle {
  padding: 0 16px;
  box-sizing: border-box;
  height: 49px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.gridAdvList {
  padding: 20px 10px;
  box-sizing: border-box;
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-row-gap: 12px;
  grid-column-gap: 6px; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  row-gap: 12px;
  background: #212121;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.gridAdvList .advItem {
  width: 60px;
}
.gridAdvList .advCover {
  width: 60px;
  height: 60px;
  margin-bottom: 4px;
  border-radius: 6px;
}
.gridAdvList .advName {
  font-size: 14px;
  line-height: 20px;
  color: #FAFAFA;
  margin-bottom: 4px;
}
.gridAdvList .advBtn {
  width: 60px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ABC9C;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.gridAdvList .advName {
  text-align: center;
  width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gridAdvBox .gridAdvList .advBtn .rightArrow {
  width: 5px;
  height: 8px;
  margin-left: 4px;
  line-height: 18px;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) { 
  .gridAdvList {
    column-gap: 10px;
  }
}