body {
  background: #FFF9E7;
}
#content .game-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(50px, 1fr));
  grid-gap: 16px;
}
#content .game-list .game-item a {
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 16px;
}
#content .game-list .game-item a .img-box {
  width: 100%;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  margin-bottom: 6px;
}
#content .game-list .game-item a .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#content .game-list .game-item a h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: b;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  line-height: 19px;
  text-align: center;
  width: 100%;
  margin-bottom: 4px;
}
#content .game-list .game-item a .quan {
  width: 24px;
  height: 24px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#content .game-list .game-item a .quan img {
  width: 12px;
  height: 12px;
}
#content .game-list .game-item a .quan .d-shen {
  display: none;
}
#content .game-list .game-item a:hover .quan {
  background: #FFD900;
}
#content .game-list .game-item a:hover .quan .d-shen {
  display: block;
}
#content .game-list .game-item a:hover .quan .d-qian {
  display: none;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content .game-list {
    grid-template-columns: repeat(8, minmax(50px, 1fr));
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .game-list {
    grid-template-columns: repeat(6, minmax(50px, 1fr));
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .game-list {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
}
