@charset "UTF-8";
@import url(../../common/css/clear.css);
@import url(../../common/css/iconfont.css);
#header {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.2rem;
  background-color: #fff;
}
#header .logo {
  height: 0.7rem;
  width: 1.5rem;
}
#header .search-box {
  display: flex;
  align-items: center;
  height: 0.6rem;
  width: 4.5rem;
  border-radius: 0.3rem;
  background-color: #f5f5f5;
  padding: 0 0.2rem;
}
#header .search-box .icon {
  font-size: 0.36rem;
  color: #999;
  margin-left: 0.1rem;
}
#header .search-box .placeholder-text {
  font-size: 0.25rem;
  color: #999;
  margin-left: 0.1rem;
}
#header .kefu {
  font-size: 0.45rem;
}

#footer {
  z-index: 99;
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  height: 1.2rem;
}
#footer .nav-box {
  display: flex;
}
#footer .nav-box .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.2rem;
  padding-bottom: 0.1rem;
}
#footer .nav-box .nav-item.on {
  color: #ff8800;
}
#footer .nav-box .nav-item.on .nav-item-text {
  color: #ff8800;
}
#footer .nav-box .nav-item .icon {
  font-size: 0.46rem;
}
#footer .nav-box .nav-item .nav-item-text {
  margin-top: 0.1rem;
  font-size: 0.22rem;
  color: #666;
}

.common-btn,
.common-btn-line {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(#ff8800, #ff6622);
  height: 0.5rem;
  width: 1.5rem;
  border-radius: 0.1rem;
}
.common-btn .icon,
.common-btn-line .icon {
  font-size: 0.2rem;
}

.common-btn-line {
  border: 1px solid #ff8800;
  color: #ff8800;
  background: #fff;
}
.common-btn-line:hover {
  background-color: #ff8800;
  color: #fff;
}

.common-card {
  background-color: #fff;
  padding: 0.2rem;
}
.common-card .common-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.6rem;
  padding: 0 0.1rem 0.1rem 0.1rem;
  border-bottom: 0.01rem solid #f5f5f5;
}
.common-card .common-card-title .title-text {
  position: relative;
  font-size: 0.32rem;
  line-height: 1em;
  font-weight: bold;
  padding-left: 0.2rem;
}
.common-card .common-card-title .title-text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 1em;
  width: 0.05rem;
  border-radius: 0.03rem;
  background-color: #ff8800;
}
.common-card .common-card-title .more {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
}
.common-card .common-card-title .more .icon {
  font-size: 0.2rem;
}
.common-card .common-card-content {
  padding-top: 0.2rem;
}

.common-ad {
  display: block;
  width: 100%;
}

.game-tb-list .game-item {
  display: flex;
  align-items: center;
  margin: 0 0.2rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.game-tb-list .game-item .ranking-num-box {
  margin-top: -0.2rem;
  position: relative;
  margin-right: 0.15rem;
  height: 0.36rem;
  width: 0.32rem;
  color: #fff;
  font-weight: bold;
  background-color: #d2d2d2;
  flex-shrink: 0;
}
.game-tb-list .game-item .ranking-num-box .icon {
  display: none;
  top: -0.36rem;
  font-size: 0.34rem;
  position: absolute;
  color: #f7ce5e;
}
.game-tb-list .game-item .ranking-num-box::after, .game-tb-list .game-item .ranking-num-box::before {
  content: "";
  position: absolute;
  bottom: -0.16rem;
  width: 0;
  height: 0;
  border-style: solid;
}
.game-tb-list .game-item .ranking-num-box::after {
  left: 0;
  border-width: 0.16rem 0.2rem 0 0;
  border-color: #d2d2d2 transparent transparent transparent;
}
.game-tb-list .game-item .ranking-num-box::before {
  right: 0;
  border-width: 0 0.2rem 0.16rem 0;
  border-color: transparent #d2d2d2 transparent transparent;
}
.game-tb-list .game-item:first-child .ranking-num-box, .game-tb-list .game-item:nth-child(2) .ranking-num-box, .game-tb-list .game-item:nth-child(3) .ranking-num-box {
  margin-top: 0rem;
}
.game-tb-list .game-item:first-child .ranking-num-box .icon, .game-tb-list .game-item:nth-child(2) .ranking-num-box .icon, .game-tb-list .game-item:nth-child(3) .ranking-num-box .icon {
  display: block;
}
.game-tb-list .game-item:first-child .ranking-num-box {
  background-color: #ff4c4c;
}
.game-tb-list .game-item:first-child .ranking-num-box::after {
  border-top-color: #ff4c4c;
}
.game-tb-list .game-item:first-child .ranking-num-box::before {
  border-right-color: #ff4c4c;
}
.game-tb-list .game-item:nth-child(2) .ranking-num-box {
  background-color: #ed7339;
}
.game-tb-list .game-item:nth-child(2) .ranking-num-box::after {
  border-top-color: #ed7339;
}
.game-tb-list .game-item:nth-child(2) .ranking-num-box::before {
  border-right-color: #ed7339;
}
.game-tb-list .game-item:nth-child(3) .ranking-num-box {
  background-color: #f2a647;
}
.game-tb-list .game-item:nth-child(3) .ranking-num-box::after {
  border-top-color: #f2a647;
}
.game-tb-list .game-item:nth-child(3) .ranking-num-box::before {
  border-right-color: #f2a647;
}
.game-tb-list .game-item:first-child {
  padding-top: 0;
}
.game-tb-list .game-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.game-tb-list .game-item .game-img {
  flex-shrink: 0;
  height: 1.2rem;
  width: 1.2rem;
}
.game-tb-list .game-item .game-info {
  flex: 1;
  height: 1.2rem;
  margin: 0 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.game-tb-list .game-item .game-info .game-name,
.game-tb-list .game-item .game-info .game-tag,
.game-tb-list .game-item .game-info .game-text {
  width: 3.4rem;
}
.game-tb-list .game-item .game-info .game-name {
  font-size: 0.34rem;
  font-weight: normal;
}
.game-tb-list .game-item .game-info .game-tag {
  color: #999;
  font-size: 0.22rem;
}
.game-tb-list .game-item .game-info .game-tag span {
  font-size: 0.2rem;
  margin: 0 0.05rem;
  color: #d2d2d2;
}
.game-tb-list .game-item .game-info .game-text {
  color: #ff8800;
}
.game-tb-list .game-item .download-btn {
  flex-shrink: 0;
  width: 1.2rem;
  height: 0.6rem;
}

.special-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0.1rem;
  overflow: hidden;
  height: 3.7rem;
  margin: 0 0.1rem;
}
.special-banner .mask-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  color: #fff;
}
.special-banner .mask-box .game-box-info {
  padding: 0.1rem 0.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.special-banner .mask-box .game-box-info .left-info {
  width: 4.6rem;
}
.special-banner .mask-box .game-box-info .left-info p:first-child {
  font-size: 0.3rem;
}
.special-banner .mask-box .game-box-info .common-btn {
  font-size: 0.24rem;
  height: 0.5rem;
}

.banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.banner .game-tag {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  color: #fff;
  font-size: 0.24rem;
  border-radius: 0.08rem;
  padding: 0.04rem 0.14rem;
  background: rgba(0, 0, 0, 0.6);
}
.banner .mask-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.2rem 0.3rem;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4rem;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  color: #fff;
}
.banner .mask-box .game-box {
  display: flex;
  color: #fff;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid #d2d2d2;
}
.banner .mask-box .game-box .game-box-img {
  height: 1.1rem;
  width: 1.1rem;
  margin-right: 0.3rem;
  border-radius: 20%;
}
.banner .mask-box .game-box .game-box-title {
  width: 5.2rem;
}
.banner .mask-box .game-box .game-box-title .game-box-name {
  position: relative;
  font-size: 0.5rem;
  line-height: 1em;
}
.banner .mask-box .game-box .game-box-title .game-box-introduce {
  margin-top: 0.24rem;
  font-size: 0.24rem;
}
.banner .mask-box .game-box-info {
  padding: 0.1rem 0.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner .mask-box .game-box-info .left-score {
  display: flex;
  align-items: center;
}
.banner .mask-box .game-box-info .left-score .score {
  font-size: 0.8rem;
  color: #ff8800;
  margin-right: 0.2rem;
}
.banner .mask-box .game-box-info .left-score .score-box {
  height: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner .mask-box .game-box-info .left-score .score-box .score-text {
  font-size: 0.24rem;
}
.banner .mask-box .game-box-info .left-score .score-box .score-stars-list .icon {
  color: #999;
  font-size: 0.24rem;
  color: #ff8800;
}
.banner .mask-box .game-box-info .common-btn {
  font-size: 0.24rem;
  height: 0.5rem;
}

.game-box-download {
  margin: 0.3rem 0.2rem 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.24rem;
}
.game-box-download .game-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://yximg.seo525.com/gameother/web/a_banner_9game_img_lines.9b3fb238.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: rgba(246, 123, 41, 0.1);
  border-radius: 0.08rem;
}
.game-box-download .game-rec-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.game-box-download .game-rec-box .game-icon {
  display: inline-block;
  width: 0.88rem;
  height: 0.88rem;
  margin-right: 0.2rem;
  border-radius: 20%;
}
.game-box-download .game-rec-box .game-base .game-tit {
  font-size: 0.3rem;
  color: #282828;
  letter-spacing: 0;
  text-align: left;
  line-height: 0.42rem;
}
.game-box-download .game-rec-box .game-base .desc {
  display: block;
  margin-top: 0.04rem;
  font-size: 0.24rem;
  color: #999999;
  letter-spacing: 0;
  line-height: 0.32rem;
}
.game-box-download .common-btn {
  width: 1.2rem;
}

.game-download-fixed {
  position: fixed;
  bottom: 1.2rem;
  margin: 0;
  left: 0;
  width: 100%;
  padding: 0 0.2rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: rgba(0, 0, 0, 0.6);
}
.game-download-fixed .icon-guanbi {
  line-height: 0.6rem;
  color: #d2d2d2;
}
.game-download-fixed .game-rec-box {
  padding: 0.1rem 0;
  width: 5.1rem;
}
.game-download-fixed .game-rec-box .game-base .game-tit,
.game-download-fixed .game-rec-box .game-base .desc {
  color: #fff;
}

.bg-title {
  width: 7.2rem;
  height: 0.45rem;
  background: url(https://yximg.seo525.com/gameother/web/game_rec_82181b9.png) no-repeat 0 0;
  background-size: contain;
  margin: 0.3rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-title .title {
  font-size: 0.28rem;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}

.load-more-box {
  background-color: #fff;
  border-top: 1px solid #f5f5f5;
}
.load-more-box .more,
.load-more-box .loading,
.load-more-box .end {
  color: #ff8800;
  line-height: 0.7rem;
}
.load-more-box .more .icon,
.load-more-box .loading .icon,
.load-more-box .end .icon {
  margin-left: 0.1rem;
  font-size: 0.24rem;
}
.load-more-box .end {
  color: #999;
}

.common-info-list {
  height: 0;
  overflow: hidden;
}
.common-info-list.show {
  height: auto;
}
.common-info-list .info-item-box:last-child .info-item {
  border: none;
  padding-bottom: 0;
}
.common-info-list .info-item-box .info-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.common-info-list .info-item-box .info-item .info-info {
  flex: 1;
  margin-right: 0.2rem;
}
.common-info-list .info-item-box .info-item .info-title {
  font-size: 0.28rem;
  line-height: 0.45rem;
  font-weight: bold;
  height: 1.35rem;
}
.common-info-list .info-item-box .info-item .info-title span {
  color: #ff8800;
}
.common-info-list .info-item-box .info-item .info-meta {
  margin-top: 0.1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.2rem;
  color: #999;
}
.common-info-list .info-item-box .info-item .info-meta .article-viewed .icon {
  margin-right: 0.08rem;
  font-size: 0.26rem;
}
.common-info-list .info-item-box .info-item .info-img {
  width: 2.25rem;
  height: 1.7rem;
  border-radius: 0.05rem;
}
.common-info-list .info-item-box .tb-content {
  display: block;
}
.common-info-list .info-item-box .tb-content .info-title {
  height: auto;
}
.common-info-list .info-item-box .tb-content .info-imgs {
  padding: 0.2rem 0 0.1rem;
  display: flex;
  justify-content: space-between;
}

.special-list .special-item {
  overflow: hidden;
  background-color: #fff;
  margin-top: 0.3rem;
  padding-top: 0.2rem;
  padding-bottom: 0.3rem;
}
.special-list .special-item:first-child {
  margin-top: 0;
}
.special-list .special-item .special-banner {
  margin-top: 0 !important;
}

.crumbs-nav {
  background-color: #fff;
  display: flex;
  padding: 0.2rem;
}
.crumbs-nav.bt {
  border-top: 0.2rem solid #f5f5f5;
}
.crumbs-nav.bb {
  border-bottom: 0.2rem solid #f5f5f5;
}
.crumbs-nav li {
  color: #666;
  margin-right: 0.1rem;
  max-width: 3rem;
  font-size: 0.26rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.crumbs-nav li a {
  color: #666;
}

#back-top {
  display: none;
  position: fixed;
  right: 0.6rem;
  bottom: 2.6rem;
  height: 1rem;
  width: 1rem;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
  line-height: 1rem;
  text-align: center;
}
#back-top .icon {
  display: inline-block;
  transform: rotateX(180deg);
  font-size: 0.36rem;
}

.common-game-dynamic {
  background-color: transparent;
}
.common-game-dynamic.grey-bg .dynamic-list .dynamic-item-box .dynamic-item {
  background-color: #f5f5f5;
}
.common-game-dynamic .dynamic-list {
  margin-top: 0.1rem;
  margin: 0 -0.2rem;
  display: flex;
  overflow-y: auto;
}
.common-game-dynamic .dynamic-list .dynamic-item-box {
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: 4rem;
}
.common-game-dynamic .dynamic-list .dynamic-item-box:first-child {
  margin-left: 0.25rem;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item {
  background-color: #fff;
  display: block;
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-img {
  height: 2.5rem;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-title {
  font-size: 0.27rem;
  padding: 0.1rem 0.2rem;
  line-height: 0.45rem;
  height: 0.9rem;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-info {
  padding: 0.2rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.2rem;
  color: #999;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-info .icon-info {
  display: flex;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-info .icon-info .icon-info-item {
  margin-left: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-game-dynamic .dynamic-list .dynamic-item-box .dynamic-item .dynamic-info .icon-info .icon-info-item .icon {
  margin-right: 0.1rem;
  font-size: 0.2rem;
}

.download-popup-box {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.download-popup-box .download-popup-content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 6rem;
  border-radius: 0.2rem;
  background-color: #fff;
}
.download-popup-box .download-popup-content-box .icon-jiazai {
  position: absolute;
  top: -0.4rem;
  left: calc(50% - 0.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  font-size: 0.8rem;
  color: #fff;
  animation: rote360 1.5s linear infinite;
}
.download-popup-box .download-popup-content-box .download-popup-box-close {
  position: absolute;
  cursor: pointer;
  bottom: -1rem;
  right: 50%;
  transform: translateX(50%);
  background-color: rgba(255, 255, 255, 0.3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.download-popup-box .download-popup-content-box .content-box-banner {
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
  width: 100%;
}
.download-popup-box .download-popup-content-box .content-box-banner.border-radius {
  border-radius: 0.2rem;
}
.download-popup-box .download-popup-content-box .content-box-middle {
  display: flex;
  align-items: center;
  padding-bottom: 0.2rem;
}
.download-popup-box .download-popup-content-box .content-box-middle .game-img {
  flex-shrink: 0;
  height: 2.4rem;
  width: 2.4rem;
  padding: 0.2rem;
  box-shadow: 0 0 0.4rem 0.06rem rgba(0, 0, 0, 0.1);
  margin-right: 0.2rem;
}
.download-popup-box .download-popup-content-box .content-box-middle .game-text-box {
  overflow-y: auto;
  max-height: 2.4rem;
  height: auto;
  width: 2.8rem;
  text-align: center;
}
.download-popup-box .download-popup-content-box .content-box-middle .game-text-box .game-text-item {
  font-size: 0.26rem;
  margin-bottom: 0.2rem;
}
.download-popup-box .download-popup-content-box .content-box-middle .game-text-box .game-text-item:last-child {
  margin-bottom: 0;
}
.download-popup-box .download-popup-content-box .common-btn {
  margin-top: 0.1rem;
  margin-bottom: 0.3rem;
  height: 0.6rem;
  width: 3rem;
  font-size: 0.26rem;
}

/* 清除默认样式 */
/* 字体图标 */
html,
body {
  font-size: 0.24rem;
  color: #333;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar {
  width: 0;
  display: none;
}

body {
  margin-bottom: 1.3rem;
  border-bottom: 1px solid transparent;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.common-mt {
  margin-top: 0.3rem !important;
}

.common-pb {
  padding-bottom: 0.3rem !important;
}

.bg-mt {
  border-top: 0.2rem solid #f5f5f5 !important;
}

.hide {
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.handstand {
  transform: rotate(180deg);
}

.common-mb {
  margin-bottom: 0.3rem !important;
}

/* 全局样式 */
* {
  box-sizing: border-box;
}

/* 图片背景居中 自动伸缩 */
.bg-c,
.bg-center {
  background-size: cover;
  background-position: center;
}

/* 盒子内容居中 */
.flex-center,
.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 按钮 */
.btn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 单行文本超出隐藏 */
.ellipsis,
.ellipsis1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 双行文本超出隐藏 */
.ellipsis2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 三行文本超出隐藏 */
.ellipsis3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 三行文本超出隐藏 */
.ellipsis4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.color-main {
  color: #ff8800;
}

.box-shadow {
  box-shadow: 0 0 0.2rem 0.03rem rgba(0, 0, 0, 0.05);
}

.children-img-radius img {
  border-radius: 20%;
}

.game-lr-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.3rem;
}
.game-lr-list.no-warp {
  flex-wrap: nowrap;
  overflow-y: auto;
}
.game-lr-list.no-warp .game-item {
  flex-shrink: 0;
  width: 1.4rem;
  margin-bottom: 0;
}
.game-lr-list.no-warp .game-item .game-info {
  margin: 0;
}
.game-lr-list.no-warp .game-item .game-info .game-name {
  width: 1.2rem;
}
.game-lr-list.no-warp .game-item:first-child {
  margin-left: 0.1rem;
}
.game-lr-list .game-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.3rem;
}
.game-lr-list .game-item .game-info {
  margin: 0.1rem 0;
  width: 100%;
  display: block;
  text-align: center;
}
.game-lr-list .game-item .game-info .game-img {
  height: 1.2rem;
  width: 1.2rem;
}
.game-lr-list .game-item .game-info .game-name {
  text-align: center;
  width: 1.66rem;
  font-size: 0.28rem;
  height: 1.5em;
  text-overflow: unset;
  white-space: initial;
  margin: 0.04rem auto 0;
}
.game-lr-list .game-item .game-info .game-tag {
  font-size: 0.2rem;
  color: #999;
}
.game-lr-list .game-item .game-info .game-tag span {
  font-size: 0.2rem;
  color: #d2d2d2;
}
.game-lr-list .game-item .download-btn {
  width: 1.2rem;
  height: 0.6rem;
}

@keyframes rote360 {
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=common.css.map */