
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.header {
  width: 6.94rem;
  height: 4.66rem;
  border-radius: 0.3rem;
  margin-top: 0.3rem;
  position: relative;
  overflow: hidden;
}
.header > .bg {
  width: 100%;
  height: 4.66rem;
  overflow: hidden;
  position: absolute;
}
.header .mask {
  width: 100%;
  height: 1.04rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
}
.header .g-intro {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .g-intro .img {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.2rem;
}
.header .g-bt {
  width: 100%;
  height: 1.04rem;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem;
}
.header .g-bt .game-title {
  color: #fff;
  z-index: 2;
  font-size: 0.4rem;
}
.header .g-bt .star {
  display: flex;
  z-index: 2;
}
.header .g-bt .star .icon-star {
  width: 0.34rem;
  height: 0.34rem;
  margin-left: 0.04rem;
}
.header .btn-play {
  width: 1.6rem;
  height: 1.6rem;
  text-align: center;
  font-size: 0.4rem;
  border-radius: 0.2rem;
}.game-txt {
  border: 0.04rem solid #292F52;
  border-radius: 0.2rem;
  padding: 0.3rem;
  width: 7rem;
  margin-top: 0.3rem;
  background-color: #F1F1F1;
}
.game-txt .title .lf span {
  font-size: 0.4rem;
    color: #000;
    font-weight: bold;
}
.game-txt .con {
  font-size: 0.32rem;
  color: #505050;
  line-height: 0.45rem;
  margin-top: 0.3rem;
}
.card {
  width: 7rem;
  margin: 0.3rem auto 0;
}
.card .item-l-4 {
  display: flex;
  flex-direction: row;
}
.card .item-l-4 .lt {
  border-radius: 0.2rem;
  position: relative;
  border: 0.04rem solid #292F52;
}
.card .item-l-4 .lt > a {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
}
.card .item-l-4 .lt img,
.card .item-l-4 .rt img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.card .item-l-4 .rt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 3.8rem;
  height: 3.4rem;
}
.card .item-l-4 .rt > a {
  width: 1.62rem;
  height: 1.62rem;
  position: relative;
  border-radius: 10px;
  display: block;
  margin-left: 0.14rem;
  margin-bottom: 0.2rem;
  border: 0.04rem solid #292F52;
}
.card .item-l-4 .rt > a > img {
  width: 100%;
  height: 100%;
}
.card .item-l-4 p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.card .item-l-4 p > .txt {
  height: 0.36rem;
  line-height: 0.36rem;
  color: #fff;
  font-size: 0.2rem;
}
.dialog {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
  display: none;
}
.game-tips {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000000;
  background-image: url(../images/game_tips.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 157.5px 125px;
  display: none;
}
.start-progress {
  display: none;
  width: 90%;
  height: 1.33333rem;
  line-height: 1.33333rem;
  margin: 0.26667rem auto;
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}
.loaders {
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  font-size: 0;
  margin-right: 10px;
}
.ball-pulse > div {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
}
.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  display: inline-block;
}
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  display: inline-block;
}
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  display: inline-block;
}
@-webkit-keyframes scale {
  0%,
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
}
