#content {
  display: flex;
  justify-content: space-between;
}
#content .games-l {
  width: 846px;
}
#content .games-l .games-p {
  position: relative;
}
#content .games-l .games-p .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 846px;
  height: 447px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 22;
}
#content .games-l .games-p .bg div {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
}
#content .games-l .games-p .bg div .img1 {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  object-fit: cover;
}
#content .games-l .games-p .bg div h2 {
  font-size: 18px;
  font-family: B;
  color: #211A1A;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #211A1A;
  -webkit-text-stroke: 4px transparent;
}
#content .games-l .games-p .bg div .img2 {
  width: 194px;
  height: 74px;
  margin-top: 12px;
  cursor: pointer;
}
#content .games-l .games-p .test-game-p {
  width: 846px;
  height: 447px;
  position: relative ;
}
#content .games-l .games-all {
  margin-top: 16px;
}
#content .games-l .games-all .game-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(50px, 1fr));
  grid-gap: 12px;
  margin-bottom: 16px;
}
#content .games-l .games-all .game-list li a {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
}
#content .games-l .games-all .game-list li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
}
#content .games-l .games-all .game-list li a span {
  display: none;
  padding: 0 10px;
  width: 100%;
  height: 28px;
  font-family: m;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: 2;
}
#content .games-l .games-all .game-list li:hover {
  transform: translateY(-10px);
}
#content .games-l .games-all .game-list li:hover a span {
  display: block;
}
#content .games-l .games-all .view-m {
  display: block;
  width: 394px;
  height: 48px;
  background: #FFE048;
  border-radius: 8px 8px 8px 8px;
  color: #000;
  font-size: 20px;
  font-family: B;
  line-height: 48px;
  text-align: center;
  margin: 0 auto;
}
#content .games-l .description {
  width: 846px;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  padding: 16px;
  margin-top: 16px;
}
#content .games-l .description h2 {
  color: #FFFFFF;
  font-size: 18px;
  font-family: B;
}
#content .games-l .description .description-text {
  color: #FFFFFF;
  line-height: 28px;
  font-size: 16px;
  font-family: M;
  margin-top: 4px;
  margin-bottom: 12px;
}
#content .games-l .description .tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}
#content .games-l .description .tags a {
  display: block;
  padding: 6px 24px;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #FFFFFF;
  margin-right: 8px;
  margin-bottom: 8px;
}
#content .games-l .description .tags a:hover {
  border: 1px solid #FFE048;
  color: #FFE048;
}
#content .games-r {
  width: 370px;
}
#content .games-r .gg {
  width: 100%;
  background: #fff;
  border: 1px solid #FFFFFF;
  margin-bottom: 16px;
}
#content .games-r .gg .ad {
  text-align: center;
}
#content .games-r .gg .ad span {
  display: block;
  height: 32px;
  background: #FFE048;
  color: #333;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}
#content .games-r .gg .ad .ad-p {
  min-height: 90px;
}
#content .games-r .games-all .game-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  grid-gap: 12px;
  margin-bottom: 16px;
}
#content .games-r .games-all .game-list li a {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
}
#content .games-r .games-all .game-list li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
}
#content .games-r .games-all .game-list li a span {
  display: none;
  padding: 0 10px;
  width: 100%;
  height: 28px;
  font-family: m;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: 2;
}
#content .games-r .games-all .game-list li:hover {
  transform: translateY(-10px);
}
#content .games-r .games-all .game-list li:hover a span {
  display: block;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content {
    flex-direction: column;
  }
  #content .games-l {
    width: 100%;
  }
  #content .games-l .games-p .bg {
    width: 100%;
  }
  #content .games-l .games-p .test-game-p {
    width: 100%;
  }
  #content .games-l .games-all {
    margin-top: 16px;
  }
  #content .games-l .games-all .game-list {
    grid-template-columns: repeat(6, minmax(50px, 1fr));
  }
  #content .games-l .games-all .view-m {
    width: 100%;
  }
  #content .games-l .description {
    width: 100%;
  }
  #content .games-r {
    width: 100%;
  }
  #content .games-r .games-all .game-list {
    grid-template-columns: repeat(6, minmax(50px, 1fr));
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content {
    flex-direction: column;
  }
  #content .games-l {
    width: 100%;
  }
  #content .games-l .games-p .bg {
    width: 100%;
  }
  #content .games-l .games-p .test-game-p {
    width: 100%;
  }
  #content .games-l .games-all {
    margin-top: 16px;
  }
  #content .games-l .games-all .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
  #content .games-l .games-all .view-m {
    width: 100%;
  }
  #content .games-l .description {
    width: 100%;
  }
  #content .games-r {
    width: 100%;
  }
  #content .games-r .games-all .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content {
    flex-direction: column;
  }
  #content .games-l {
    width: 100%;
  }
  #content .games-l .games-p .bg {
    width: 100%;
  }
  #content .games-l .games-p .test-game-p {
    width: 100%;
  }
  #content .games-l .games-all {
    margin-top: 16px;
  }
  #content .games-l .games-all .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
  #content .games-l .games-all .view-m {
    width: 100%;
  }
  #content .games-l .description {
    width: 100%;
  }
  #content .games-r {
    width: 100%;
  }
  #content .games-r .games-all .game-list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content {
    flex-direction: column;
  }
  #content .games-l {
    width: 100%;
  }
  #content .games-l .games-p .bg {
    width: 100%;
  }
  #content .games-l .games-p .test-game-p {
    width: 100%;
  }
  #content .games-l .games-all {
    margin-top: 16px;
  }
  #content .games-l .games-all .game-list {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
  #content .games-l .games-all .view-m {
    width: 100%;
  }
  #content .games-l .description {
    width: 100%;
  }
  #content .games-r {
    width: 100%;
  }
}
