.wrapper {
  min-height: 100%;
  /*background-color: var(--themeBg, #1E3A5F);*/
  /*background-image: var(--themBgImage, none);*/
  position: relative;
}
.wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: var(--themBgImage, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

#gameMore {
  padding-bottom: 81px;
}

/* 通用分类盒子 */
.card .items {
  display: none;
}

/* 激活的分类盒子 */
.card .itemActive {
  display: block;
}
.itemActive>div:nth-of-type(1) h2 {
  margin-top: 60px;
}

/* 游戏列表 S */
.gameTitle { /* 游戏类型标题 */
  padding: 10px;
  background-color: var(--gameTitleBgcolor, #ffffff);
  color: var(--gameTitleColor, #333333);
}

.games { /* 一堆游戏的区域 */
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gamesColumGap, 0);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 15px;
  /*max-width: 512px;*/
  background-color: var(--gamesBgColor, #FFFFFF);
}

.games > .games-item { /* 单个游戏内容 */
  display: inline-block;
  width: var(--games-itemWidth);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 3px 5px 3px rgba(0, 0, 0, .2);
  position: relative
}

.games > .games-item .games_img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden
}

.games > .games-item .games_img > img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  position: absolute
}

.games > .games-item > p {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 8px 10px 5px 10px;
  font-size: 12px;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, .9)
}

/* 游戏列表 E */

/* adx */
.adx {
  background: #ffffff;
  width: 100%;
}
.adx-header {
  padding-top: 60px;
  
}

/* adSense */
.ad_s {
  width: 100%;
  height: 1px;
  text-align: center;
}

/* 手机屏幕（小于768px） */
@media screen and (max-width: 767px) {
  .gameTitle, .games {
    background-color: transparent;
  }
}

@media all and (orientation: landscape) {
  .games > .games-item {
    width: var(--games-itemWidth_landscape)
  }
}
