<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.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: rgb(216, 43, 158);
  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 rgb(237, 132, 202);
  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;
}
</pre></body></html>