head,body{
      padding: 0;
      margin: 0;
      width: 100%;
      height: 100%;
    }
/* é¡¶éƒ¨æ¸¸æˆ */
.game_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0.5rem;
  background-color:#FF4040;
}
.game_top a{
  width: 2rem;
  height: 2rem;
  position: relative;
  margin: 0.02rem;
}
.game_top a img{
  width: 2rem;
  height: 2rem;
  border-radius:0.3rem;
}
.game_top a p{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.4rem;
  display: none;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: .16rem;
}
.game_top .right_btn{
  right: 0;
}
.game_top .left_btn{
  left: 0;
}
/* ä¸­éƒ¨æ¸¸æˆ */
.middle{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.middle .middle_game{
  width: 60%;
  background-color: #FFB6C1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.1rem;
  border-radius: 0.4rem;
}
.middle a{
  border-radius: 0.075rem;
  margin: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
}
.middle a p{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  display: none;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 0.1rem;
}
.middle a img{
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.3rem;
}
/* ä¸­éƒ¨å¹¿å‘Šä¸¤è¾¹ä»£ç  */
.middle .middle_left{
  width: 20%;
  text-align: center;
}

.middle .middle_right{
  width: 20%;
  text-align: center;
}
/* åº•éƒ¨æ¸¸æˆ */
.footers{
  background-color:#6495ED;
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.1rem;
  
}
.footers a{
  width: 1.4rem;
  height: 1.4rem;
  margin: 0.1rem;
  position: relative;
}
.footers a p{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  display: none;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 0.1rem;
}
.footers a img{
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.3rem;
}
/* åª’ä½“æŸ¥è¯¢ */
@media screen and (min-width:1280px) {
  .game_top a:hover{
    transition: all 1s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  .game_top a:hover p{
    display: block;
    background-color: #00BFFF;
    opacity: .8;
  }
  .middle a:hover{
    transition: all 1s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  .middle a:hover p{
    display: block;
    background-color: #00BFFF;
    opacity: .8;
  }
  .footers a:hover{
    transition: all 1s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  .footers a:hover p{
    display: block;
    background-color: #00BFFF;
    opacity: .8;
  }
}
@media screen and (max-width:1280px){
  .middle .middle_game{
    width: 100% !important;
  }
  .middle a img{
    border-radius: 0.3rem;
  }
  .middle .middle_left{
    display: none;
  }
  .middle .middle_right{
    display: none;
  }
  .game_top{
    display: block !important;
  }
  .game_top a{
    width: 30%;
  }
  .middle .middle_game{
    display: block !important;
  }
  .middle .middle_game a{
    width: 21%;
    margin-right: 4%;
  }
  .footers{
    display: block !important;
  }
  .footers a{
    width: 21%;
    margin-right: 4%;
  }
}