.game_box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.game_box .goHome {
  position: fixed;
  background: #fff;
  padding: 3px 10px;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.3);
  top: 30px;
  left: 0;
  z-index: 3;
}
.game_box .goHome img {
  width: 30px;
}
.game_box .game_top {
  position: relative;
  margin: 20px 0px;
  border-radius: 15px;
  overflow: hidden;
}
.game_box .game_top .top_ifr {
  width: 100%;
  height: 100%;
  background: #cecece;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.game_box .game_top .top_ifr iframe {
  width: 100%;
  height: 100%;
}
.game_box .game_top .bgImg {
  filter: blur(12px);
  width: 100%;
  border-radius: inherit;
}
@media (max-width: 470px) {
  .game_box .game_top {
    margin: 4.5vw 0;
    border-radius: 2vw;
  }
  .game_box .game_top .bgImg {
    filter: blur(1.5vw);
  }
}
.game_box .game_top .top_main {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
}
.game_box .game_top .top_main .main {
  color: #fff;
  height: calc(50% - 20px);
  display: flex;
  align-items: center;
  padding: 10px 15px;
}
@media (max-width: 470px) {
  .game_box .game_top .top_main .main {
    width: calc(100% - 3.3vw);
    height: calc(50% - 2.2vw);
    padding: 1.1vw 1.6vw;
  }
}
.game_box .game_top .top_main .main .main_left {
  width: 20%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.game_box .game_top .top_main .main .main_left img {
  width: 90%;
  margin: 5%;
  border-radius: inherit;
}
.game_box .game_top .top_main .main .main_right {
  flex: 1;
  margin-left: 20px;
  height: 90%;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.game_box .game_top .top_main .main .main_right .main_name {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game_box .game_top .top_main .main .main_right .main_star {
  margin-top: 8px;
  display: flex;
  align-items: start;
  font-size: 12px;
}
.game_box .game_top .top_main .main .main_right .main_star .star {
  display: flex;
  align-items: center;
}
.game_box .game_top .top_main .main .main_right .main_star .star img {
  margin: 5px 10px;
  width: 100px;
}
.game_box .game_top .top_main .main .main_right .main_star .like {
  margin: 0 10px 0 auto;
  display: flex;
  align-items: center;
}
.game_box .game_top .top_main .main .main_right .main_star .like img {
  margin: 5px;
  width: 25px;
}
@media (max-width: 470px) {
  .game_box .game_top .top_main .main .main_right {
    margin-left: 2.3vw;
  }
  .game_box .game_top .top_main .main .main_right .main_name {
    font-size: 5vw;
    line-height: 6.3vw;
  }
  .game_box .game_top .top_main .main .main_right .main_star {
    margin-top: 1vw;
    font-size: 3vw;
  }
  .game_box .game_top .top_main .main .main_right .main_star .star img {
    margin: 0.7vw 1.2vw;
    width: 18.2vw;
  }
  .game_box .game_top .top_main .main .main_right .main_star .like {
    margin: 0 1.2vw 0 auto;
  }
  .game_box .game_top .top_main .main .main_right .main_star .like img {
    margin: 0.6vw;
    width: 4.7vw;
  }
}
.game_box .game_top .top_main .play_box {
  height: calc(50% - 20px);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes playKey {
  26% {
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
  }
  28% {
    transform: rotate(-2deg) scale(1.04);
    -webkit-transform: rotate(-2deg) scale(1.04);
  }
  32% {
    transform: rotate(1deg) scale(1.01);
    -webkit-transform: rotate(1deg) scale(1.01);
  }
  34% {
    transform: rotate(-2deg) scale(1.02);
    -webkit-transform: rotate(-2deg) scale(1.02);
  }
  36% {
    transform: rotate(3deg) scale(1);
    -webkit-transform: rotate(3deg) scale(1);
  }
  39% {
    transform: rotate(-1deg) scale(1);
    -webkit-transform: rotate(-1deg) scale(1);
  }
  44% {
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
  }
}
.game_box .game_top .top_main .play_box .play_a {
  width: 90%;
  max-width: 330px;
  height: 60%;
  max-height: 55px;
  text-decoration: none;
}
.game_box .game_top .top_main .play_box .play {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 33px;
  background: #ff9901;
  box-shadow: 0 4px 0 #b15c00;
  animation: playKey 3s linear infinite backwards;
  -webkit-animation: playKey 3s linear infinite backwards;
}
@media (max-width: 470px) {
  .game_box .game_top .top_main .play_box {
    height: calc(50% - 2.2vw);
    padding: 1.1vw 1.6vw;
  }
  .game_box .game_top .top_main .play_box .play {
    font-size: 5vw;
    border-radius: 8.3vw;
    box-shadow: 0 1vw 0 #b15c00;
  }
}
.game_box .game_item_box {
  margin: 8px 0px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 450px) {
  .game_box .game_item_box {
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 3vw;
    border-radius: 1.5vw;
  }
}
.game_box .game_item_box .item_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #cecece;
}
@media (max-width: 470px) {
  .game_box .game_item_box .item_title {
    font-size: 4.2vw;
    line-height: 6.2vw;
    padding-bottom: 2.5vw;
    margin-bottom: 4vw;
    border-bottom: 0.5vw solid #cecece;
  }
}
.game_box .new_box .new_bottom {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 20px));
  grid-auto-flow: dense;
  grid-gap: 20px;
  justify-content: center;
}
@media (max-width: 470px) {
  .game_box .new_box .new_bottom {
    grid-template-columns: repeat(3, calc(30% - 0.7vw));
    grid-gap: 3vw;
  }
}
.game_box .people_box .people_bottom {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, calc(calc(100% - 80px) / 5));
  grid-auto-flow: dense;
  grid-gap: 15px;
  justify-content: center;
}
@media (max-width: 470px) {
  .game_box .people_box .people_bottom {
    grid-template-columns: repeat(5, calc(calc(100% - 15vw) / 5));
    grid-gap: 3vw;
  }
}
.game_box .rece_box .rece_bottom {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, calc(calc(100% - 80px) / 5));
  grid-auto-flow: dense;
  grid-gap: 15px;
  justify-content: center;
}
.game_box .rece_box .rece_bottom .games_item {
  position: relative;
}
.game_box .rece_box .rece_bottom .games_item .rece {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
}
@media (max-width: 470px) {
  .game_box .rece_box .rece_bottom {
    grid-template-columns: repeat(5, calc(calc(100% - 15vw) / 5));
    grid-gap: 3vw;
  }
  .game_box .rece_box .rece_bottom .games_item .rece {
    top: -1.2vw;
    right: -1.2vw;
    width: 6.5vw;
  }
}
.game_box .detail_box .detail_bottom {
  color: #000;
  margin-top: -10px;
  padding: 0 8px 30px;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 470px) {
  .game_box .detail_box .detail_bottom {
    margin-top: -2.2vw;
    padding: 0 1.8vw 6.5vw;
    font-size: 3vw;
    line-height: 4.8vw;
  }
}
