.bottom{
  background-color: #0C0D14;
  color: #fff;
  padding: 0.1rem;
  font-size: .16rem;
  text-align: center;
}

.bottom a{
  color: #fff;
  text-decoration: none;
}

.bottom .copyright{
  margin-top: 0.05rem;
}


.games_list{
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  content-visibility: visible;
  margin-top: -0.04rem;
  padding: 0;
}

 .game_item{
  border-radius: calc(8px + 2px);
  border-width: 0.02rem;
  border-style: solid;
  border-color: transparent;
  box-sizing: content-box;
  display: block;
  z-index: 0;
  -webkit-transition: -webkit-transform .1s cubic-bezier(.5, 0, .1, 1);
  transition: transform .1s cubic-bezier(.5, 0, .1, 1);
  transition-delay: 0s;
  background-color: rgba(255,255,255,0.07);
  -webkit-background-clip: content-box;
  background-clip: content-box;
  padding: 0;
  margin: 0.02rem;
  width: 1.63rem;
  height: 1.63rem;
  position: relative;
  text-decoration: none;
  color: #fff;
}

 .game_item img{
  -webkit-transition: opacity .3s cubic-bezier(.5, 0, .1, 1);
  transition: opacity .3s cubic-bezier(.5, 0, .1, 1);
  transition-delay: 0ms;
  z-index: 1;
  border-radius: 0.08rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}

 .game_name{
  color: #fff;
  position: absolute;
  bottom: 0.05rem;
  margin-bottom: 0.04rem;
  margin-left: 0.08rem;
  z-index: 4;
  font-size: 0.112rem;
  font-weight: 700;
  width: calc(100% - 16px);
  height: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


@media screen and (min-width:769px){
  .game_item{
    width: 178px;
    height: 178px;
    border-radius: calc(8px + 2px);
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    box-sizing: content-box;
    display: block;
    position: relative;
    z-index: 0;
    -webkit-transition: -webkit-transform .1s cubic-bezier(.5, 0, .1, 1);
    transition: transform .1s cubic-bezier(.5, 0, .1, 1);
    transition-delay: 0s;
    background-color: rgba(255,255,255,0.07);
    -webkit-background-clip: content-box;
    background-clip: content-box;
    padding: 0;
    margin: 2px;
  }

  .game_item img{
    border-radius: 4px;
  }

  .game_name{
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,0.88),rgba(0,0,0,50%));
    font-size: 14px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .games_list{
    display: none
  }

  .game_name span{
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 8px;
  }

  .game_name:hover{
    opacity: 1;
  }

  .bottom{
    font-size: 16px;
  }
}