body{
  background: #ffffff;
}

.mian{
  margin-top: 0.543rem;
}

.top{
  position: relative;
  height: 2.08rem;
  max-width: 1000px;
  margin: 0 auto;
}

.top img{
  width: 100%;
  min-height: 100%;
  max-height: 130px;
  object-fit: cover;
}

.game_box{
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.1;
}

.top .game_played{
  position: absolute;
  top: 0.5rem;
  width: 100%;
}

.top .game_played .title{
  text-shadow: 2px 2px #000;
  font-size: 0.32rem;
  font-family: "Helvetica Neue","Open Sans","Microsoft YaHei","微软雅黑","Hiragino Sans GB","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;
  font-weight: bold;
  color: white;
  z-index: 2;
  text-align: center;
  font-family: 'Baloo Chettan', cursive;
  padding-bottom: 0.16rem;
}

.top .game_played .btn-box{
  display: flex;
  width: 100%;
  justify-content: center;
}

.top .game_played .play_game,
.top .game_played .play_game_false{
  width: 1.3rem;
  padding: 0.09rem 0.24rem;
  z-index: 2;
  border-radius: 0.3rem;
  text-align: center;
  border: none;
  animation: scaleDrew 2.5s ease-in-out infinite;
}

.play_game{
  background-color: #35FDFF;
  color: #007796;
}

.play_game_false{
  background-color: #ddd;
  color: #000;
}

@keyframes scaleDrew {
/* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.05);
  }
}

.desction{
  margin: 0.1rem;
  padding: 0.1rem;
  background-color: #fff;
  border-radius: 7px;
  font-family: Arial, Helvetica, sans-serif;
  color: #3a3a3a;
  font-size: 14px;
}

.best_game{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding: 0.1rem 0;
  box-shadow: rgb(0 0 0 / 11%) 1px -7px 25px 2px;
  border-radius: 24px;
  margin: 0.1rem;
  background-color: #157A6E;
}



.best_game .item{
  width: 1.55rem;
  height: 1.3rem;
  margin:0.05rem 0.05rem;
  border-radius: 15px;
  box-shadow: 0 0.04rem 0.08rem 0 rgb(0 0 0 / 20%),0 6px 10px 0 rgb(0 0 0 / 19%);
}

@media screen and (min-width:768px){
  .best_game{
    padding: 20px 100px;
  }

  .mian{
    margin-top: 56px;
  }
  .best_game .item{
    width: 240px;
    height: 200px;
  }
}

.best_game .item img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
}