#content .game-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(50px, 1fr));
  grid-gap: 20px;
  margin-bottom: 24px;
}
#content .game-list .one {
  grid-area: 2/2/4/4;
}
#content .game-list .two {
  grid-area: 3/6/5/8;
}
#content .game-list li a {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  border-radius: 30px;
  box-shadow: 0px 4px 7px 0px #BABABA;
}
#content .game-list li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  z-index: 1;
}
#content .game-list li a .title-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
#content .game-list li a .title-box span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 8px;
  font-family: m;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
}
#content .game-list li:hover {
  transform: scale(1.1);
}
#content .game-list li:hover a img {
  border-color: #fff;
}
#content .game-list li:hover a .title-box {
  display: flex;
}
#content .more {
  width: 304px;
  height: 58px;
  background: #10D9D2;
  border-radius: 10px 10px 10px 10px;
  font-family: b;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 58px;
  text-align: center;
  margin: 0 auto 40px;
  cursor: pointer;
}
#content h3 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
#content h3 img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
#content h3 span {
  font-family: b;
  font-weight: bold;
  font-size: 24px;
  color: #333333;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content .game-list {
    grid-template-columns: repeat(8, minmax(50px, 1fr));
  }
  #content .game-list .two {
    grid-area: 3/6/5/8;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .game-list {
    grid-template-columns: repeat(6, minmax(50px, 1fr));
  }
  #content .game-list .two {
    grid-area: 5/4/7/6;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
  #content .game-list .two {
    grid-area: 5/1/7/3;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .game-list {
    margin-bottom: 30px;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
  #content .game-list .one {
    grid-area: 2/2/4/4;
  }
  #content .game-list .two {
    grid-area: 4/1/6/3;
  }
}
