.topPlay {
  width: 100%;
  min-height: 200px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.topPlay img {
  width: 100%;
}

.topPlay .play {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  background-color: #f50000;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  border-radius: 200px;
  width: 100px;
  height: 30px;
  border: 10px solid #e40000;
  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;
  padding: ;
  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: 160px;
  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;
}
