.topPlay {
  position: relative;
  width: 100%;
  min-height: 120px;
  height: 6rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-bottom: 9rem;
}

.topPlay img {
  width: 100%;
  height: 10rem;
}

.game-card {
  width: 100%;
  min-height: 11rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.3rem 0.6rem 0;
}

.top-card {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

.bottom-card {
  text-indent: 1rem;
  height: 5rem;
  max-height: 5rem;
  overflow: hidden;
  margin: 0.4rem 0 0.8rem;
  font-size: 0.9rem;
  color: #444444;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  /* 显示3行文本 */
}

.game-card img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.8rem;
  margin-right: 1rem;
}

.text-game {
  width: 70%;
  align-self: flex-start;
}

.text-game .game-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}

.text-game .game-title div {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.text-game .game-title div:nth-child(1) {
  width: 9rem;
}

.text-game .game-title div:nth-child(2) {
  width: 5rem;
  color: #a9a5a5;
  font-size: 14px;
  text-align: right;
}

.text-game .game-category {
  color: #7d7d7d;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.game-card .play {
  line-height: 2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to left, #fd9533, #fec276);
  text-align: center;
  position: absolute;
  top: -8rem;
  right: 1rem;
  bottom: 0;
  margin: auto auto;
  border-radius: 1rem;
  width: 4rem;
  height: 2.2rem;
  transform: scale(1);
  -webkit-animation-name: scaleDraw;
  /*关键帧名称*/
  -webkit-animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  -webkit-animation-iteration-count: infinite;
  /*动画播放的次数*/
  -webkit-animation-duration: 1s;
  /*动画所花费的时间*/
}

@keyframes scaleDraw {

  /* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
  0% {
    transform: scale(1);
    /* 开始为原始大小 */
  }

  50% {
    transform: scale(1.2);
    /* 放大1.1倍 */
  }
}


.gameInfo {
  padding: 10px 20px;
}

.gameInfo ul {
  display: flex;
  justify-content: space-between;
}

.gameInfo ul li:nth-child(1) {
  font-weight: bold;
  color: #0b6274;
  font-size: 18px;
}

.gameInfo ul li:nth-child(2) button {
  background-color: #fff;
  color: #595959;
  border: 1px solid #595959;
  border-radius: 5px;
  font-size: 13px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.gameInfo p {
  font-size: 14px;
  line-height: 21px;
  color: #595959;
  font-family: Roboto, sans-serif;
  vertical-align: baseline;
  margin-top: 15px;
}

.detailsList {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 10px 0;
}

.detailsList li a {
  display: flex;
  /* justify-content: space-around; */
  align-items: center;
  margin-bottom: 10px;
}

.detailsList li img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  margin-right: 10px;
}

.detailsList li h4 {
  color: #0b6274;
  margin-bottom: 10px;
}

.detailsList li p {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #595959;
  height: 2rem;
  overflow: hidden;
}

#GameIfrom {
  width: 100%;
  height: 400px;
  margin: 20px auto;
}

.start-game {
  text-align: center;
  width: 70%;
  height: 3rem;
  line-height: 3rem;
  background: #00cc7d;
  margin: 1rem auto;
  color: #fff;
  border-radius: 1rem;
}

.detail-game {
  position: relative;
  width: auto;
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}

.detail-game::after {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -0.17rem;
  width: 0.7rem;
  height: 0.2rem;
  line-height: 0;
  font-size: 0;
  background: #00cc7d;
  border-radius: 0.2rem;
  content: "";
}

.big-img {
  width: 65%;
  margin: 0 auto;
}


@media screen and (min-width: 760px){
  .big-img img {
    width: 100%;
    height: 20rem;
  }
}

@media screen and (min-width: 1440px){
  .big-img img {
    width: 100%;
    height: 30rem;
  }
  .other-list2{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}

@media screen and (min-width: 960px) and (max-width: 1440px){
  .other-list2{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media screen and (min-width: 2080px){
  .other-list2{
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
  }
}


@media screen and (max-width: 760px){
  .big-img img {
    width: 100%;
    height: 10rem;
  }
}

.big-img img {
  width: 100%;
  /*height: 10rem;*/
}
