#content {
  width: 1280px;
  padding: 18px 30px;
  margin: 0 auto;
}
#content .hot {
  margin-bottom: 20px;
}
#content .hot .hot_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
#content .hot .hot_title .title_l {
  display: flex;
  align-items: center;
}
#content .hot .hot_title .title_l .kong {
  width: 6px;
  height: 16px;
  background: #11D600;
  border-radius: 20px 20px 20px 20px;
  margin-right: 6px;
}
#content .hot .hot_title .title_l span {
  font-size: 16px;
  font-family: b;
  font-weight: bold;
  color: #FFFFFF;
}
#content .hot .hot_title .title_r {
  font-size: 16px;
  font-family: m;
  font-weight: 500;
  color: #DD382E;
}
#content .hot .hot_title:hover .title_r {
  text-decoration: underline;
}
#content .hot .game_list {
  display: grid;
  grid-template-columns: repeat(10, minmax(50px, 108px));
  grid-gap: 16px;
}
#content .hot .game_list .game_item {
  width: 108px;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 12px 12px 12px 12px;
  opacity: 1;
  border: 1px solid #DD382E;
  position: relative;
}
#content .hot .game_list .game_item .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
#content .hot .game_list .game_item .game_cover {
  width: 100%;
  border-radius: 8px 8px 8px 8px;
}
#content .hot .game_list .game_item:hover {
  transform: scale(1.1);
  transition: 0.5s;
}
#content .hot .game_list .ad_box {
  grid-area: 2/5/3/11;
}
#content .hot .game_list .ad_box .ad_cont {
  width: 728px;
  height: 90px;
  background: #FFF1F1;
}
#content .hot .game_list .ad_box .ad_title {
  text-align: center;
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #999999;
}
