/* ————重置样式———————————————————————————————————————————————————————————— */
html,
body,
div,
span,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
form,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
footer,
header,
nav,
section,
input,
button {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

dl,
ol,
ul {
    display: block;
    list-style: none;
}

/* 处理3像素bug */
img {
    width: 100%;
    height: 100% !important;
    vertical-align: middle;
    border-style: none;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

a:hover {
    text-decoration: none !important;
}

i {
    display: inline-block;
    font-style: normal;
}

/* 删除默认聚焦的样式 */
input,
textarea {
    outline: none;
}


/* 面向属性的 CSS---单个类每一个类只写一种属性————————————————————————————————— */
.name,
.title,
.sketch,
.game-name,
.soft-name {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sketch-2,
.game-sketch,
.news-sketch,
.gba-sketch,
.gift-sketch {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.pic,
.icon,
.game-icon,
.soft-icon {
    display: block;
}

.icon,
.gift-icon,
.game-icon,
.soft-icon {
    overflow: hidden;
    border-radius: 15px;
}

/* 绝对定位 */
.abs {
    position: absolute;
}

/* 相对定位 */
.rel {
    position: relative;
}

.overflow {
    overflow: scroll
}

/* margin */
.mr20 {
    margin-right: 20px;
}

.mt50 {
    margin-top: 50px;
}

/* padding */

/* 字体样式 --*/
:root {
    --pm-c: #12CDB0;
    --dm-c: #EAEAEA;
    --bg-c: #f7f7f7;
    --br-c: #F2F2F2;
}

.color-AAA {
    color: #AAA;
}

.oh {
    overflow: hidden;
}


/* ————————————————公共样式—————————————————————————————————————————————— */
html,
body {
    color: #666;
    font-size: 14px;
    background: #F7F7F7;
}

/* 版心 */
.centre {
    width: 1200px;
    margin: 0 auto;
    background: #F7F7F7;
}

.main {
    width: 100%;
}

/* 公共区块 */
.section {
    margin-top: 20px;
    /* background-color: #FFF; */
}

.public-section {
    padding: 20px;
    background-color: #FFF;
}

/* 侧边栏 */
.aside {
    width: 300px;
}

img {
    object-fit: cover;
}

/* ————————————————————————————公共区块—————————————————————————————————— */
/* ————————————————网页头部———————————————— */
.header {
    width: 100%;
    height: 140px;
    background: #FFF;
}

.header .logo-search {
    height: 90px;
    background: #FFF;
}

.header .logo-search .logo {
    display: block;
    height: 40px;
    margin-right: 50px;
}


.header .logo-search .search {
    width: 330px;
    height: 32px;
    border: 1px solid var(--pm-c);
}

.header .logo-search input {
    flex: 1;
    padding: 0 15px;
}

.header .logo-search input::placeholder {
    color: #CCCCCC;
}

.header .logo-search .search button {
    width: 54px;
    height: 100%;
    cursor: pointer;
    background: var(--pm-c) url(../images/search.png) no-repeat center/16px 16px;
}

.header .nav {
    width: 100%;
    height: 50px;
    background: var(--pm-c);
}
.header .nav .centre {
    background: var(--pm-c);
}
.header .nav .nav-item {
    display: block;
    width: 150px;
    height: 50px;
    color: #FFF;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    background: var(--pm-c);
    transition: all .3s ease;
}

.header .nav .nav-item:hover,
.header .nav .nav-item.active {
    font-weight: bold;
    background: #0DC1A5;
}

/* ————————————————网页页脚———————————————— */

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 140px;
    color: #999;
    background: #333;
    text-align: center;
    margin-top: 20px;
}

.footer .link-list {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
}

.footer .link-list .link-item {
    margin-right: 10px;
}

.footer .link-list .link-item:last-child::after {
    margin-right: 0;
}

.footer .link-list .link-item a,
.footer a {
    color: #999;
}

.footer .link-list .link-item:last-child::after {
    display: none;
}

/* ————————————————公共小组件———————————————— */
/* ——————公共标题—————— */
.public-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.public-title .title {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.public-title .title::before {
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background: url(../images/public-title-dot.png) no-repeat center/contain;
}

.public-title .more {
    color: #AAA;
    font-size: 12px;
}

.public-title .more::before {
    display: inline-block;
    content: '';
    width: 9px;
    height: 9px;
    margin-right: 6px;
    background: url(../images/more.png) no-repeat center/contain;
}

/* ——————公共列表—————— */
.public-list .item {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.public-list .item:first-child {
    margin-top: 0;
}

.public-list .item::before {
    display: block;
    content: '';
    width: 8px;
    height: 6px;
    margin-right: 8px;
    background: url(../images/small-arrows.png) no-repeat center center/contain;
}

.public-list .item .tag {
    font-size: 14px;
    color: var(--pm-c);
    margin-right: 14px;
}

.public-list .item .sketch {
    flex: 1;
    margin-right: 15px;
}

/* ——————日期—————— */
span.from,
span.date {
    color: #AAA;
}

div.date {
    display: flex;
    color: #AAA;
    align-items: center;
}

div.date::before {
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background: url(../images/date.png) no-repeat center/contain;
}

/* 来自 */

/* ——————类型、大小、语言—————— */
.type,
.size,
.lang {
    color: #AAA;
    font-size: 12px;
}

/* ——————分割线—————— */
.line {
    width: 1px;
    height: 10px;
    margin: 0 10px;
    background: #eee;
}

.oblique-line {
    color: #AAA;
    font-size: 12px;
    margin: 0 5px;
}

/* ——————面包屑—————— */
.crumbs {
    margin: 20px 0;
}

.crumbs,
.crumbs a {
    color: #999;
    font-size: 12px;
}

.crumbs .location {
    display: flex;
    align-items: center;
}

.crumbs .item::after {
    display: inline-block;
    content: '>';
    margin: 0 5px;
}

.crumbs .item:last-child:after {
    display: none;
}

.crumbs .item.active a {
    color: #4D4D4D;
}

/* ——————评分—————— */
.score-show {
    width: 40px;
    height: 8px;
    background: url(../images/score.png);
    background-size: 8px 8px;
}

.score-show .get-score {
    width: 100%;
    height: 8px;
    max-width: 40px;
    user-select: none;
    color: transparent;
    background: url(../images/get-score.png);
    background-size: 8px 8px;
}

/* ——————文章—————— */
.article h3 {
    display: flex;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
}

.article h3::after {
    display: block;
    content: '';
    width: 25px;
    height: 5px;
    margin-left: 10px;
    background: url(../images/h3-icon.png) no-repeat center/contain;
}

.article-content p {
    color: #333;
    font-size: 16px;
    line-height: 34px;
    text-indent: 2em;
}

.article-content p img {
    display: block;
    width: 570px;
    height: auto;
    margin: 30px auto;
}

/* ——————分页器—————— */
.pagination {
    padding: 50px 0 50px 0;
    text-align: center;
    background: #fff;
}

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
    border: 1px solid var(--br-c);
    color: #555;
    background: #fff;
}

.pagination .active span {
    background: var(--pm-c);
    color: #fff;
}

.pagination .page-item:hover {
    background: var(--pm-c);
    color: #fff;
}

.pagination .page-item .page-link {
    display: block;
    padding: 6px 12px;
    border: 1px solid transparent;
}

.pagination li a {
    display: inline-block;
    color: #666;
}

.pagination li a:hover {
    background: var(--pm-c);
    color: #fff;
    border: 1px solid var(--pm-c) !important;
}

/* ————————————————共有区块（新游测评）———————————————— */
.new-games-eva {
    width: 100%;
}

.new-games-eva .game-container .game-item {
    margin-bottom: 27px;
}

.new-games-eva .game-container .game-item:last-child {
    margin-bottom: 0;
}

.new-games-eva .game-container .game-item .game-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 7px;
    border-radius: 14px;
}

.new-games-eva .game-container .game-item .down-btn {
    display: block;
    width: 64px;
    height: 24px;
    font-size: 12px;
    color: var(--pm-c);
    line-height: 22px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #12CDB0;
}

.new-games-eva .game-container .game-item:hover .down-btn {
    color: #FFFFFF;
    background: var(--pm-c);
}

.new-games-eva .game-container .game-item .info {
    margin-left: 10px;
    padding: 5px 0 7px 0;
}

.new-games-eva .game-container .game-item .game-name {
    font-size: 16px;
    margin-right: 10px;
}

.new-games-eva .game-container .game-item:nth-child(1) .hot-tag::after {
    display: block;
    content: 'HOT';
    width: 36px;
    height: 18px;
    color: #FFF;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    background: url(../images/hot-tag.png) no-repeat center/contain;
}

.new-games-eva .game-container .game-item .size {
    margin-top: 10px;
}

.new-games-eva .game-container .game-item .score-container {
    position: relative;
}

.new-games-eva .game-container .game-item .score-container::before {
    display: block;
    content: '';
    width: 1px;
    height: 25px;
    background: #EEEEEE;
    position: absolute;
    left: -12px;
}

.new-games-eva .game-container .game-item .score-container .score {
    color: #AAA;
    font-size: 12px;
}

.new-games-eva .game-container .game-item .score-container .num {
    width: 32px;
    color: #FF0000;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
}

/* ————————————————共有区块（新游预告）———————————————— */
.new-games-news .news-container {
    width: 100%;
    margin-bottom: 30px;
}

.new-games-news .news-container:last-child {
    margin-bottom: 0;
}

.new-games-news .news-container .news-show {
    margin-bottom: 18px;
}

.new-games-news .news-container .news-show .pic {
    width: 100px;
    height: 68px;
    margin-right: 10px;
}

.new-games-news .news-container .news-show .title {
    font-size: 16px;
}

.new-games-news .news-container .news-show .sketch {
    color: #777;
}

.new-games-news .news-list .news-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.new-games-news .news-list .news-item:last-child {
    margin-bottom: 0;
}

.new-games-news .news-list .news-item .sketch {
    flex: 1;
    margin-right: 20px;
}

.new-games-news .news-list .news-item .tag {
    color: var(--pm-c);
    margin-right: 14px;
}

.new-games-news .news-list .item::before {
    display: none;
}

/* ————————————————共有区块（最新排行）———————————————— */

.newest-rank .game-list .game-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.newest-rank .game-list .game-item:first-child {
    padding-top: 0;
}

.newest-rank .game-list .game-item .rank-num {
    width: 20px;
    height: 20px;
    color: #AAA;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-right: 20px;
    border-radius: 4px;
    background: #EEEEEE;
}

.newest-rank .game-list .top-three .game-item {
    margin-bottom: 0;
}

.newest-rank .game-list .top-three .game-item .rank-num {
    width: 20px;
    height: 40px;
    color: #FFF;
    line-height: 40px;
}

.newest-rank .game-list .top-three .game-item:nth-child(1) .rank-num {
    background: #FA2F2F;
}

.newest-rank .game-list .top-three .game-item:nth-child(2) .rank-num {
    background: #FA6C2F;
}

.newest-rank .game-list .top-three .game-item:nth-child(3) .rank-num {
    background: #FAA92F;
}

.newest-rank .game-list .top-three .game-item .game-info .game-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 20px;
}

.newest-rank .game-list .top-three .game-item .game-info .info {
    padding: 5px 0;
}

.newest-rank .game-list .game-item .game-name {
    margin-right: 15px;
}

.newest-rank .game-list .top-three .game-item .game-info .game-name {
    font-size: 16px;
}

.newest-rank .game-list .top-three .game-item .game-info .score-show {
    width: 85px;
    height: 13px;
    background: url(../images/star.png);
    background-size: 17px 13px;
}

.newest-rank .game-list .top-three .game-item .game-info .score-show .get-score {
    width: 100%;
    height: 13px;
    max-width: 85px;
    user-select: none;
    color: transparent;
    background: url(../images/star-active.png);
    background-size: 17px 13px;
}

.newest-rank .game-list .game-item .down-btn {
    display: block;
    width: 15px;
    height: 15.83px;
    background: url(../images/down-btn.png) no-repeat center/contain;
}

/* ————————————————共有区块（热门资讯）———————————————— */
.hot-news .slideshow .uk-slider-items {
    margin-bottom: 30px;
}

.hot-news .slideshow .uk-slider-items li {
    width: 260px;
    margin-right: 40px;
}

.hot-news .slideshow .uk-slider-items li .pic {
    width: 100%;
    height: 160px;
}

.hot-news .slideshow .uk-slider-items li .title {
    color: #333;
    font-size: 16px;
    margin: 6px 0;
}

.hot-news .slideshow .uk-slider-items li .sketch {
    color: #777;
}

.hot-news .slideshow .btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: no-repeat center center/contain;
}

.hot-news .slideshow .btn.prev {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url(../images/prev.png);
}

.hot-news .slideshow .btn.next {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-image: url(../images/next.png);
}

.hot-news .slideshow .uk-slider-nav {
    margin: 0 !important;
}

.hot-news .slideshow .uk-slider-nav li {
    padding: 0;
    margin: 0 10px;
}

.hot-news .slideshow .uk-slider-nav li.uk-active a {
    background: var(--pm-c);
}

.hot-news .slideshow .uk-slider-nav li a {
    width: 8px;
    height: 8px;
    border: none;
    background: #EEE;
}

/* ————————————————共有区块（游戏新闻）———————————————— */
.game-news {
    width: 880px;
}

.game-news .news-container .news-item {
    margin-bottom: 40px;
}

.game-news .news-container .news-item:last-child {
    margin-bottom: 0;
}

.game-news .news-container .news-item .pic {
    width: 220px;
    height: 140px;
    margin-right: 20px;
}

.game-news .news-container .news-item .info {
    padding: 5px 0;
}

.game-news .news-container .news-item .info .title {
    font-size: 18px;
    font-weight: bold;
}

.game-news .news-container .news-item .info .from {
    margin-right: 50px;
}

.game-news .news-container .news-item .info .news-sketch {
    color: #777;
    font-size: 16px;
    line-height: 34px;
}

/* ————————————————共有区块（排行资讯）———————————————— */
.news-rank .news-list .news-item {
    margin-bottom: 20px;
}

.news-rank .news-list .news-item:last-child {
    margin-bottom: 0;
}

.news-rank .news-list .news-item .num {
    width: 20px;
    height: 20px;
    color: #777;
    line-height: 20px;
    text-align: center;
    margin-right: 11px;
    border-radius: 4px;
    background: #EEEEEE;
}

.news-rank .news-list .news-item:nth-child(1) .num {
    color: #FFF;
    background: #FF2727;
}

.news-rank .news-list .news-item:nth-child(2) .num {
    color: #FFF;
    background: #FF8227;
}

.news-rank .news-list .news-item:nth-child(3) .num {
    color: #FFF;
    background: #FFC327;
}

.news-rank .news-list .news-item .title {
    margin-right: 15px;
}

/* ————————————————共有区块（同类推荐）———————————————— */
.below-same-rec .soft-container .soft-item {
    width: 261px;
    margin-right: 40px;
    padding: 0 23px 32px 0;
    border-right: 1px solid var(--br-c);
}

.below-same-rec .soft-container .soft-item:nth-child(3n) {
    width: 238px;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.below-same-rec .soft-container .soft-item:nth-last-child(-n+3) {
    padding-bottom: 0;
}

.below-same-rec .soft-container .soft-item .soft-icon {
    width: 84px;
    height: 84px;
    margin-right: 10px;
    border-radius: 18px;
}

.below-same-rec .soft-container .soft-item .info {
    max-width: 143px;
    padding: 4px 0;
    position: relative;
}

.below-same-rec .soft-container .soft-item .info .soft-name {
    font-size: 16px;
}

.below-same-rec .soft-container .soft-item .down-btn {
    width: 60px;
    height: 26px;
    color: #FFF;
    font-size: 12px;
    line-height: 26px;
    text-align: center;
    border-radius: 4px;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
    position: absolute;
    bottom: 4px;
    right: 0;
}

/* ————————————————共有区块（游戏攻略）———————————————— */
.gba-list{
	 width: 100%;
}
.public-game-gba {
    width: 100%;
}

.public-game-gba .gba-container {
    width: 390px;
}

.public-game-gba .gba-container .gba-item {
    margin-bottom: 25px;
}

.public-game-gba .gba-container .gba-item:last-child {
    margin-bottom: 0;
}

.public-game-gba .gba-container .gba-item .title {
    font-size: 16px;
    margin-bottom: 18px;
}

.public-game-gba .gba-container .gba-item .info .pic {
    width: 160px;
    height: 90px;
    margin-right: 15px;
}

.public-game-gba .gba-container .gba-item .info .gba-sketch {
    color: #777;
    line-height: 30px;
}

.public-game-gba .gba-container .gba-item .info .date {
    text-align: right;
}

.public-game-gba .gba-list {
    width: 360px;
}

.public-game-gba .gba-list .item {
    margin-top: 17.5px;
}

.public-game-gba .gba-list .item::before {
    display: none;
}

.public-game-gba .gba-list .item:first-child {
    margin-top: 0;
}

.public-game-gba .gba-list .item .gba-tag {
    color: var(--pm-c);
    margin-right: 14px;
}

/* ————————————————————————————页面样式—————————————————————————————————— */
/* ————————————————————首页样式—————————————————————————— */
/* 首页背景图片 */
.index {
    background: url(../images/index-bg.png) no-repeat top center/contain;
}

.index .centre {
    padding-top: 20px;
}

.index .index-games-show .game-container .game-item {
    width: 80px;
}

.index .index-games-show .game-container .game-item .game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    border-radius: 16px;
}

.index .index-games-show .game-container .game-item .game-name {
    text-align: center;
}

.index .index-games-show .type-container {
    margin-top: 20px;
}

.index .index-games-show .type-container .game-type {
    width: 49%;
    margin-bottom: 10px;
}

.index .index-games-show .type-container .game-type:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.index .index-games-show .type-container .game-type .type-name {
    width: 83px;
    height: 30px;
    flex-shrink: 0;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
    background: center center/contain;
}

.index .index-games-show .type-container .game-type:nth-child(1) .type-name {
    background-image: url(../images/type-tag01.png);
}

.index .index-games-show .type-container .game-type:nth-child(2) .type-name {
    background-image: url(../images/type-tag02.png);
}

.index .index-games-show .type-container .game-type:nth-child(3) .type-name {
    background-image: url(../images/type-tag03.png);
}

.index .index-games-show .type-container .game-type:nth-child(4) .type-name {
    background-image: url(../images/type-tag04.png);
}

.index .index-games-show .type-container .game-type:nth-child(5) .type-name {
    background-image: url(../images/type-tag05.png);
}

.index .index-games-show .type-container .game-type:nth-child(6) .type-name {
    background-image: url(../images/type-tag06.png);
}

.index .index-games-show .type-container .game-type .game-list {
    overflow: hidden;
}

.index .index-games-show .type-container .game-type .game-list li {
    display: flex;
    align-items: center;
}

.index .index-games-show .type-container .game-type .game-list li::after {
    display: block;
    content: '';
    width: 1px;
    height: 12px;
    margin: 0 20px;
    background: var(--dm-c)
}

.index .index-games-show .type-container .game-type .game-list li:last-child::after {
    display: none;
}

.index .index-games-show .type-container .game-type .game-list li .game-name {
    max-width: 85px;
}

.index .slideshow-topic {
    width: 430px;
}

.index .slideshow .uk-slideshow-items {
    height: 220px;
}

.index .slideshow .uk-slideshow-items li a {
    display: block;
    width: 100%;
    height: 100%;
}

.index .slideshow .uk-slideshow-items li .sketch {
    width: 100%;
    height: 50px;
    color: #FFF;
    padding: 0 15px;
    font-size: 18px;
    line-height: 50px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.index .slideshow .uk-thumbnav {
    margin: 6px 0 0 0;
}

.index .slideshow .uk-thumbnav li {
    margin: 0;
    padding: 0;
    width: 94px;
    height: 64px;
    cursor: pointer;
}

.index .slideshow-topic .hot-topic {
    margin-top: 30px;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item {
    margin-bottom: 20px;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item:last-child {
    margin-bottom: 0;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .pic {
    width: 142px;
    height: 84px;
    flex-shrink: 0;
    margin-right: 12px;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .title {
    font-size: 16px;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .sketch {
    color: #777;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .circusee,
.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .participant {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #AAAAAA;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .circusee::before,
.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .participant::before {
    display: inline-block;
    content: '';
    width: 15px;
    height: 10px;
    margin-right: 6px;
    background: no-repeat center center/contain;
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .circusee::before {
    background-image: url(../images/circusee.png);
}

.index .slideshow-topic .hot-topic .topic-comtainer .topic-item .info .participant::before {
    background-image: url(../images/participant.png);
}

.index .gba-section {
    width: 430px;
}

.index .gba-section .gba-container {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--br-c);
}

.index .gba-section .gba-container:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.index .gba-section .gba-container .gba-show .title {
    font-size: 20px;
    font-weight: bold;
    color: var(--pm-c);
}

.index .gba-section .gba-container .gba-show .info {
    margin-top: 14px;
}

.index .gba-section .gba-container .gba-show .info .pic {
    width: 121px;
    height: 75px;
    flex-shrink: 0;
    margin-right: 18px;
}

.index .gba-section .gba-container .gba-show .info .gba-sketch {
    color: #777;
    line-height: 34px;
}

.index .gba-section .gba-container .gba-list {
    margin-top: 20px;
}

.index .gba-section .gba-container .gba-list .item .gba-tag {
    color: #AAA;
    margin-right: 8px;
}

/* 人气下载 */
.index .popular-down {
    width: 300px;
}

.index .popular-down .game-container .game-item {
    display: flex;
    margin-bottom: 13px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--br-c);
}

.index .popular-down .game-container .game-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.index .popular-down .game-container .game-item .num {
    width: 18px;
    height: 18px;
    color: #FFF;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-right: 20px;
    border-radius: 4px;
    background: #D9D9D9;
}

.index .popular-down .game-container .game-item:nth-child(1) .num,
.index .popular-down .game-container .game-item:nth-child(2) .num,
.index .popular-down .game-container .game-item:nth-child(3) .num {
    width: 18px;
    height: 24px;
    line-height: 20px;
    border-radius: 0;
    background: no-repeat center center/contain;
}

.index .popular-down .game-container .game-item:nth-child(1) .num {
    background-image: url(../images/tag01.png);
}

.index .popular-down .game-container .game-item:nth-child(2) .num {
    background-image: url(../images/tag02.png);
}

.index .popular-down .game-container .game-item:nth-child(3) .num {
    background-image: url(../images/tag03.png);
}

.index .popular-down .game-container .game-item .default .game-name {
    flex: 1;
    margin-right: 20px;
}

.index .popular-down .game-container .game-item .default .details {
    display: flex;
    font-size: 12px;
    color: var(--pm-c);
    align-items: center;
}

.index .popular-down .game-container .game-item .default .details::after {
    display: block;
    content: '';
    width: 8px;
    height: 6px;
    margin-left: 8px;
    background: url(../images/small-arrows.png) no-repeat center center/contain;
}

.index .popular-down .game-container .game-item .show .game-name {
    font-size: 16px;
}

.index .popular-down .game-container .game-item .show .info {
    margin-top: 10px;
}

.index .popular-down .game-container .game-item .show .info .game-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 6px;
}

.index .popular-down .game-container .game-item .show .info .down-bth {
    width: 70px;
    height: 27px;
    color: #FFF;
    font-size: 12px;
    line-height: 27px;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* 激活效果 */
.index .popular-down .game-container .game-item.active .default {
    display: none;
}

.index .popular-down .game-container .game-item .show {
    display: none;
}

.index .popular-down .game-container .game-item.active .show {
    display: block;
}

.index .hot-subject {
    width: 880px;
}

.index .hot-subject .subject-container .subject-item {
    width: 410px;
    height: 98px;
    margin: 0 20px 20px 0;
    position: relative;
}

.index .hot-subject .subject-container .subject-item:nth-child(2n) {
    margin-right: 0;
}

.index .hot-subject .subject-container .subject-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.index .hot-subject .subject-container .subject-item::before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/subject-bg.png) no-repeat center/contain;
}

.index .hot-subject .subject-container .subject-item .pic {
    width: 161px;
    height: 100%;
}

.index .hot-subject .subject-container .subject-item .info {
    padding: 14px 24px 14px 0;
    position: relative;
    z-index: 99;
}

.index .hot-subject .subject-container .subject-item .info .date {
    color: #777;
    font-size: 14px;
}

.index .hot-subject .subject-container .subject-item .info .go {
    width: 55px;
    height: 26px;
    background: url(../images/go-btn.png) no-repeat center/contain;
}

.index .fine-gba {
    width: 300px;
}

.index .fine-gba .gba-show {
    width: 260px;
    height: 164px;
    position: relative;
}

.index .fine-gba .gba-show .pic {
    width: 100%;
    height: 100%;
    position: relative;
}

.index .fine-gba .gba-show .pic::before {
    display: block;
    content: '精选';
    width: 62px;
    height: 26px;
    color: #FFF;
    line-height: 27px;
    text-align: center;
    background: url(../images/fine-tag.png) no-repeat center/contain;
    position: absolute;
    left: -2px;
    top: 10px;
}

.index .fine-gba .gba-show .sketch {
    width: 100%;
    height: 40px;
    color: #FFF;
    padding: 0 10px;
    font-size: 14px;
    line-height: 40px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.index .fine-gba .gba-list {
    margin-top: 20px;
}

.index .fine-gba .gba-list .item {
    margin-top: 18px;
}

.index .fine-gba .gba-list .item .sketch {
    font-size: 16px;
}

/* 软件（手游、应用）下载 */
.index .soft-section .public-title {
    margin-bottom: 30px;
}

.index .soft-section .soft-type {
    margin-left: 110px;
}

.index .soft-section .soft-type .type-item {
    color: #777;
    margin-right: 40px;
    padding-bottom: 6px;
}

.index .soft-section .soft-type .type-item:last-child {
    margin-right: 0;
}

.index .soft-section .soft-type .type-item.active {
    color: #333;
    font-weight: bold;
    position: relative;
}

.index .soft-section .soft-type .type-item.active::after {
    display: block;
    content: '';
    width: 60px;
    height: 8px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%);
    background: url(../images/soft-type-active.png) no-repeat center/contain;
}

.index .soft-section .soft-container .soft-item {
    width: 116px;
    /* height: 158px; */
    padding: 16px 18px;
    margin: 0 33px 30px 0;
    background: #F9F9F9;
    border-radius: 18px;
}

.index .soft-section .soft-container .soft-item:nth-child(8n) {
    margin-right: 0;
}

.index .soft-section .soft-container .soft-item:nth-last-child(-n+8) {
    margin-bottom: 0;
}

.index .soft-section .soft-container .soft-item:hover,
.index .soft-section .soft-container .soft-item.active {
    background: #F1FCFB
}

.index .soft-section .soft-container .soft-item .soft-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    border-radius: 16px;
}

.index .soft-section .soft-container .soft-item .soft-name {
    text-align: center;
}

.index .soft-section .soft-container .soft-item .type {
    text-align: center;
}

/* 热门推荐 */
.index .new-games .section-title {
    width: 46px;
    height: 150px;
    font-size: 16px;
    color: var(--pm-c);
    padding: 25px 10px;
    text-align: center;
    margin-right: 30px;
    background: url(../images/hot-rec-title.png) no-repeat center/contain;
}

.index .new-games .game-container .game-item {
    width: 90px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 34px;
}

.index .new-games .game-container .game-item:last-child {
    margin-right: 0;
}

.index .new-games .game-container .game-item .game-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 6px;
    border-radius: 16px;
}

.index .new-games .game-container .game-item .game-name {
    width: 100%;
    text-align: center;
}

.index .new-games .game-container .game-item .down-btn {
    display: block;
    width: 60px;
    height: 26px;
    color: #FFF;
    font-size: 12px;
    margin-top: 10px;
    line-height: 26px;
    text-align: center;
    border-radius: 2px;
    background: var(--pm-c);
}

/* 新游视频 */
.index .new-games-video {
    width: 880px;
}

.index .new-games-video .video-container .video-item {
    width: 410px;
    height: 220px;
    position: relative;
    margin: 0 20px 20px 0;
}

.index .new-games-video .video-container .video-item:nth-child(2n) {
    margin-right: 0;
}

.index .new-games-video .video-container .video-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.index .new-games-video .video-container .video-item .pic {
    width: 100%;
    height: 100%;
}

.index .new-games-video .video-container .video-item .player {
    width: 64px;
    height: 64px;
    background: url(../images/player.png) no-repeat center center/contain;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

.index .new-games-video .video-container .video-item .sketch {
    width: 100%;
    height: 48px;
    color: #FFF;
    padding: 0 15px;
    font-size: 18px;
    font-weight: bold;
    line-height: 48px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    bottom: 0;
}

.index .new-games-eva {
    width: 300px;
}

/* 游戏礼包 */
.index .gift-section {
    width: 440px;
}

.index .gift-section .gift-container .gift-item {
    position: relative;
    margin-bottom: 40px;
}

.index .gift-section .gift-container .gift-item:last-child {
    margin-bottom: 0;
}

.index .gift-section .gift-container .gift-item .icon {
    width: 95px;
    height: 95px;
    margin-right: 20px;
    border-radius: 18px;
}

.index .gift-section .gift-container .gift-item .info {
    padding: 2px 0;
}

.index .gift-section .gift-container .gift-item .info .name {
    max-width: 180px;
    font-size: 16px;
}

.index .gift-section .gift-container .gift-item .get-btn {
    width: 72px;
    height: 34px;
    color: var(--pm-c);
    line-height: 32px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--pm-c);
    position: absolute;
    right: 0;
    top: 0;
}

.index .gift-section .gift-container .gift-item .get-btn:hover {
    color: #FFFFFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* 新游预告 */
.index .new-games-news {
    width: 740px;
}

.index .new-games-news .news-container {
    width: 340px;
    margin-bottom: 18px;
}

.index .new-games-news .news-container .news-show {
    margin-bottom: 18px;
}

.index .new-games-news .news-container .news-show .pic {
    width: 138px;
    height: 90px;
    margin-right: 10px;
}

.index .new-games-news .news-container:nth-last-child(-n+2) {
    margin-bottom: 0;
}

/* 排行榜 */
.index .rank-section .rank-container {
    width: 373px;
}

.index .rank-section .rank-container .rank-title {
    width: 265px;
    height: 63px;
    color: #FFF;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 63px;
    padding-left: 103px;
    background: no-repeat center center/contain;
}

.index .rank-section .rank-container.all-rank .rank-title {
    background-image: url(../images/rank-title01.png);
}

.index .rank-section .rank-container.game-rank .rank-title {
    background-image: url(../images/rank-title02.png);
}

.index .rank-section .rank-container.app-rank .rank-title {
    background-image: url(../images/rank-title03.png);
}

.index .rank-section .rank-container .soft-container {
    margin-top: 28px;
}

.index .rank-section .rank-container .soft-container .soft-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--br-c);
}

.index .rank-section .rank-container .soft-container .soft-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.index .rank-section .rank-container .soft-container .soft-item .rank-num {
    width: 30px;
    height: 30px;
    color: #333;
    font-size: 16px;
    line-height: 30px;
    margin-right: 24px;
    text-align: center;
    border-radius: 50%;
    background: #EEEEEE no-repeat center/contain;
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(1) .rank-num {
    color: #FFF;
    background-image: url(../images/rank01.png);
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(2) .rank-num {
    color: #FFF;
    background-image: url(../images/rank02.png);
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(3) .rank-num {
    color: #FFF;
    background-image: url(../images/rank03.png);
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(1).active .rank-num,
.index .rank-section .rank-container .soft-container .soft-item:nth-child(2).active .rank-num,
.index .rank-section .rank-container .soft-container .soft-item:nth-child(3).active .rank-num {
    width: 30px;
    height: 52px;
    border-radius: 0;
    color: transparent;
    background-color: transparent;
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(1).active .rank-num {
    background: url(../images/rank01-active.png);
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(2).active .rank-num {
    background: url(../images/rank02-active.png);
}

.index .rank-section .rank-container .soft-container .soft-item:nth-child(3).active .rank-num {
    background: url(../images/rank03-active.png);
}

.index .rank-section .rank-container .soft-container .soft-item .default .name {
    font-size: 18px;
    line-height: 30px;
    margin-right: 20px;
}

.index .rank-section .rank-container .soft-container .soft-item .show .icon {
    width: 100px;
    height: 100px;
    margin-right: 24px;
    border-radius: 20px;
}

.index .rank-section .rank-container .soft-container .soft-item .show .name {
    font-size: 20px;
}

.index .rank-section .rank-container .soft-container .soft-item .show .down-btn {
    display: block;
    width: 68px;
    height: 30px;
    color: #FFF;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* 激活效果 */
.index .rank-section .rank-container .soft-container .soft-item.active .default {
    display: none;
}

.index .rank-section .rank-container .soft-container .soft-item .show {
    display: none;
}

.index .rank-section .rank-container .soft-container .soft-item.active .show {
    display: flex;
}

/* 游戏美宣 */
.index .game-poster {}

.index .game-poster .poster-container {
    display: grid;
    width: 100%;
    height: 596px;
    grid-template-columns: 340px 321px 478px;
    grid-gap: 10px;
}

.index .game-poster .poster-container>* {
    height: 596px;
}

.index .game-poster .poster-container .pic {
    display: block;
    margin-bottom: 10px;
}

.index .game-poster .poster-container .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index .game-poster .poster-container .first-column .pic {
    height: 192px;
}

.index .game-poster .poster-container .second-column .pic:nth-child(1) {
    height: 394px;
}

.index .game-poster .poster-container .second-column .pic:nth-child(2) {
    height: 192px;
}

.index .game-poster .poster-container .third-column .pic {
    height: 293px;
}

/* 友情链接 */
.index .blogroll {
    margin-bottom: 0;
}

.index .blogroll .public-title {
    margin-bottom: 15px;
}

.index .blogroll .link-list .link-item {
    line-height: 28px;
    margin-right: 27px;
}

.index .blogroll .link-list .link-item a {
    color: #777;
}

.index .blogroll .link-list .link-item:hover a {
    color: var(--pm-c);
}

/* ————————————————————软件下载页样式—————————————————————————— */
.list-soft .soft-type .type-item {
    width: 120px;
    height: 41px;
    font-size: 16px;
    line-height: 41px;
    text-align: center;
    background: #F5F5F5;
    margin: 0 28px 20px 0;
}

.list-soft .soft-type .type-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.list-soft .soft-type .type-item.active a,
.list-soft .soft-type .type-item:hover a {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

.list-soft .soft-type .type-item:nth-child(8n) {
    margin-right: 0;
}

.list-soft .soft-type .type-item:nth-last-child(-n+8) {
    margin-bottom: 0;
}

.list-soft .soft-container {
    display: flex;
    flex-wrap: wrap;
}

.list-soft .soft-container .soft-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width: 172px;
    height: 259px;
    padding-top: 20px;
    border-radius: 16px;
    background: #FFFFFF;
    margin: 0 25px 40px 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.list-soft .soft-container .soft-item:nth-child(6n) {
    margin-right: 0;
}

.list-soft .soft-container .soft-item:nth-last-child(-n+6) {
    margin-bottom: 0;
}

.list-soft .soft-container .soft-item .soft-icon {
    width: 110px;
    height: 110px;
    border-radius: 20px;
}

.list-soft .soft-container .soft-item .soft-name {
    max-width: 150px;
    font-size: 20px;
    font-weight: bold;
}

.list-soft .soft-container .soft-item .down-btn {
    display: block;
    width: 172px;
    height: 49px;
    color: #777;
    font-size: 16px;
    line-height: 49px;
    text-align: center;
    border-radius: 0px 0px 16px 16px;
    background: #F7F7F7;
}

.list-soft .soft-container .soft-item:hover .down-btn {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ————————————————————下载详情页样式—————————————————————————— */

.show-soft .details-section {
    width: 880px;
}

.show-soft .details-section .soft-down {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 290px;
    position: relative;
}

.show-soft .details-section .soft-down .soft-show {
    width: 100%;
    height: 210px;
    padding: 20px;
    background: url(../images/soft-down-bg.png) no-repeat center/contain;
}

.show-soft .details-section .soft-down .soft-show .soft-info {
    margin-top: -60px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.show-soft .details-section .soft-down .soft-show .soft-info .soft-icon {
    width: 140px;
    height: 140px;
    margin-right: 24px;
    border-radius: 20px;
}

.show-soft .details-section .soft-down .soft-show .soft-info .info h1 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.show-soft .details-section .soft-down .soft-show .soft-info .info ul {
    color: #777777;
}

.show-soft .details-section .soft-down .soft-show .soft-info .info ul {
    width: 400px;
    color: #777777;
}

.show-soft .details-section .soft-down .soft-show .soft-info .info ul li {
    width: 195px;
    margin-top: 12px;
}

.show-soft .details-section .soft-down .soft-show .soft-info .soft-score {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: 110px;
    font-size: 28px;
    color: var(--pm-c);
    font-weight: bold;
    background: url(../images/score-bg.png) no-repeat center center/contain;
}

.show-soft .details-section .soft-down .soft-show .soft-info .soft-score .score-show {
    margin-bottom: 10px;
}

.show-soft .details-section .soft-down .soft-show .btn-container {
    margin-top: 26px;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn {
    width: 378px;
    height: 45px;
    color: #FFF;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn.az {
    background: #77D92A;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn.ios {
    background: #51ABFF;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn.az::before {
    width: 24px;
    height: 24.65px;
    background: url(../images/az.png) no-repeat center center/contain;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn.ios::before {
    width: 20.31px;
    height: 24px;
    background: url(../images/ios.png) no-repeat center center/contain;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn .codes {
    display: none;
    width: 150px;
    height: 184px;
    color: #AAA;
    font-size: 14px;
    padding: 26px 29px;
    background-color: #fff;
    border: 1px solid var(--pm-c);
    box-shadow: 0px 4px 4px 0px rgba(193, 222, 218, 0.4);
    position: absolute;
    bottom: 0;
    left: -40px;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn .codes .pic {
    width: 92px;
    height: 92px;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn .codes span {
    display: inline;
}

.show-soft .details-section .soft-down .soft-show .btn-container .down-btn:hover .codes {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-soft .details-section .article .screenshot {
    margin-top: 30px;
    position: relative;
}

.show-soft .details-section .article .screenshot .sliding {
    width: 100%;
    /*height: 356px;*/
}

.show-soft .details-section .article .screenshot .sliding .sliding-width {
    width: 680px;
    margin: 0 auto;
    overflow: hidden;
}

.show-soft .details-section .article .screenshot .sliding .uk-slider-items {
    /*height: 356px;*/
}

.show-soft .details-section .article .screenshot .sliding .uk-slider-items li {
    width: 200px;
    padding: 0;
    margin-right: 40px;
}

.show-soft .details-section .article .screenshot .sliding .uk-slider-items li .uk-panel {
    width: 100% !important;
    /*height: 100% !important;*/
}

.show-soft .details-section .article .screenshot .sliding .uk-slider-items li img {
    width: 100% !important;
    /*height: 100% !important;*/
}

.show-soft .details-section .article .screenshot .sliding .next,
.show-soft .details-section .article .screenshot .sliding .prev {
    display: block;
    width: 28px;
    height: 48px;
    visibility: initial !important;
}

.show-soft .details-section .article .screenshot .sliding .next {
    background: url(../images/screenshot-next.png) no-repeat center/contain;
}

.show-soft .details-section .article .screenshot .sliding .prev {
    background: url(../images/screenshot-prev.png) no-repeat center/contain;
}

.show-soft .details-section .game-gba .gba-container {
    width: 410px;
}

.show-soft .details-section .game-gba .gba-container .gba-item {
    margin-bottom: 26px;
}

.show-soft .details-section .game-gba .gba-container .gba-item:last-child {
    margin-bottom: 0;
}

.show-soft .details-section .game-gba .gba-container .gba-item .title {
    font-size: 16px;
    margin-bottom: 18px;
}

.show-soft .details-section .game-gba .gba-container .gba-item .info .pic {
    width: 160px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 15px;
}

.show-soft .details-section .game-gba .gba-container .gba-item .info .gba-sketch {
    line-height: 30px;
}

.show-soft .details-section .game-gba .gba-container .gba-item .info .date {
    color: #AAAAAA;
    text-align: right;
}

.show-soft .details-section .game-gba .gba-list {
    width: 410px;
}

.show-soft .details-section .game-gba .gba-list .item {
    margin-top: 18px;
}

.show-soft .details-section .game-gba .gba-list .item::before {
    display: none;
}

.show-soft .details-section .game-gba .gba-list .item:first-child {
    margin-top: 0;
}

.show-soft .details-section .game-gba .gba-list .item .gba-tag {
    color: var(--pm-c);
    margin-right: 14px;
}

/* ————————————————————专辑页样式—————————————————————————— */
.list-album .album-type {
    display: flex;
    align-items: center;
}

.list-album .album-type .type-item {
    display: block;
    width: 120px;
    height: 41px;
    font-size: 16px;
    line-height: 41px;
    text-align: center;
    margin-right: 28px;
    background: #F5F5F5;
    position: relative;
}

.list-album .album-type .type-item:hover,
.list-album .album-type .type-item.active {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

.list-album .album-type .type-item:hover::after,
.list-album .album-type .type-item.active::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 7px solid #6BEB9E;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.list-album .album-container .album-item .album-title {
    margin-bottom: 30px;
}

.list-album .album-container .album-item .album-title .title {
    font-size: 20px;
    font-weight: bold;
}

.list-album .album-container .album-item .game-container .game-tag {
    width: 48px;
    height: 158px;
    color: var(--pm-c);
    font-size: 16px;
    padding: 28px 10px;
    text-align: center;
    margin-right: 22px;
    background: url(../images/hot-rec-title.png) no-repeat center/contain;
}

.list-album .album-container .album-item .game-container .game-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width: 116px;
    height: 158px;
    padding: 16px 18px;
    margin-right: 23px;
    border-radius: 18px;
    background: #F5F5F5;
}

.list-album .album-container .album-item .game-container .game-item:last-child {
    margin-right: 0;
}

.list-album .album-container .album-item .game-container .game-item .game-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
}

.list-album .album-container .album-item .game-container .game-item .game-name {
    max-width: 90px;
}

/* ————————————————————专辑详情页样式—————————————————————————— */

.show-album .album-show .icon {
    width: 125px;
    height: 125px;
    margin-right: 30px;
    border-radius: 20px;
}

.show-album .album-show .info {
    padding: 11px 0;
}

.show-album .album-show .info h1 {
    font-size: 28px;
}

.show-album .album-show .info .tags .tag {
    height: 30px;
    color: #777;
    font-size: 14px;
    padding: 0 20px;
    line-height: 30px;
    margin-right: 16px;
    border-radius: 6px;
    background: #EEEEEE;
}

.show-album .highly-rec-tag {
    width: 92px;
    height: 92px;
    background: url(../images/game-tag01.png) no-repeat center center/contain;
    position: absolute;
    right: -4px;
    top: -4px;
}

.show-album .highly-rec-tag .text {
    color: #FFFFFF;
    text-align: center;
    transform: rotate(45deg);
    transform-origin: top left;
    position: absolute;
    right: -8px;
    top: 8px;
}

/* 相关推荐 */
.show-album .album-show .same-rec {
    margin-top: 20px;
    white-space: nowrap;
}

.show-album .album-show .same-rec .rec-game {
    flex-wrap: wrap;
}

.show-album .album-show .same-rec .rec-game .game-name {
    height: 27px;
    padding: 0 20px;
    color: var(--pm-c);
    line-height: 27px;
    text-align: center;
    border-radius: 4px;
    margin: 0 10px 10px 0;
    background: rgba(18, 205, 176, 0.06);
}

.show-album .album-show .same-rec .rec-game .game-name:nth-last-child(-n+5) {
    margin-bottom: 0;
}

.show-album .album-show .highly-rec {
    width: 154px;
    height: 182px;
    border-radius: 8px;
    padding: 30px 20px 12px;
    background: rgba(18, 205, 176, 0.06);
    position: relative;
}

.show-album .album-show .game-tag {
    background-image: url(../images/game-tag01.png)
}

.show-album .album-show .highly-rec .game-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
}

.show-album .album-show .highly-rec .game-name {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.show-album .album-show .highly-rec .down-btn {
    width: 114px;
    height: 32px;
    color: #FFF;
    line-height: 32px;
    text-align: center;
    border-radius: 8px;
    background: var(--pm-c);
}

.show-album .album-games .game-item {
    width: 273px;
    height: 194px;
    border-radius: 8px;
    background: #FAFAFA;
    margin: 0 22px 40px 0;
    position: relative;
}

.show-album .album-games .game-item:nth-child(4n) {
    margin-right: 0;
}

.show-album .album-games .game-item:nth-last-child(-n+4) {
    margin-bottom: 0;
}

.show-album .album-games .game-item .game-info {
    padding: 20px;
}

.show-album .album-games .game-item .game-info .game-icon {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 16px;
}

.show-album .album-games .game-item .game-info .game-name {
    max-width: 100px;
    font-size: 16px;
}

.show-album .album-games .game-item .game-info .score {
    display: flex;
    align-items: center;
    color: #777777;
}

.show-album .album-games .game-item .game-info .date,
.show-album .album-games .game-item .game-info .type {
    color: #777777;
}

.show-album .album-games .game-item .game-info .score::after {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/star-active.png) no-repeat center center/contain;
}

.show-album .album-games .game-item .game-info .sketch {
    color: #777;
}

.show-album .album-games .game-item .down-btn {
    width: 273px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #E8E8E8;
    border-radius: 0px 0px 8px 8px;
}

.show-album .album-games .game-item:hover .down-btn {
    color: #FFF;
    background: var(--pm-c);
}

.show-album .album-games .game-item .game-tag {
    width: 39px;
    height: 34px;
    background: url(../images/game-top.png) no-repeat center/contain;
    position: absolute;
    right: 17px;
    top: -2px;
}

.show-album .album-games .game-item .game-tag .text {
    color: #FFF;
    font-size: 10px;
    text-align: center;
    padding-top: 5px;
}

.show-album .album-games .game-item:nth-child(1) .game-tag,
.show-album .album-games .game-item:nth-child(2) .game-tag,
.show-album .album-games .game-item:nth-child(3) .game-tag {
    width: 92px;
    height: 92px;
    background: no-repeat center center/contain;
    position: absolute;
    right: -4px;
    top: -4px;
}

.show-album .album-games .game-item:nth-child(1) .game-tag .text,
.show-album .album-games .game-item:nth-child(2) .game-tag .text,
.show-album .album-games .game-item:nth-child(3) .game-tag .text {
    display: none;
}

.show-album .album-games .game-item:nth-child(1) .game-tag::after,
.show-album .album-games .game-item:nth-child(2) .game-tag::after,
.show-album .album-games .game-item:nth-child(3) .game-tag::after {
    display: block;
    content: '';
    color: #FFF;
    padding: 0;
    font-size: 14px;
    text-align: center;
    transform: rotate(45deg);
    transform-origin: top left;
    position: absolute;
    right: -8px;
    top: 8px;
}

.show-album .album-games .game-item:nth-child(1) .game-tag::after {
    content: '最受欢迎';
}

.show-album .album-games .game-item:nth-child(2) .game-tag::after {
    content: '最多下载';
}

.show-album .album-games .game-item:nth-child(3) .game-tag::after {
    content: '小编推荐';
}

.show-album .album-games .game-item:nth-child(1) .game-tag {
    background-image: url(../images/game-tag02.png);
}

.show-album .album-games .game-item:nth-child(2) .game-tag {
    background-image: url(../images/game-tag03.png);
}

.show-album .album-games .game-item:nth-child(3) .game-tag {
    background-image: url(../images/game-tag04.png);
}

.show-album .more-album .album-container .album-item {
    display: block;
    width: 180px;
    height: 45px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    border-radius: 6px;
    margin: 0 16px 20px 0;
    background: #FAFAFA;
}

.show-album .more-album .album-container .album-item:nth-child(6n) {
    margin-right: 0;
}

.show-album .more-album .album-container .album-item:nth-last-child(-n+6) {
    margin-bottom: 0;
}

.show-album .more-album .album-container .album-item:hover {
    background: rgba(18, 205, 176, 0.06);
}

.show-album .new-games-eva {
    width: 300px;
}

/* ————————————————————资讯页样式—————————————————————————— */
.list-news .soft-type .type-item {
    width: 120px;
    height: 41px;
    color: #FFF;
    font-size: 16px;
    line-height: 41px;
    text-align: center;
    margin-right: 28px;
    margin-bottom: 10px;
    background: #F5F5F5;
}

.list-news .soft-type .type-item:last-child {
    margin-right: 0;
}

.list-news .soft-type .type-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.list-news .soft-type .type-item:hover a,
.list-news .soft-type .type-item.active a {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

.list-news .game-news .news-container .news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}

.list-news .game-news .news-container .news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ————————————————————资讯详情页样式—————————————————————————— */
.show-news .details-section {
    width: 880px;
}

.show-news .details-section .article .article-head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}

.show-news .details-section .article .article-head h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.show-news .details-section .article .article-head .from {
    margin-right: 66px;
}

.show-news .details-section .below-game-gba .gba-list {
    width: 390px;
}

.show-news .details-section .below-game-gba .gba-list .item::before {
    display: none;
}

/* 新游上线时间 */
.show-news .game-date-time .game-container {
    padding: 0 6px;
}

.show-news .game-date-time .game-container .game-item {
    width: 70px;
    display: flex;
    margin-right: 38px;
    align-items: center;
    flex-direction: column;
}

.show-news .game-date-time .game-container .game-item .name{
    max-width: 70px;
}

.show-news .game-date-time .game-container .game-item:last-child {
    margin-right: 0;
}

.show-news .game-date-time .game-container .game-item .date-show {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    flex-direction: column;
}

.show-news .game-date-time .game-container .game-item .date-show .tran-line {
    display: flex;
    margin-top: 8px;
    align-items: center;
    justify-content: space-between;
}

.show-news .game-date-time .game-container .game-item .date-show .tran-line::before,
.show-news .game-date-time .game-container .game-item .date-show .tran-line::after {
    display: block;
    content: '';
    width: 45px;
    height: 1px;
    background: var(--pm-c);
}

.show-news .game-date-time .game-container .game-item:first-child .date-show .tran-line::before,
.show-news .game-date-time .game-container .game-item:last-child .date-show .tran-line::after {
    background: transparent;
}

.show-news .game-date-time .game-container .game-item:last-child .date-show .tran-line::before,
.show-news .game-date-time .game-container .game-item:first-child .date-show .tran-line::after {
    background: #AAAAAA;
}

.show-news .game-date-time .game-container .game-item .date-show .tran-line .dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
    border: 2px solid var(--pm-c);
}

.show-news .game-date-time .game-container .game-item:first-child .date-show .tran-line .dot,
.show-news .game-date-time .game-container .game-item:last-child .date-show .tran-line .dot {
    border: 2px solid #AAAAAA
}

.show-news .game-date-time .game-container .game-item .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 6px;
    border-radius: 10px;
}

.show-news .game-date-time .game-container .game-item .type {
    margin: 4px 0 12px 0;
}

.show-news .game-date-time .game-container .game-item .down-btn {
    width: 60px;
    height: 26px;
    color: #FFF;
    font-size: 12px;
    line-height: 26px;
    text-align: center;
    border-radius: 4px;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ————————————————————游戏礼包页样式—————————————————————————— */
.gift .gift-section {
    width: 880px;
}

.list-gift .gift-section .gift-container .gift-item {
    width: 396px;
    margin: 0 48px 40px 0;
}

.list-gift .gift-section .gift-container .gift-item:nth-child(2n) {
    margin-right: 0;
}

.list-gift .gift-section .gift-container .gift-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.list-gift .gift-section .gift-container .gift-item .icon {
    width: 95px;
    height: 95px;
    margin-right: 20px;
    border-radius: 18px;
}

.list-gift .gift-section .gift-container .gift-item .info {
    padding: 2px 0;
}

.list-gift .gift-section .gift-container .gift-item .name {
    font-size: 16px;
    margin-right: 15px;
}

.list-gift .gift-section .gift-container .gift-item .get-btn {
    display: inline-block;
    width: 60px;
    height: 27px;
    color: #FFF;
    line-height: 27px;
    text-align: center;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

.list-gift .gift-section .gift-container .gift-item .info .sketch {
    color: #AAA;
}

.list-gift .gift-section .gift-container .gift-item .show {
    display: none;
    padding: 2px 0;
}

.gift .gift-count .all-count {
    width: 112px;
    height: 4px;
    background: #EEEEEE;
}

.gift .gift-count .all-count .count {
    width: 50%;
    height: 100%;
    background: #FFC700;
}

.gift .gift-count .count-ratio {
    color: #777;
    margin-left: 12px;
}

.list-gift .gift-section .gift-container .gift-item:hover .info {
    display: none;
}

.list-gift .gift-section .gift-container .gift-item:hover .show {
    display: flex;
}

/* 推荐礼包 */
.gift .rec-gift .gitf-container .gift-item {
    margin-bottom: 24px;
}

.gift .rec-gift .gitf-container .gift-item:last-child {
    margin-bottom: 0;
}

.gift .rec-gift .gitf-container .gift-item .icon {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 18px;
}

.gift .rec-gift .gitf-container .gift-item .info {
    padding: 2px 0 4px 0;
}

.gift .rec-gift .gitf-container .gift-item .info .name {
    font-size: 16px;
    margin-right: 10px;
}

.gift .rec-gift .gitf-container .gift-item .info .get-btn {
    width: 60px;
    height: 27px;
    color: var(--pm-c);
    line-height: 25px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--pm-c);
}

.gift .rec-gift .gitf-container .gift-item .info .get-btn:hover {
    color: #FFFFFF;
    background-color: var(--pm-c);
}

/* ————————————————————礼包详情页样式—————————————————————————— */
.show-gift .gift-head .icon {
    width: 120px;
    height: 120px;
    margin-right: 18px;
    border-radius: 26px;
}

.show-gift .gift-head .info {
    padding: 5px 0;
}

.show-gift .gift-head .info h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.show-gift .gift-head .btn-container {
    width: 196px;
}

.show-gift .gift-section .gift-head .btn-container .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    color: #FFF;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
}

.show-gift .gift-section .gift-head .btn-container .btn::before {
    display: block;
    content: '';
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.show-gift .gift-section .gift-head .btn-container .get-btn {
    background: #77D92A;
}

.show-gift .gift-section .gift-head .btn-container .get-btn::before {
    background: url(../images/get-icon.png) no-repeat center/contain;
}

.show-gift .gift-section .gift-head .btn-container .down-btn {
    background: #51ABFF;
}

.show-gift .gift-section .gift-head .btn-container .down-btn::before {
    background: url(../images/down-icon.png) no-repeat center/contain;
}

.show-gift .gift-section .gift-head .btn-container .down-btn .codes {
    display: none;
    width: 155px;
    color: #888;
    font-size: 12px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 40px;
    right: 50%;
    transform: translateX(50%);
}

.show-gift .gift-section .gift-head .btn-container .not-gift,
.show-gift .gift-section .gift-head .btn-container .not-down {
    color: #aaa;
    background-color: #eee;
}

.show-gift .gift-section .gift-head .btn-container .not-gift::before,
.show-gift .gift-section .gift-head .btn-container .not-down::before {
    display: none;
}

.show-gift .gift-section .gift-head .btn-container .down-btn .codes .pic {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.show-gift .gift-section .gift-head .btn-container .down-btn:hover .codes {
    display: flex;
}

.show-gift .gift-section .article {
    margin-top: 30px;
}

.show-gift .gift-section .article .small-title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 14px;
}

.show-gift .gift-section .article .article-content p {
    color: #AAAAAA;
    margin-bottom: 30px;
}

.show-gift .gift-section .article .article-content p:last-child {
    margin-bottom: 0;
}

.show-gift .gift-section .article .article-content p .start {
    margin-right: 50px;
}

/* 其他礼包 */
.show-gift .gift-section .article .other-gift {
    margin-top: 50px;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item {
    margin-bottom: 20px;
    overflow: hidden;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item:last-child {
    margin-bottom: 0;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item .name {
    width: 220px;
    max-width: 220px;
    margin-right: 60px;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item .tag::before {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 12px;
    background: url(../images/gift.png) no-repeat center/contain;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item .date {
    margin-right: 60px;
}


.show-gift .gift-section .article .other-gift .gift-container .gift-item .sketch {
    color: #AAAAAA;
    margin-right: 15px;
}

.show-gift .gift-section .article .other-gift .gift-container .gift-item .get-btn {
    display: block;
    width: 60px;
    height: 27px;
    color: #FFF;
    font-size: 14px;
    line-height: 27px;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/*更多礼包 */
.show-gift .gift-section .more-gift .gift-container .gift-item {
    width: 396px;
    margin-bottom: 40px;
}

.show-gift .gift-section .more-gift .gift-container .gift-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.show-gift .gift-section .more-gift .gift-container .gift-item .icon {
    width: 95px;
    height: 95px;
    margin-right: 20px;
    border-radius: 18px;
}

.show-gift .gift-section .more-gift .gift-container .gift-item .name {
    font-size: 16px;
}

.show-gift .gift-section .more-gift .gift-container .gift-item .sketch {
    color: #AAAAAA;
}

/* 游戏攻略 */
.show-gift .public-game-gba .gba-container {
    width: 410px;
    margin-right: 20px;
}

.show-gift .public-game-gba .gba-list {
    width: 410px;
}

/* 礼包弹窗 */
.mask-layer {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
}

.mask-layer .pop-up {
    display: none;
    width: 519.08px;
    height: 550px;
    margin: 0 auto;
    padding-top: 264px;
    position: relative;
    text-align: center;
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: url(../images/pop.png) no-repeat center/contain;
}

.mask-layer .pop-up .title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.mask-layer .pop-up .gift-show-code {
    color: #777;
    font-size: 16px;
    margin: 46px 0 74px 0;
}

.mask-layer .pop-up .copy-btn {
    width: 376px;
    height: 80px;
    margin: 0 auto;
    cursor: pointer;
    background: url(../images/copy.png) no-repeat center/contain;
}

/* ————————————————————排行榜页样式—————————————————————————— */
.rank .rank-banner {
    width: 100%;
    height: 332px;
    position: relative;
    background: url(../images/rank-banner.png) no-repeat center/cover;
}

.rank .rank-banner .web-name {
    color: #FFF;
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: 144px;
    top: 50px;
}

.rank .rank-banner .game-rank {
    color: #FFF;
    font-size: 74px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: 262px;
    top: 90px;
}

.list-rank .rank-nav {
    width: 100%;
    height: 46px;
    z-index: 99;
    margin-top: -10px;
    position: relative;
    background: linear-gradient(180deg, #FFF4CD 0%, #FFFFFF 100%);
}

.list-rank .rank-nav .nav-item {
    width: 200px;
    line-height: 46px;
    text-align: center;
}

.list-rank .rank-nav .nav-item:last-child {
    margin-right: 0;
}

.list-rank .rank-nav .nav-item a {
    display: block;
    width: 100%;
    height: 100%;
    color: #777;
    font-size: 17px;
}

.list-rank .rank-nav .nav-item.active {
    height: 71px;
    align-self: flex-end;
    background: #FFFFFF;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    transition: all .2s linear;
}

.list-rank .rank-nav .nav-item.active a {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.list-rank .rank-nav .nav-item.active::after {
    display: block;
    content: '';
    width: 98px;
    height: 8px;
    background: url(../images/rank-nav-active.png) no-repeat center/contain;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}

/* 排行榜 游戏列表 */
.rank .public-game-list {
    padding-top: 30px;
}

.rank .public-game-list .game-item {
    display: flex;
    margin-bottom: 40px;
}

.rank .public-game-list .game-item:last-child {
    margin-bottom: 0;
}

.rank .public-game-list .game-item .num {
    width: 51px;
    height: 51px;
    color: #777;
    font-size: 18px;
    user-select: none;
    line-height: 51px;
    text-align: center;
    margin-right: 20px;
    background: url(../images/rank-num04.png) no-repeat center/contain;
}

.rank .public-game-list .game-item:nth-child(1) .num,
.rank .public-game-list .game-item:nth-child(2) .num,
.rank .public-game-list .game-item:nth-child(3) .num {
    color: transparent;
}

.rank .public-game-list .game-item:nth-child(1) .num {
    background-image: url(../images/rank-num01.png);
}

.rank .public-game-list .game-item:nth-child(2) .num {
    background-image: url(../images/rank-num02.png);
}

.rank .public-game-list .game-item:nth-child(3) .num {
    background-image: url(../images/rank-num03.png);
}

.rank .public-game-list .game-item .game-icon {
    width: 142px;
    height: 142px;
    margin-right: 30px;
    border-radius: 30px;
}

.rank .public-game-list .game-item .info {
    padding: 10px 0;
    margin-right: 20px;
}

.rank .public-game-list .game-item .info .game-name {
    color: #333;
    font-size: 22px;
}

.rank .public-game-list .game-item .info .game-name:hover {
    color: var(--pm-c);
}

.rank .public-game-list .game-item .info .type,
.rank .public-game-list .game-item .info .size,
.rank .public-game-list .game-item .info .game-score {
    color: #AAA;
    font-size: 16px;
    margin-right: 30px;
}

.rank .public-game-list .game-item .info .game-score {
    margin-right: 0;
}

.rank .public-game-list .game-item .info .game-score .score-show {
    width: 110px;
    height: 20px;
    margin-right: 10px;
    background: url(../images/rank-star.png);
    background-size: 22px 20px;
}

.rank .public-game-list .game-item .info .game-score .score-show .get-score {
    width: 100%;
    height: 20px;
    max-width: 110px;
    user-select: none;
    color: transparent;
    background: url(../images/rank-star-active.png);
    background-size: 22px 20px;
}

.rank .public-game-list .game-item .info .sketch {
    color: #777;
    font-size: 16px;
}

.rank .public-game-list .game-item .down-btn {
    width: 166px;
    height: 52px;
    font-size: 20px;
    color: var(--pm-c);
    line-height: 50px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--pm-c);
}

.rank .public-game-list .game-item .down-btn:hover {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ————————————————————排行榜列表页样式—————————————————————————— */
.list-rank-new .rank-container {
    margin-top: -10px;
    position: relative;
    z-index: 99;
}

.list-rank-new .rank-container .rank-item {
    width: 570px;
    padding: 18px;
    border-radius: 10px;
    margin: 0 20px 30px 0;
    background: #F9F9F9;
}

.list-rank-new .rank-container .rank-item:nth-child(2n) {
    margin-right: 0;
}

.list-rank-new .rank-container .rank-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.rank .rank-title {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
}

.rank .rank-title .title {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.rank .rank-title .title::before {
    display: block;
    content: '';
    width: 19px;
    height: 19px;
    margin-right: 8px;
    background: url(../images/rank-title.png) no-repeat center/contain;
}

.rank .rank-title .date {
    color: #777777;
}

.list-rank-new .rank-container .rank-item .game-container {
    display: flex;
    width: 534px;
    height: 131px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #FFFFFF;
}

.list-rank-new .rank-container .rank-item .game-container .game-item {
    width: 80px;
    margin-right: 16px;
}

.list-rank-new .rank-container .rank-item .game-container .game-item .game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 18px;
    position: relative;
}

.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(1) .game-icon::before,
.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(2) .game-icon::before,
.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(3) .game-icon::before {
    display: block;
    content: '';
    width: 32px;
    height: 32px;
    background: no-repeat center center/contain;
    position: absolute;
    left: 0;
    top: 0;
}

.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(1) .game-icon::before {
    background-image: url(../images/rank-game01.png);
}

.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(2) .game-icon::before {
    background-image: url(../images/rank-game02.png);
}

.list-rank-new .rank-container .rank-item .game-container .game-item:nth-child(3) .game-icon::before {
    background-image: url(../images/rank-game03.png);
}

.list-rank-new .rank-container .rank-item .game-container .game-item .game-name {
    width: 100%;
    color: #777;
    font-size: 16px;
    text-align: center;
}

.list-rank-new .rank-container .rank-item .game-container .game-item .game-name:hover {
    color: var(--pm-c);
}

.list-rank-new .rank-container .rank-item .game-container .more-game {
    width: 22px;
    height: 22px;
    background: url(../images/rank-game-more.png) no-repeat center/contain;
}

/* ————————————————————排行详情页样式—————————————————————————— */
.show-rank .details-section {
    margin-top: -10px;
    position: relative;
    z-index: 99;
}

.show-rank .details-section .rank-section {
    width: 860px;
}

.show-rank .details-section .rank-section .rank-title {
    width: 840px;
    height: 76px;
    padding: 0 20px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #FFF4CD 0%, #FFFFFF 100%);
}

.show-rank .details-section .rank-section .rank-title .title {
    font-size: 26px;
}

.show-rank .details-section .rank-section .rank-title .title::before {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.show-rank .details-section .rank-section .rank-title .date {
    color: #AAAAAA;
}

.show-rank .details-section .rank-section .public-game-list {
    width: 860px;
    padding-top: 0;
}

.show-rank .details-section .rank-section .public-game-list .game-item {
    padding: 20px 0;
}

.show-rank .details-section .rank-section .public-game-list .game-item .info .game-name {
    margin-right: 28px;
}

.show-rank .details-section .rank-section .public-game-list .game-item .down-btn {
    width: 108px;
}

.show-rank .details-section .rank-section .game-news {
    width: 100%;
    margin-top: 45px;
}

.show-rank .details-section .aside {
    width: 280px;
}

.show-rank .details-section .aside .more-rank .rank-container .rank-item {
    width: 280px;
    height: 184px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #F9F9F9;
}

.show-rank .details-section .aside .more-rank .rank-container .rank-item:last-child {
    margin-bottom: 0;
}

.show-rank .details-section .aside .more-rank .rank-container .rank-item .rank-title {
    color: var(--pm-c);
    font-size: 18px;
    font-weight: bold;
}

.show-rank .details-section .aside .more-rank .rank-container .game-container .game-item {
    width: 70px;
    margin-right: 15px;
}

.show-rank .details-section .aside .more-rank .rank-container .game-container .game-item:last-child {
    margin-right: 0;
}

.show-rank .details-section .aside .more-rank .rank-container .game-container .game-item .game-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 9px;
    border-radius: 14px;
}

.show-rank .details-section .aside .public-game-gba .gba-list {
    width: 100%;
}

/* ————————————————————开服表样式—————————————————————————— */
.list-server .server-container .server-head {
    display: flex;
    width: 100%;
    height: 61px;
    padding: 0 20px;
    user-select: none;
    margin-bottom: 20px;
    background: #FFFFFF;
}

.list-server .server-container .server-head .item {
    height: 100%;
    color: #777;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.list-server .server-container .open-time {
    width: 157px;
}

.list-server .server-container .game-info {
    width: 338px;
}

.list-server .server-container .game-server {
    width: 125px;
}

.list-server .server-container .operation {
    width: 154px;
}

.list-server .server-container .system {
    width: 130px;
}

.list-server .server-container .downt-btn {
    width: 168px;
}

.list-server .server-container .get-btn {
    width: 88px;
}

.list-server .server-container .select {
    position: relative;
}

.list-server .server-container .select:hover {
    color: var(--pm-c);
}

.list-server .server-container .select::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    background: url(../images/server-head.png) no-repeat center center/contain;
}

.list-server .server-container .select:hover::after {
    background-image: url(../images/server-head-active.png);
}

.list-server .server-container .select .options {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 120px;
    padding: 20px 0;
    background: #FFF;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 51px;
}

/* 鼠标移入显示子项目 */
.list-server .server-container .server-head .game-info:hover .type-item {
    display: block;
}

.list-server .server-container .server-head .system:hover .server-item {
    display: block;
}

.list-server .server-container .select .options a {
    display: inline-block;
    width: 100%;
    color: #777;
    text-align: center;
    margin-bottom: 20px;
}

.list-server .server-container .select .options a:last-child {
    margin-bottom: 0;
}

.list-server .server-container .select .options a:hover {
    color: var(--pm-c);
}

.list-server .server-container .server-body {
    padding: 0 20px;
    background-color: #fff;
}

.list-server .server-container .server-body .game-item {
    width: 100%;
    height: 120px;
    color: #AAA;
    font-size: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.list-server .server-container .server-body .game-item .item {
    display: flex;
    align-items: center;
}

.list-server .server-container .server-body .game-item .open-time {
    color: var(--pm-c);
}

.list-server .server-container .server-body .game-item .game-info {
    display: flex;
    height: 100%;
    padding-right: 20px;
}

.list-server .server-container .server-body .game-item .game-info .icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 18px;
}

.list-server .server-container .server-body .game-item .game-info .name {
    color: #333;
    font-size: 16px;
}

.list-server .server-container .server-body .game-item .game-info .type {
    margin: 10px 0;
}

.list-server .server-container .server-body .game-item .game-info .date {
    font-size: 14px;
}


.list-server .server-container .server-body .game-item .system i {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: no-repeat center center/contain;
}

.list-server .server-container .server-body .game-item .system i.az {
    background-image: url(../images/server-az.png);
}

.list-server .server-container .server-body .game-item .system i.az.active {
    background-image: url(../images/server-az-active.png);
}

.list-server .server-container .server-body .game-item .system i.ios {
    background-image: url(../images/server-ios.png);
}

.list-server .server-container .server-body .game-item .system i.ios.active {
    background-image: url(../images/server-ios-active.png);
}

.list-server .server-container .server-body .game-item .downt-btn .btn {
    display: block;
    width: 88px;
    height: 34px;
    color: var(--pm-c);
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #12CDB0;
}

.list-server .server-container .server-body .game-item .get-btn .btn {
    display: block;
    width: 88px;
    height: 34px;
    color: #D9D9D9;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
}

/* ————————————————————其他单页面样式—————————————————————————— */
.single-page .select {
    width: 340px;
}

.single-page .select .option {
    display: block;
    width: 100%;
    height: 60px;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    line-height: 60px;
    text-indent: 90px;
    position: relative;
}

.single-page .select .option:hover,
.single-page .select .option.active {
    color: #FFF;
    background: var(--pm-c);
}

.single-page .select .option:hover::after,
.single-page .select .option.active::after {
    background: transparent;
}

.single-page .select .option::after {
    display: block;
    content: '';
    width: 300px;
    height: 1px;
    background: #DBDBDB;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.single-page .article {
    min-height: 100%;
    padding: 38px 40px 38px 60px;
}

.single-page .article .article-title {
    color: #333;
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
}

/* ———————关于我们——————— */
.single-page .about-us {
    min-height: 800px;
}

/* ———————网站地图——————— */
.single-page .web-map .section-title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.single-page .web-map .type-list .type-item {
    color: #777;
    font-size: 16px;
    margin: 0 35px 16px 0;
}

.single-page .web-map .type-list .type-item:hover {
    color: var(--pm-c);
}

.single-page .web-map .type-list .type-item:nth-child(8n) {
    margin-right: 0;
}

.single-page .web-map .type-list .type-item:nth-last-child(-n+9) {
    margin-bottom: 0;
}

/* ———————搜索结果——————— */
.single-page .page-search .search-item {
    margin-bottom: 50px;
}

.single-page .page-search .search-item:last-child {
    margin-bottom: 0;
}

.single-page .page-search .search-item .search-hint {
    font-size: 18px;
    margin-bottom: 20px;
}

.single-page .page-search .search-item .search-hint span {
    color: var(--pm-c);
}

.single-page .page-search .list-news .game-news {
    width: 100%;
}

/* ———————404、500页面——————— */
.page404,
.page500 {
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page404 .pic,
.page500 .pic {
    width: 259.47px;
    height: 337.86px;
    margin-top: 100px;
}

.page404 p,
.page500 p {
    font-size: 24px;
    margin: 50px 0 60px 0;
}

.page404 .back-index,
.page500 .back-index {
    width: 160px;
    height: 52px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    color: var(--pm-c);
    border: 1px solid var(--pm-c);
    border-radius: 10px 10px 10px 10px;
}

.page404 .back-index:hover,
.page500 .back-index:hover {
    color: #FFF;
    background: var(--pm-c);
}