main{
  padding: 0.4rem 0.4rem 0.1rem 0.4rem;
}
main .game .play{
  width: 15rem;
  height: auto;
  margin: auto;
  /* background-color:#000; */
  /* border: 0.04rem solid #ffffff; */
  border-radius: 0.08rem;
}
main .game .play .stop{
  width: 15rem;
  height: 7rem;
  background-color: #000;
  position: relative;
  border: 0.04rem solid #ffffff;
  border-radius: 0.1rem;
}
main .game .play iframe{
  width: 15rem;
  height: 7rem;
  background-color: #000;
  border: 0.04rem solid #ffffff;
}
main .game .play .stop .stop_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
}
main .game .play .stop .introduction{
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: hsla(0,0%,88.2%,.4);
  z-index: 999;
  border-radius: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main .game .play .stop .introduction h2{
  width: 100%;
  text-align: center;
  margin-top: 0.2rem;
  color: #ffffff;
}
main .game .play .stop .introduction div{
  width: 100%;
  display: flex;
  justify-content: center;
}
main .game .play .stop .introduction img{
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.2rem;
}
main .game .play .stop .introduction button{
  width: 3rem;
  height: 0.5rem;
  border: none;
  border-radius: 0.2rem;
  background-color: rgb(218, 142, 28);
  color: #ffffff;
  font-size: 0.3rem;
}
main .game .recommend{
  display: grid;
  grid-template-columns: repeat(10,1fr);
  padding: 0.4rem 0 0 0;
  grid-gap: 0.2rem;
}
main .game .recommend a{
  width: 100%;
  position: relative;
}
main .game .recommend a img{
  width: 100%;
  border-radius: 0.2rem;
}
main .game .details{
  margin-top: 0.1rem;
  padding: 0.2rem 0 0.2rem 0;
  background-color: #82251E;
  border: 0.04rem solid #82251E;
  border-radius: 0.2rem;
}
main .game .details h2{
  text-align: center;
  font-size: 0.25rem;
}
main .game .details h5{
  text-align: center;
  font-size: 0.16rem;
}
/* main .game .details p{
  font-size: 0.18rem;
} */
main .game .play .recommend a p{
  font-size: 0.12rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 0.3rem;
  line-height: 0.3rem;
  width: 100%;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  background-color: rgba(205, 92, 92, .6);
  display: none;
  border-radius: 0 0 0.2rem 0.2rem;
}




@media screen and (max-width:1200px) {
  main{
    height: auto;
  }
  main .game .play{
    width: 100%;
    height: auto;
    border: none;
    background-color: #A8453D;
  }
  main .game .play iframe{
    width: auto;
    border: 0.04rem solid #ffffff;
  }
  main .game .play .stop{
    width: auto;
    border: 0.04rem solid #ffffff;
  }
  main .game .recommend{
    grid-template-columns: repeat(5,1fr);
  }
  main .game .details{
    margin-top: 0.4rem;
    padding: 0 0.1rem 0 0.1rem;
  }
  main .game .details h2{
    text-align: center;
    font-size: 0.4rem;
  }
  main .game .details h5{
    text-align: center;
    font-size: 0.3rem;
  }
  main .game .play .stop .introduction button{
    font-size: 0.4rem;
  }
}


@media screen and (min-width:1200px) {
  main .game .play .recommend .item:hover{
    transition: all 0.5s;
    transform: scale(1.1);
    z-index: 2;
    visibility: visible;
  }
  main .game .play .recommend .item:hover p{
    display: block;
  }
}