.gridAdvoOerlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1055;
}
.gridAdvoOerlay.active {
    display: block;
}

.gridAdvContent {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1055;
  width: 300px;
  
}
.gridAdvContent .nineClose {
  width: 36px;
  height: 36px;
  margin: 30px auto 0;
  display: block;
  background: url('/static/images/closeIcon.png');
  background-size: 100% 100%;
  
}
.gridAdvContent.active {
  display: block;
}
.nineGridHead {
  width: 100%;
  height: 90px;
  background: url('/static/images/nineGridHead.png');
  background-size: 100% 100%;
}
.nineGridList {
  width: 100%;
  max-height: 410px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px 19px;
  box-sizing: border-box;
  background: #000;
  border-radius: 0 0 12px 12px;
  overflow-y: auto;
}
.nineGridItem {
  width: 58px;
  /* width: 24%; */
  
}
.nineGridCover {
  width: 58px;
  height: 58px;
  /* aspect-ratio: 1 / 1; */
  margin-bottom: 8px;
}
.nineGridName {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .gridAdvContent {
    width: 500px;
  }
  .gridAdvContent.active {
    display: block;
  }
  .nineGridHead {
    width: 100%;
    height: 150px;
    background: url('/static/images/nineGridHead.png');
    background-size: 100% 100%;
  }
  .nineGridList {
    width: 100%;
    max-height: 580px;
    grid-row-gap: 12px;
    grid-column-gap: 18px;
    padding: 24px 43px;
  }
  .nineGridItem {
    width: 90px;
  }
  .nineGridCover {
    width: 90px;
    height: 90px;
    /* aspect-ratio: 1 / 1; */
    margin-bottom: 8px;
  }
  .nineGridName {
    font-size: 18px;
    line-height: 24px;
  }
}