.gameCard{
  width: 100%;
  /* padding: 10%; */
  min-height: 100px;
  /* background-color: #fff; */
  position: relative;
  .game_card_bg{
    width: 100%;
    padding-top: 56%;
    border-radius: 20px;
    background-image: url("./images/game_bg.png");
    background-position: center;
    background-size: 100% 100%;
    transition: all .5s ease;
    position: relative;
    .game_card_box{
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 3%;
      .game_text{
        .game_name_logo{
          width: 200px;
          transform-origin: left center;
          transform: scale(1);
          transition: all .5s ease;
        }
      }
      .game_button{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 270px;
        .game_button_left{
          img{
            width: 100px;
            border-radius: 15px;
          }
        }
        .game_button_right{
          h6{margin-top: 0 !important;}
          img{
            width: 150px;
            cursor: pointer;
          }
        }
      }
    }
    .game_card_jxw{
      position: absolute;
      right: 0;
      bottom: -20px;
      transition: all .5s ease;
    }
    &:hover{
      background-size: 130% 130%;
      .game_card_box{
        .game_text{
          .game_name_logo{
            transform: scale(.7);
          }
        }
      }
      .game_card_jxw{
        right: -20px;
        bottom: 25px;
        transform: scale(1.1);
      }
    }
    &::before{
      content: " ";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, .5);
    }
  }
}

@media (max-width:768px) {
  .gameCard{
    .game_card_bg{
      padding-top: 150%;
      background-size: 250% 100%;
      .game_card_jxw{
        /* display: none; */
        width: 35vw;
      }
      &:hover{
        background-size: 300% 120%;
      }
    }
  }
}