@import url('../css/head-foot.css');
#content .cont-r {
  width: 100%;
  margin: 0 auto;
}
#content .cont-r .game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 137px);
  grid-template-rows: repeat(auto-fill, 137px);
  grid-gap: 16px;
}
#content .cont-r .game-list a {
  width: 100%;
  height: 100%;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  border: 2px solid #EEEEEE;
  overflow: hidden;
  position: relative;
}
#content .cont-r .game-list a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content .cont-r .game-list a .bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, #3a2c2c 100%);
  position: absolute;
  top: 0;
  display: none;
}
#content .cont-r .game-list a .bg h4 {
  width: 117px;
  font-size: 16px;
  font-family: s;
  font-weight: 600;
  color: #FFD61B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  left: 10px;
  bottom: 16px;
}
#content .cont-r .game-list a:hover {
  transform: scale(1.2);
  z-index: 2;
}
#content .cont-r .game-list a:hover .bg {
  display: block;
}
#content .cont-r .gg {
  text-align: center;
  border-radius: 24px;
  position: relative;
  height: 300px;
  margin-bottom: 22px;
}
#content .cont-r .gg .gg-title {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
