.game_box {
  grid-row-start: 1;
  grid-column-start: 4;
  grid-row-end: span 11;
  grid-column-end: span 6;
  display: flex;
  flex-direction: column;
}
.game_box .main_box {
  height: 502px;
  margin-bottom: 20px;
}
.game_box .main_box .main {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.game_box .main_box .main .top {
  flex: 1;
  width: 100%;
  border-radius: 13px 13px 0 0;
  position: relative;
}
.game_box .main_box .main .top .bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: var(--my-game-main-top-bg-bgcolor);
  z-index: 1;
}
.game_box .main_box .main .top .bg img {
  width: 100%;
  height: 100%;
  filter: blur(30px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}
@keyframes game_shock {
  0% {
    transform: translateX(-3px) rotate(-2deg);
  }
  25% {
    transform: translateX(3px) rotate(2deg);
  }
  50% {
    transform: translateX(-3px) rotate(-2deg);
  }
  75% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.game_box .main_box .main .top .bg .btn {
  cursor: pointer;
  width: 240px;
  height: 54px;
  border-width: 0px;
  border-radius: 48px;
  box-shadow: var(--my-game-main-top-bg-btn-box-shadowr);
  background: var(--my-game-main-top-bg-btn-bgcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: game_shock 0.5s linear 1.5s 5;
  -webkit-animation: game_shock 0.5s linear 1.5s 5;
}
.game_box .main_box .main .top .bg .btn span {
  color: var(--my-game-main-top-bg-btn-span-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-align: center;
}
@media (max-width: 750px) {
  .game_box .main_box .main .top .bg .btn {
    width: 43.5vw;
    height: 11.2vw;
    border-radius: 12.8vw;
  }
  .game_box .main_box .main .top .bg .btn span {
    font-size: 4.3vw;
    line-height: 6.7vw;
  }
}
.game_box .main_box .main .bottom {
  width: calc(100% - 30px);
  height: 70px;
  display: flex;
  align-items: center;
  border-radius: 0 0 12px 12px;
  padding: 0px 20px 0px 10px;
  background: var(--my-game-main-bottom-bgcolor);
}
.game_box .main_box .main .bottom .icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}
.game_box .main_box .main .bottom .title {
  color: var(--my-game-main-bottom-title-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  padding-left: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game_box .main_box .main .bottom .love {
  cursor: pointer;
  width: 60px;
  height: 36px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 122, 252, 0);
  transition: background 0.3s;
  border-width: 0;
  margin-left: auto;
}
.game_box .main_box .main .bottom .love img {
  width: 22px;
}
.game_box .main_box .main .bottom .act {
  background: var(--my-game-main-bottom-love-act-bgcolor);
}
.game_box .screenshots_box {
  width: 100%;
  margin-bottom: 20px;
}
.game_box .screenshots_box .title {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_box .screenshots_box .title .img {
  width: 28px;
}
.game_box .screenshots_box .title span {
  color: var(--my-game-screenshots-title-span-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 37px;
  margin: 0px 6px;
}
.game_box .screenshots_box .screenshots {
  height: 275px;
  padding: 18px 10px;
  margin-top: 12px;
  background: var(--my-game-screenshots-bgcolor);
  border-radius: 13px;
  position: relative;
  overflow: hidden;
}
.game_box .screenshots_box .screenshots .non {
  height: 100%;
  overflow: hidden;
}
.game_box .screenshots_box .screenshots .non .images_box {
  height: 100%;
  display: flex;
  margin: 0px auto;
}
.game_box .screenshots_box .screenshots .non .images_box .images {
  height: 100%;
  padding: 0px 5px;
  border-radius: 7px;
}
.game_box .screenshots_box .screenshots .non .images_box .images img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
}
.game_box .info_box {
  width: 100%;
}
.game_box .info_box .title {
  height: 37px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_box .info_box .title .img {
  width: 28px;
}
.game_box .info_box .title span {
  color: var(--my-game-info-title-span-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 37px;
  margin: 0px 6px;
}
.game_box .info_box .info {
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  padding: 18px;
  margin-bottom: 20px;
  background: var(--my-game-info-bgcolor);
}
.game_box .info_box .info .top {
  width: 100%;
}
.game_box .info_box .info .top .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game_box .info_box .info .top .box .left {
  display: flex;
  align-items: center;
}
.game_box .info_box .info .top .box .left .left_icon {
  width: 123px;
  box-shadow: var(--my-game-info-top-icon-box-shadow);
  border-radius: 18px;
}
.game_box .info_box .info .top .box .left .name {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.game_box .info_box .info .top .box .left .name p {
  color: var(--my-game-info-top-name-p-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game_box .info_box .info .bot {
  color: var(--my-game-info-bot-color);
}
.game_box .info_box .info .bot .bot_title {
  font-size: 24px;
  font-weight: 600;
  padding-right: 36px;
}
.game_box .info_box .info .bot .bot_detail {
  height: 155px;
  font-size: 20px;
  line-height: 31px;
  margin-top: 10px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 750px) {
  .game_box .info_box .info .top .box {
    display: block;
  }
  .game_box .info_box .info .top .box .left .left_icon {
    width: 17.1vw;
    box-shadow: none;
    border-radius: 3.7vw;
  }
  .game_box .info_box .info .top .box .left .name {
    margin-left: 4.3vw;
  }
  .game_box .info_box .info .top .box .left .name p {
    font-size: 3.7vw;
    line-height: 5.9vw;
  }
  .game_box .info_box .info .bot .bot_title {
    font-size: 3.7vw;
    padding-right: 6vw;
  }
  .game_box .info_box .info .bot .bot_detail {
    height: 41.5vw;
    font-size: 3.7vw;
    line-height: 5.9vw;
    margin-top: 0.8vw;
  }
}
.game_box .more_games {
  width: 100%;
}
.game_box .more_games .title {
  height: 37px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_box .more_games .title .img {
  width: 28px;
}
.game_box .more_games .title span {
  color: var(--my-game-more-title-span-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 37px;
  margin: 0px 6px;
}
.game_box .more_games .my_game_grid {
  width: 100%;
  display: grid;
  grid-gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(6, 125px);
}
.game_box .more_games .my_game_grid .grid_7,
.game_box .more_games .my_game_grid .grid_8 {
  display: none;
}
@media (max-width: 1635px) {
  .game_box {
    grid-column-start: 3;
  }
}
@media (max-width: 1490px) {
  .game_box {
    grid-column-start: 2;
  }
}
@media (max-width: 910px) {
  .game_box {
    grid-column-start: 1;
    grid-column-end: span 5;
  }
  .game_box .more_games .my_game_grid {
    grid-template-columns: repeat(5, 125px);
  }
  .game_box .more_games .my_game_grid .grid_6 {
    display: none;
  }
}
@media (max-width: 750px) {
  .game_box {
    grid-column-start: 1;
    grid-column-end: span 4;
  }
  .game_box .main_box {
    height: 61vw;
    margin-bottom: 2.7vw;
  }
  .game_box .main_box .main .top {
    border-radius: 2.1vw 2.1vw 0 0;
  }
  .game_box .main_box .main .bottom {
    width: calc(100% - 3.7vw);
    height: 10.7vw;
    border-radius: 0 0 2.1vw 2.1vw;
    padding: 0 2.1vw 0 1.6vw;
  }
  .game_box .main_box .main .bottom .icon {
    width: 7.5vw;
    height: 7.5vw;
    border-radius: 1.6vw;
  }
  .game_box .main_box .main .bottom .title {
    font-size: 3.2vw;
    line-height: 4.8vw;
    padding-left: 1.9vw;
  }
  .game_box .main_box .main .bottom .love {
    width: 10.7vw;
    height: 6.4vw;
    border-radius: 6.4vw;
  }
  .game_box .main_box .main .bottom .love img {
    width: 3.7vw;
  }
  .game_box .screenshots_box {
    margin-bottom: 2.7vw;
  }
  .game_box .screenshots_box .title {
    height: 6.7vw;
  }
  .game_box .screenshots_box .title .img {
    width: 6.4vw;
  }
  .game_box .screenshots_box .title span {
    font-size: 4.3vw;
    line-height: 6.7vw;
    margin: 0px 0.8vw;
  }
  .game_box .screenshots_box .screenshots {
    height: 45.1vw;
    padding: 2.7vw 2.6vw;
    margin-top: 1.3vw;
    border-radius: 3.5vw;
  }
  .game_box .screenshots_box .screenshots .non .images_box .images {
    padding: 0px 1.85vw;
    border-radius: 1.9vw;
    max-width: 66.7vw;
  }
  .game_box .info_box .title {
    height: 6.7vw;
    margin-bottom: 2.7vw;
  }
  .game_box .info_box .title .img {
    width: 6.4vw;
  }
  .game_box .info_box .title span {
    font-size: 4.3vw;
    line-height: 6.7vw;
    margin: 0px 0.8vw;
  }
  .game_box .info_box .info {
    border-radius: 3.5vw;
    padding: 4.3vw;
    margin-bottom: 2.7vw;
  }
  .game_box .more_games .title {
    height: 6.7vw;
    margin-bottom: 2.7vw;
  }
  .game_box .more_games .title .img {
    width: 6.4vw;
  }
  .game_box .more_games .title span {
    font-size: 4.3vw;
    line-height: 6.7vw;
    margin: 0px 0.8vw;
  }
  .game_box .more_games .my_game_grid {
    grid-template-columns: repeat(4, 19.73vw);
    grid-gap: 3.47vw;
  }
  .game_box .more_games .my_game_grid .grid_6,
  .game_box .more_games .my_game_grid .grid_7,
  .game_box .more_games .my_game_grid .grid_8 {
    display: flex;
  }
}
.my_ifr {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.my_ifr .ifr_main {
  flex: 1;
  background: var(--my-game-ifr-main-bgcolor);
}
.my_ifr .ifr_main iframe {
  width: 100%;
  height: 100%;
}
.my_ifr .ifr_like {
  display: none;
  background: var(--my-game-ifr-like-bgcolor);
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.my_ifr .ret {
  cursor: pointer;
  width: 8.5vh;
  height: 6.4vh;
  position: fixed;
  top: 8vw;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 3.2vh 3.2vh 0;
  padding-left: 1.3vh;
  background: var(--my-game-ifr-ret-bgcolor);
}
.my_ifr .ret .back {
  width: 3.7vh;
}
@media screen and (orientation: landscape) {
  .my_ifr .ifr_like {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 26.7vh;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
  }
  .my_ifr .ifr_like .ifr_item {
    width: 21.3vh;
    height: 24vh;
    padding: 1.3vh 0;
  }
  .my_ifr .ifr_like .ifr_item .grid_item {
    width: 100%;
    height: 21.3vh;
    box-shadow: none;
    border-radius: 2.7vh;
  }
  .my_ifr .ifr_like .ifr_item .grid_item .icon {
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }
}
@media screen and (orientation: portrait) and (max-width: 750px) {
  .my_ifr {
    flex-direction: column;
  }
  .my_ifr .ifr_like {
    display: flex;
    align-items: center;
    width: 100%;
    height: 26.7vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }
  .my_ifr .ifr_like .ifr_item {
    width: 23vw;
    height: 21.3vw;
    padding: 0 1.3vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .my_ifr .ifr_like .ifr_item .grid_item {
    width: 100%;
    height: 20vw;
    box-shadow: none;
    border-radius: 2.7vw;
  }
  .my_ifr .ifr_like .ifr_item .grid_item .icon {
    width: 100%;
    object-fit: cover;
    border-radius: inherit;
  }
  .my_ifr .ret {
    width: 8.5vw;
    height: 6.4vw;
    top: 8vw;
    border-radius: 0 3.2vw 3.2vw 0;
    padding-left: 1.3vw;
  }
  .my_ifr .ret .back {
    width: 3.7vw;
  }
}
.play {
  text-decoration: none;
}
