body {
  background: #396DFF;
}
#content .game_box {
  width: 100%;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 24px 24px;
}
#content .game_box .game_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
#content .game_box .game_title span {
  font-size: 24px;
  font-family: s;
  font-weight: 600;
  color: #FFFFFF;
}
#content .game_box .game_title img {
  width: 30px;
  height: 30px;
}
#content .game_box .game_list {
  background: #FFFFFF;
  border-radius: 24px 24px 24px 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(9, minmax(50px, 110px));
  grid-gap: 20px;
}
#content .game_box .game_list .game_item {
  position: relative;
}
#content .game_box .game_list .game_item .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
#content .game_box .game_list .game_item .game_cover {
  width: 110px;
  height: 110px;
  border-radius: 12px 12px 12px 12px;
  margin-bottom: 8px;
}
#content .game_box .game_list .game_item h3 {
  font-size: 16px;
  font-family: m;
  font-weight: 600;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#content .game_box .game_list .game_item .h5_img,
#content .game_box .game_list .game_item .apk_img {
  width: 52px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#content .game_box .game_list .game_item:hover h3 {
  color: #333;
  text-decoration: underline;
}
#content .game_box .game_list .ad_box {
  grid-area: 1/1/3/4;
  height: 296px;
  background: #F5F5F5;
}
#content .game_box .game_list .ad_box .ad_cont {
  width: 336px;
  height: 280px;
  background: #FFFFFF;
  margin: 0 auto;
}
#content .game_box .game_list .ad_box .ad_title {
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #D2D2D2;
  text-align: center;
}
#content .game_box:last-child {
  margin-bottom: 0;
}
