.game_ifr {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: #aaaaaa;
}
.game_ifr .ifr {
  width: 100%;
  height: 100%;
}
.game_ifr .ifr iframe {
  width: 100%;
  height: 100%;
}
.game_ifr .goBack {
  cursor: pointer;
  padding: 3px 12px;
  position: fixed;
  top: 30px;
  left: 0;
  background: #fff;
  border-radius: 0 35px 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_ifr .goBack img {
  width: 40px;
}
@media (max-width: 600px) {
  .game_ifr .goBack {
    padding: 0.5vw 2vw;
    top: 10vw;
    border-radius: 0 6vw 6vw 0;
  }
  .game_ifr .goBack img {
    width: 7vw;
  }
}
.game_main {
  display: flex;
  justify-content: center;
}
.game_main .game_item {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  background: #00c6c24d;
  border-radius: 30px;
  min-height: 510px;
  padding: 15px;
  max-width: 1064px;
}
@media screen and (max-width: 750px) {
  .game_main .game_item {
    min-height: auto;
    background: #00c6c200;
    padding: 0;
    border-radius: 0;
  }
}
.game_main .game_item .game_bg {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}
.game_main .game_item .game_bg .bg {
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  object-fit: cover;
  margin: -80px;
  filter: blur(20px) brightness(1.2);
}
.game_main .game_item .game_bg .play_box {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.game_main .game_item .game_bg .play_box .game_icon {
  border: 2px #fff solid;
  border-radius: 10px;
  box-shadow: inset 0 10px 10px #00000080, 0 0 6px #3a5a95b3;
  width: 146px;
  display: flex;
}
.game_main .game_item .game_bg .play_box .game_icon .icon {
  width: 100%;
  border-radius: inherit;
}
.game_main .game_item .game_bg a {
  text-decoration: none;
}
.game_main .game_item .game_bg .play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 56px;
  background-color: #09516980;
  margin: 35px auto;
  border-radius: 99999px;
  box-shadow: inset 0 3px 0 0 #00fcff, inset 20px 0 50px #08eee14d, inset 20px 0 300px #00c8bb0d, inset 0 20px 50px #08eee14d, inset 0 0 10px #affffa, 4px 4px 4px 0 #0a0a0a80;
}
.game_main .game_item .game_bg .play .play_icon {
  width: 26px;
  margin: 8px;
}
.game_main .game_item .game_bg .play span {
  color: #affffa;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .game_main .game_item .game_bg {
    border-radius: 0;
    flex-direction: column;
  }
  .game_main .game_item .game_bg .bg {
    width: 100%;
    height: auto;
    margin: 0px;
    filter: none;
    border-radius: 2.7vw;
    box-shadow: 4px 4px 4px 0 #0a0a0a80;
  }
  .game_main .game_item .game_bg .play_box {
    position: relative;
  }
  .game_main .game_item .game_bg .play_box .game_icon {
    display: none;
  }
  .game_main .game_item .game_bg .play {
    width: 34.7vw;
    height: 7.5vw;
    margin: 4.7vw auto;
  }
  .game_main .game_item .game_bg .play .play_icon {
    width: 3.5vw;
    margin: 1.2vw;
  }
  .game_main .game_item .game_bg .play span {
    font-size: 2.2vw;
  }
}
.game_main .game_item .game_title {
  width: calc(100% - 22px);
  height: 52px;
  display: flex;
  align-items: center;
  background-color: #059b9a;
  background-image: url('../img/rests/mo.webp');
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 10px #0a0a0a80, inset 0 1px 3px #affffa;
  padding: 8px 11px 10px;
}
.game_main .game_item .game_title .title_icon {
  width: 50px;
  border: 2px #fff solid;
  border-radius: 0 15px 15px 15px;
  margin-right: 20px;
}
.game_main .game_item .game_title .title_txt {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .game_main .game_item .game_title {
    display: none;
  }
}
.game_main .main_reco {
  width: 220px;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
}
.game_main .main_reco .grid_item {
  margin: 8px 0px;
}
@media screen and (max-width: 1023px) {
  .game_main .main_reco {
    width: 160px;
  }
}
@media screen and (max-width: 750px) {
  .game_main .main_reco {
    display: none;
  }
}
.game_detail {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .game_detail {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .game_detail {
    margin-top: 4vw;
  }
}
.game_detail .detailed {
  max-width: 864px;
  min-height: 70%;
  background-color: #00c6c24d;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 #0a0a0a80;
  padding: 35px;
}
.game_detail .detailed .d_title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.game_detail .detailed .d_star {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.game_detail .detailed .d_star .star {
  width: 120px;
  margin-right: 10px;
}
.game_detail .detailed .d_star span {
  color: #9fd96b;
  font-size: 22px;
  font-weight: 600;
}
.game_detail .detailed .d_detailed {
  color: #ffffffcc;
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 750px) {
  .game_detail .detailed {
    border-radius: 1.4vw;
    padding: 4.7vw;
  }
  .game_detail .detailed .d_title {
    font-size: 3.2vw;
    margin-bottom: 2.7vw;
  }
  .game_detail .detailed .d_star {
    margin-bottom: 2.7vw;
  }
  .game_detail .detailed .d_star .star {
    width: 16vw;
    margin-right: 1.4vw;
  }
  .game_detail .detailed .d_star span {
    font-size: 3vw;
  }
  .game_detail .detailed .d_detailed {
    font-size: 2.2vw;
    line-height: 3.7vw;
  }
}
.game_detail .game_classify {
  width: 360px;
  padding: 0 30px;
}
.game_detail .game_classify .category_item {
  margin-bottom: 9px;
}
@media screen and (max-width: 1023px) {
  .game_detail .game_classify {
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .game_detail .game_classify .category_item {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .game_detail .game_classify {
    margin-top: 2.7vw;
    grid-gap: 1.4vw;
  }
}
.game_reco {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1215px) {
  .game_reco {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .game_reco {
    margin-top: 4vw;
  }
}
.game_reco .game_grid_box {
  flex: 1 1;
  max-width: 884px;
}
@media screen and (max-width: 1407px) {
  .game_reco .game_grid_box {
    max-width: 744px;
  }
}
@media screen and (max-width: 1215px) {
  .game_reco .game_grid_box {
    max-width: none;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .game_reco .game_grid_box {
    margin-bottom: 4vw;
  }
}
.game_reco .game_grid_box .game_grid {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 10px * 3) / 4));
  grid-auto-flow: dense;
  grid-gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 699px) {
  .game_reco .game_grid_box .game_grid {
    grid-gap: 2vw;
    grid-template-columns: repeat(2, calc((100% - 2vw) / 2));
  }
}
.game_reco .game_fame {
  flex: 1 1;
  width: 42%;
  max-width: 380px;
  margin-left: 30px;
  padding: 50px;
  border-radius: 55px;
  background: linear-gradient(#0000, #00c8bb80), url('../img/rests/kuang.svg');
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1407px) {
  .game_reco .game_fame {
    max-width: 290px;
  }
}
@media screen and (max-width: 1215px) {
  .game_reco .game_fame {
    width: auto;
    max-width: none;
    margin-left: 0;
    padding: 50px;
  }
}
@media screen and (max-width: 750px) {
  .game_reco .game_fame {
    padding: 6.7vw;
  }
}
.game_reco .game_fame .fame_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.game_reco .game_fame .fame_title span {
  color: #9fd96b;
}
@media screen and (max-width: 750px) {
  .game_reco .game_fame .fame_title {
    font-size: 3.2vw;
    margin-bottom: 2.7vw;
  }
}
.game_reco .game_fame .fame_grid {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 12px) / 2));
  grid-auto-flow: dense;
  grid-gap: 12px;
  justify-content: center;
}
.game_reco .game_fame .fame_grid .rect {
  grid-column-end: span 2;
  grid-row-start: 2;
  grid-column-start: 1;
}
@media screen and (max-width: 750px) {
  .game_reco .game_fame .fame_grid {
    grid-template-columns: repeat(2, calc((95% - 1.6vw) / 2));
    grid-gap: 1.6vw;
  }
}
