/* ————重置样式———————————————————————————————————————————————————————————— */
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;
}

p {
    margin: 0;
}

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

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

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

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

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

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

/* 面向属性的 CSS---单个类每一个类只写一种属性————————————————————————————————— */
.info {
    flex: 1;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
}

.name,
.title,
.sketch,
.game-name,
.soft-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.icon,
.soft-icon,
.game-icon,
.game-name {
    display: block;
    overflow: hidden;
}

.game-icon img,
.soft-icon img {
    border-radius: .15rem;
}

.pic,
.icon,
.down-btn {
    display: block;
}

.oh {
    overflow: hidden;
}

.oh-y {
    overflow-y: hidden;
}

.mt10 {
    margin-top: 10rem;
}

.mt30 {
    margin-top: 30rem;
}

.mb10 {
    margin-bottom: 10rem;
}

.mb20 {
    margin-bottom: 20rem;
}

.mb30 {
    margin-bottom: 30rem;
}

.mr15 {
    margin-right: 15rem;
}

.bgc-fff {
    background-color: #fff;
}

/* 滚轴 */
.scrollableX {
    overflow-x: scroll;
}

/* 隐藏滚轴 */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* ————————————————公共样式—————————————————————————————————————————————— */

body {
    width: 100%;
    height: 100%;
    color: #777;
    font-size: 14rem;
    font-family: '微软雅黑';
}

.centre {
    padding: 20rem 16rem;
    background-color: #fff;
}

.section {
    margin-bottom: 30rem;
}

iframe {
    display: block;
    width: 100%;
}

/* ———————————————————————————————共有区块——————————————————————————————— */
/* ——————————————网页头部—————————————— */
.header {
    width: 100%;
    /* height: 81rem; */
}

.header .logo-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40rem;
    padding: 0 16rem;
}

.header .logo-search .logo {
    display: block;
    width: auto;
    height: 25rem;
}

.header .logo-search .logo img {
    object-fit: contain;
}

.header .logo-search .search {
    display: flex;
    justify-content: space-between;
    height: 25rem;
    position: relative;
}

.header .logo-search .search input {
    width: 120rem;
    padding: 0 12rem;
    box-sizing: border-box;
}

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

.header .logo-search .search button {
    width: 16rem;
    height: 16rem;
    background: url(../images/search.png) no-repeat center/contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
    width: 100%;
    height: 41rem;
    background: var(--pm-c);
}

.header .nav .nav-item {
    padding: 0 14rem;
    line-height: 41rem;
    text-align: center;
    flex-shrink: 0;
}

.header .nav .nav-item.active {
    background: #0DC1A5;
}

.header .nav .nav-item a {
    color: #FFF;
    font-size: 14rem;
    white-space: nowrap;
}

/* ——————————————网页尾部—————————————— */
.footer {
    width: 100%;
    color: #999;
    font-size: 12rem;
    padding: 20rem 12rem;
    background: #333;
}

.footer .link-list {
    margin: 10rem 0;
}

.footer .link-list span {
    margin: 0 1rem;
}

.footer .link-list .link-item {
    display: flex;
    align-items: center;
}

.footer .link-list .link-item::after {
    display: inline-block;
    content: '';
    width: 1rem;
    height: 12rem;
    margin: 5rem;
    background: #999999;
}

.footer .link-list .link-item a {
    color: #999999;
}
.footer a{
    font-size: 12rem;
    color: #999999;
}
/* ——————————————公共小组件—————————————— */
/* ——————公共标题—————— */
.public-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20rem;
}

.public-title .title {
    display: flex;
    color: #333;
    font-size: 16rem;
    font-weight: bold;
    align-items: center;
}

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

.public-title .more {
    color: #AAA;
    font-size: 10rem;
}

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


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

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

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

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

.public-list .item .date {
    color: #AAA;
    font-size: 12rem;
}

/* ——————小图标—————— */
.hot,
.player {
    color: #AAA;
    display: flex;
    font-size: 12rem;
    align-items: center;
}

.hot::before {
    display: inline-block;
    content: '';
    width: 15rem;
    height: 10rem;
    margin-right: 6rem;
    background: url(../images/hot.png) no-repeat center/contain;
}

.player::before {
    display: inline-block;
    content: '';
    width: 14rem;
    height: 11rem;
    margin-right: 6rem;
    background: url(../images/player.png) no-repeat center/contain;
}

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

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

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

/* ———————————— */
.size,
.type,
.lang,
.from,
.score,
.count,
.system,
.editor,
span.date {
    color: #AAA;
    font-size: 12rem;
}

.score .num {
    color: #FF0000;
    font-size: 20rem;
    font-weight: bold;
    line-height: 20rem;
}

/* ——————公共分类—————— */
.public-type-select {
    display: flex;
    flex-wrap: wrap;
}

.public-type-select .type-item {
    width: 78rem;
    /* padding: 0 15rem; */
    height: 30rem;
    color: #333;
    font-size: 12rem;
    text-align: center;
    line-height: 30rem;
    border-radius: 6rem;
    margin: 0 10rem 10rem 0;
    background: #F5F5F5;
}

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

.public-type-select .type-item:nth-child(4n) {
    margin-right: 0;
}

.public-type-select .type-item:nth-last-child(-n+4) {
    margin-bottom: 0;
}

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

.pagination .page-item {
    display: inline-block;
    color: #AAA;
    margin-right: 12rem;
    font-size: 16rem;
    background: #fff;
    border-radius: 4rem;
}

.pagination .page-item:last-child {
    margin-right: 0;
}

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

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

.pagination .page-item .page-link {
    display: block;
    padding: 4rem 10rem;
    border-radius: 4rem;
    background: rgba(0, 0, 0, 0.06);
}

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

/* ——————文章—————— */
.article h3,
.article h2{
    display: flex;
    color: #333;
    margin: 20rem 0;
    font-size: 16rem;
    font-weight: bold;
    align-items: center;
}

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

.article .small-title {
    font-size: 16rem;
    margin-bottom: 14rem;
}

.article p {
    color: #333;
    font-size: 14rem;
    line-height: 30rem;
    text-indent: 2em;
    margin-bottom: 20rem;
}

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

.article-content p img {
    display: block;
    margin: 20rem auto;
    max-width: 90%;
}

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

.public-game-gba {
    width: 100%;
}

.public-game-gba .gba-show {
    margin-bottom: 20rem;
}

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

.public-game-gba .gba-show .title {
    font-size: 14rem;
    margin-bottom: 10rem;
}

.public-game-gba .gba-show .gba-info .pic {
    width: 128rem;
    height: 80rem;
    margin-right: 10rem;
}

.public-game-gba .gba-show .gba-info .gba-sketch {
    color: #777;
    line-height: 24rem;
}

.public-game-gba .gba-show .gba-info .date {
    color: #AAA;
    font-size: 12rem;
    text-align: right;
}

.public-game-gba .gba-list {
    width: 100%;
}

/* ————————————————共有区块（游戏攻略）———————————————— */
.public-hot-news .news-container .news-item {
    width: 140rem;
    margin-right: 12rem;
}

.public-hot-news .news-container .news-item:last-child {
    margin-right: 0;
}

.public-hot-news .news-container .news-item .pic {
    width: 140rem;
    height: 86rem;
}

.public-hot-news .news-container .news-item .title {
    margin: 6rem 0;
}

.public-hot-news .news-container .news-item .sketch {
    color: #777;
    font-size: 12rem;
}

/* ————————————————共有区块（新游评测）———————————————— */
.new-games-eva .game-container .game-item {
    margin-bottom: 15rem;
    padding-bottom: 15rem;
    border-bottom: 1rem dashed rgba(0, 0, 0, 0.06);
}

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

.new-games-eva .game-container .game-item .game-icon {
    width: 64rem;
    height: 64rem;
    margin-right: 10rem;
    border-radius: 14rem;
}

.new-games-eva .game-container .game-item .info {
    padding: 5rem 0;
    margin-right: 15rem;
}

.new-games-eva .game-container .game-item .info .type {
    min-width: 100px;
    margin-right: 20rem;
}

.new-games-eva .game-container .game-item .score .num {
    margin-left: 5rem;
}

.new-games-eva .game-container .game-item .score::after {
    display: none;
}

.new-games-eva .game-container .game-item .down-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 28rem;
    text-align: center;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ————————————————共有区块（最新排行）———————————————— */
.newest-rank .game-list .game-item {
    padding: 10rem 0;
    border-bottom: 1rem 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: 20rem;
    height: 20rem;
    color: #AAA;
    font-size: 16rem;
    line-height: 20rem;
    text-align: center;
    margin-right: 20rem;
    border-radius: 4rem;
    background: #EEEEEE;
}

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

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

.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: 70rem;
    height: 70rem;
    margin-right: 20rem;
    border-radius: 20rem;
}

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

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

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

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

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

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

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

.game-news .news-container .news-item {
    padding-bottom: 20rem;
    margin-bottom: 20rem;
    border-bottom: 1rem dashed #ccc;
}

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

.game-news .news-container .news-item .pic {
    width: 140rem;
    height: 86rem;
    margin-right: 8rem;
}

.game-news .news-container .news-item .info {
    padding: 2rem 0;
}

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

.game-news .news-container .news-item .info .from {
    margin-right: 19rem;
}

.game-news .news-container .news-item .info .sketch {
    color: #777;
    font-size: 14rem;
}

/* ————————————————共有区块（新游预告）———————————————— */
.new-game-news .news-show {
    margin-bottom: 20rem;
}

.new-game-news .news-show .pic {
    width: 138rem;
    height: 90rem;
    flex-shrink: 0;
    margin-right: 10rem;
}

.new-game-news .news-show .info {
    width: 138rem;
    height: 90rem;
    margin-right: 10rem;
}

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

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

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

.news-rank .news-list .news-item:nth-child(1) .num,
.news-rank .news-list .news-item:nth-child(2) .num,
.news-rank .news-list .news-item:nth-child(3) .num {
    border-radius: 6rem 0 6rem 0;
}

.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: 15rem;
}

/* ————————————————共有区块（软件列表）———————————————— */
.soft-section .soft-container .soft-item {
    width: 60rem;
    margin: 0 34rem 20rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

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

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

.soft-section .soft-container .soft-item .soft-icon {
    width: 60rem;
    height: 60rem;
    margin-bottom: 8rem;
    border-radius: 15rem;
}

.soft-section .soft-container .soft-item .soft-name {
    max-width: 70rem;
    text-align: center;
}

.soft-section .soft-container .soft-item .type {
    width: 70rem;
    margin: 6rem 0;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.soft-section .soft-container .soft-item .down-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 28rem;
    text-align: center;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ———————————————————————————————页面样式——————————————————————————————— */
/* ———————————————————————————首页——————————————————————————— */

/* 轮播图 */
.index .first-slideshow {
    width: 100%;
    height: 220rem;
}

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

.index .first-slideshow .uk-slideshow-nav {
    transform: translateX(-50%);
    position: absolute;
    bottom: 10rem;
    left: 50%;
}

.index .first-slideshow .uk-slideshow-nav a {
    width: 8rem;
    height: 8rem;
    border: none;
    border-radius: 99rem;
    background: rgba(255, 255, 255, 0.6);
}

.index .first-slideshow .uk-dotnav {
    margin: 0 !important;
}

.index .first-slideshow .uk-dotnav>* {
    padding: 0 !important;
    margin-right: 5rem;
}

.index .first-slideshow .uk-slideshow-nav li:last-child {
    margin-right: 0;
}

.index .first-slideshow .uk-slideshow-nav .uk-active a {
    width: 18rem;
    background: var(--pm-c);
}

/* 精品游戏 */
.index .good-games .game-container .game-item {
    width: 56rem;
    margin: 0 15rem 20rem 0;
}

.index .good-games .game-container .game-item:nth-child(5n) {
    margin-right: 0;
}

.index .good-games .game-container .game-item:nth-last-child(-n+5) {
    margin-bottom: 0;
}

.index .good-games .game-container .game-item .game-icon {
    width: 56rem;
    height: 56rem;
    margin-bottom: 9rem;
    border-radius: 12rem;
}

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

/* 热门话题 */
.index .hot-topics .topic-container .topic-item {
    height: 84rem;
    margin-bottom: 22rem;
}

.index .hot-topics .topic-container .topic-item:last-child {
    margin-bottom: 0;
}

.index .hot-topics .topic-container .topic-item .pic {
    width: 134rem;
    height: 84rem;
    margin-right: 8rem;
}

.index .hot-topics .topic-container .topic-item .info .hot {
    margin-right: 20rem;
}

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

.index .popular-down .game-container .game-item {
    display: flex;
    margin-bottom: 10rem;
    padding-bottom: 10rem;
    border-bottom: 1rem 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: 18rem;
    height: 24rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 24rem;
    text-align: center;
    margin-right: 20rem;
    background: url(../images/tag04.png) no-repeat center center/contain;
}

.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 {
    line-height: 20rem;
}

.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 .game-icon {
    width: 48rem;
    height: 48rem;
    margin-right: 20rem;
    border-radius: 10rem;
}

.index .popular-down .game-container .game-item .info {
    margin-right: 15rem;
}

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

.index .popular-down .game-container .game-item .info .size {
    margin-right: 10rem;
}

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

/* 热门专题 */
.index .hot-subject {
    width: 100%;
}

.index .hot-subject .subject-container .subject-item {
    width: 100%;
    height: 84rem;
    margin-bottom: 20rem;
    position: relative;
}

.index .hot-subject .subject-container .subject-item:last-child {
    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: 138rem;
    height: 100%;
}

.index .hot-subject .subject-container .subject-item .info {
    padding: 14rem 20rem 10rem 10rem;
    position: relative;
    z-index: 99;
}

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

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

/* 精选攻略 */
.index .good-gba {
    width: 100%;
}

.index .good-gba .gba-show {
    width: 100%;
    height: 200rem;
    position: relative;
}

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

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

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

.index .good-gba .gba-list {
    margin-top: 20rem;
}

.index .good-gba .gba-list .item {
    margin-top: 20rem;
}

.index .good-gba .gba-list .item::before {
    display: block;
    content: '';
    width: 8rem;
    height: 6rem;
    margin-right: 8rem;
    background: url(../images/public-dot.png) no-repeat center center/contain;
}

.index .good-gba .gba-list .item .sketch {
    font-size: 14rem;
}

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

.index .new-games-video .video-container .video-item {
    width: 165rem;
    height: 100rem;
    position: relative;
    margin: 0 13rem 15rem 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 .play-btn {
    width: 36rem;
    height: 36rem;
    background: url(../images/play-btn.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: 30rem;
    color: #FFF;
    padding: 0 5rem;
    font-size: 14rem;
    font-weight: bold;
    line-height: 30rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    bottom: 0;
}

/* 游戏礼包 */
.index .index-game-gift .gift-container .gift-item {
    margin-bottom: 30rem;
}

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

.index .index-game-gift .gift-container .gift-item .icon {
    width: 60rem;
    height: 60rem;
    margin-right: 14rem;
    border-radius: 15rem;
}

.index .index-game-gift .gift-container .gift-item .info .name {
    margin-right: 15rem;
}

.index .index-game-gift .gift-container .gift-item .down-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 28rem;
    text-align: center;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* 首页排行榜 */
.index .rank-tab {
    width: 100%;
}

.index .rank-tab .select {
    width: 100%;
    height: 38rem;
    margin-bottom: 5rem;
    border-radius: 8rem;
    border: 1rem solid var(--pm-c);
}

.index .rank-tab .select .option {
    flex: 1;
    line-height: 36rem;
    text-align: center;
}

.index .rank-tab .select .option.active {
    color: #FFF;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

.index .rank-tab .rank-container {
    width: 100%;
}

/* 激活效果 */
.index .rank-tab .rank-container .rank-item {
    display: none;
}

.index .rank-tab .rank-container .rank-item.active {
    display: block;
}

.index .rank-tab .rank-container .rank-item .game-item {
    padding: 15rem 0;
    border-bottom: 1rem dashed #F2F2F2;
}

.index .rank-tab .rank-container .rank-item .game-item:last-child {
    padding: 0;
    border-bottom: none;
}

.index .rank-tab .rank-container .rank-item .game-item .rank-num {
    width: 18rem;
    height: 18rem;
    color: #AAA;
    font-size: 12rem;
    line-height: 18rem;
    text-align: center;
    border-radius: 50%;
    margin-right: 20rem;
    background: #EEEEEE;
}

.index .rank-tab .rank-container .rank-item .game-item:nth-child(1) .rank-num,
.index .rank-tab .rank-container .rank-item .game-item:nth-child(2) .rank-num,
.index .rank-tab .rank-container .rank-item .game-item:nth-child(3) .rank-num {
    width: 16rem;
    height: 28rem;
    border-radius: 0;
    user-select: none;
    color: transparent;
    background: no-repeat center center/contain;
}

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

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

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

.index .rank-tab .rank-container .rank-item .game-item .icon {
    width: 60rem;
    height: 60rem;
    margin-right: 14rem;
    border-radius: 15rem;
}

.index .rank-tab .rank-container .rank-item .game-item .downt-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    text-align: center;
    line-height: 28rem;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

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

.index .blogroll .link-list {
    margin: 0;
    padding: 0;
}

.index .blogroll .link-list .link-item {
    width: 100rem;
    margin-bottom: 14rem;
}

.index .blogroll .link-list .link-item a {
    color: #777;
    display: block;
    overflow: hidden;
    font-size: 12rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index .blogroll .link-list .link-item:nth-last-child(-n+3) {
    margin-bottom: 0;
}

/* ———————————————————————————软件下载——————————————————————————— */
.list-soft .soft-container {
    margin-top: 10rem;
}

.list-soft .soft-container .soft-item {
    padding: 20rem 0;
    border-bottom: 1rem dashed rgba(0, 0, 0, .1);
}

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

.list-soft .soft-container .soft-item .soft-icon {
    width: 60rem;
    height: 60rem;
    margin-right: 10rem;
    border-radius: 14rem;
    position: relative;
}

.list-soft .soft-container .soft-item:nth-child(1) .soft-icon:before,
.list-soft .soft-container .soft-item:nth-child(2) .soft-icon::before,
.list-soft .soft-container .soft-item:nth-child(3) .soft-icon::before {
    display: block;
    content: '';
    width: 24rem;
    height: 24rem;
    background: url(../images/hot-icon.png) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 0;
}

.list-soft .soft-container .soft-item .tag-before:nth-child(1)::after,
.list-soft .soft-container .soft-item .tag-before:nth-child(2)::after {
    display: block;
    content: '';
    width: 36rem;
    height: 17rem;
    flex-shrink: 0;
    margin-left: 10rem;
    background: no-repeat center/contain;
}

.list-soft .soft-container .soft-item:nth-child(1) .tag-before::after {
    background-image: url(../images/hot-tag.png);
}

.list-soft .soft-container .soft-item:nth-child(2) .tag-before::after {
    background-image: url(../images/new-tag.png);
}

.list-soft .soft-container .soft-item .info {
    margin-right: 20rem;
}

.list-soft .soft-container .soft-item .sketch {
    color: #AAA;
    font-size: 12rem;
}

.list-soft .soft-container .soft-item .down-btn {
    width: 60rem;
    height: 30rem;
    color: var(--pm-c);
    line-height: 28rem;
    text-align: center;
    border-radius: 4rem;
    border: 1rem solid var(--pm-c);
}

/* ———————————————————————————下载详情——————————————————————————— */
.show-soft .soft-head {
    width: 100%;
    margin-bottom: 20rem;
}

.show-soft .soft-head .soft-show {
    width: 100%;
    height: 119rem;
    margin-bottom: 20rem;
    padding: 10rem 16rem 16rem 23rem;
    background: url(../images/soft-show.png) no-repeat center/contain;
}

.show-soft .soft-head .soft-show h1 {
    margin: 0;
    font-weight: bold;
    line-height: 30rem;
}

.show-soft .soft-head .soft-show .soft-score {
    height: 30rem;
    color: var(--pm-c);
    font-weight: bold;
}

.show-soft .soft-head .soft-show .soft-score .num {
    font-size: 20rem;
}

.show-soft .soft-head .soft-show .soft-info {
    margin-top: 11rem;
}

.show-soft .soft-head .soft-show .soft-info .soft-icon {
    width: 60rem;
    height: 60rem;
    margin-right: 10rem;
    border-radius: 15rem;
}

.show-soft .soft-head .soft-show .soft-info .info {
    color: #777;
}

.show-soft .soft-head .soft-show .soft-info .info .type,
.show-soft .soft-head .soft-show .soft-info .info .lang,
.show-soft .soft-head .soft-show .soft-info .info .size,
.show-soft .soft-head .soft-show .soft-info .info .date {
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.show-soft .soft-head .down-btn {
    width: 100%;
    height: 40rem;
    color: #FFF;
    font-size: 16rem;
    line-height: 40rem;
    text-align: center;
    border-radius: 4rem;
    background: #12CDB0;
}

/* 游戏截图 */
.show-soft .article .screenshot .sliding {
    width: 100%;
    /*height: 200rem;*/
}

.show-soft .article .screenshot .sliding .uk-slider-items {
    /*height: 200rem;*/
}

.show-soft .article .screenshot .sliding .uk-slider-items li {
    width: 120rem;
    padding: 0;
    margin-right: 20rem;
}

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

/* 推荐游戏 */
.show-soft .rec-games .game-container .game-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 60rem;
    margin: 0 34rem 20rem 0;
}

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

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

.show-soft .rec-games .game-container .game-item .game-icon {
    width: 60rem;
    height: 60rem;
    margin-bottom: 8rem;
    border-radius: 15rem;
}

.show-soft .rec-games .game-container .game-item .game-name {
    max-width: 70rem;
}

.show-soft .rec-games .game-container .game-item .type {
    margin: 6rem 0;
}

.show-soft .rec-games .game-container .game-item .down-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    text-align: center;
    line-height: 28rem;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ———————————————————————————专辑列表——————————————————————————— */
.list-album .album-type {
    margin-bottom: 37rem;
}

.list-album .album-type .type-item {
    width: 78rem;
    height: 30rem;
    font-size: 12rem;
    line-height: 30rem;
    text-align: center;
    border-radius: 6rem;
    margin-right: 10rem;
    background: #F5F5F5;
}

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

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

.list-album .album-type .type-item.active a {
    color: #FFF;
}

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

.list-album .album-container .album-item {
    width: 100%;
    height: 169rem;
    border-radius: 10rem;
    margin-bottom: 30rem;
    background: #FFFFFF;
    padding: 12rem 0 12rem 14rem;
    box-shadow: 0rem 6rem 20rem 0rem rgba(0, 0, 0, 0.04);
}

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

.list-album .album-container .album-item .album-title .title {
    max-width: 176px;
    font-size: 16rem;
    font-weight: bold;
}

.list-album .album-container .album-item .soft-container {
    margin-top: 8rem;
    height: 116rem;
}

.list-album .album-container .album-item .soft-container .soft-item {
    display: flex;
    width: 86rem;
    height: 116rem;
    border-radius: 16rem;
    background: #F9F9F9;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.list-album .album-container .album-item .soft-container .soft-item .soft-icon {
    width: 60rem;
    height: 60rem;
    margin-bottom: 6rem;
    border-radius: 16rem;
}

.list-album .album-container .album-item .soft-container .soft-item .soft-name {
    width: 100%;
    padding: 0 8rem;
}

.list-album .album-container .album-item .soft-container .more-games {
    display: block;
    width: 33rem;
    height: 100%;
    color: #AAA;
    font-size: 12rem;
    text-align: center;
    padding: 32rem 10rem;
    background: #F9F9F9;
    border-radius: 16rem 0rem 10rem 16rem;
}

/* ———————————————————————————专辑详情——————————————————————————— */
.show-album .album-head .icon {
    width: 60rem;
    height: 60rem;
    margin-right: 14rem;
    border-radius: 15rem;
}

.show-album .album-head .info {
    padding: 4rem 0;
}

.show-album .album-head .info h1 {
    font-size: 16rem;
}

.show-album .album-head .info .type,
.show-album .album-head .info .count {
    margin-right: 16rem;
}

.show-album .album-head .related-rec {
    margin-top: 14rem;
}

.show-album .album-head .related-rec span {
    color: #AAA;
    font-size: 14rem;
}

.show-album .album-head .related-rec .game-item {
    color: var(--pm-c);
    font-size: 12rem;
    padding: 4rem 10rem;
    background: rgba(18, 205, 176, 0.06);
}

.show-album .rec-soft {
    width: 100%;
    margin-top: 24rem;
    border-radius: 8rem;
    position: relative;
    padding: 20rem 14rem;
    background: rgba(18, 205, 176, 0.06);
}


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

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


.show-album .rec-soft .icon {
    width: 70rem;
    height: 70rem;
    margin-right: 18rem;
    border-radius: 16rem;
}

.show-album .rec-soft .info {
    padding: 5rem 0;
}

.show-album .rec-soft .info .name {
    max-width: 143rem;
    font-size: 16rem;
    font-weight: bold;
}

.show-album .rec-soft .info .type,
.show-album .rec-soft .info .score {
    font-size: 14rem;
}

.show-album .score {
    display: flex;
    align-items: center;
}

.show-album .score::after {
    display: block;
    content: '';
    width: 12rem;
    height: 12rem;
    margin-left: 4rem;
    border-radius: .5rem;
    background: url(../images/rank-star-active.png) no-repeat center/contain;
}

.show-album .rec-soft .sketch {
    margin: 17rem 0 20rem 0;
}

.show-album .rec-soft .down-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 33rem;
    color: #FFF;
    line-height: 33rem;
    border-radius: 6rem;
    background: var(--pm-c);
}

.show-album .rec-soft .down-btn::before {
    display: inline-block;
    content: '';
    width: 16rem;
    height: 16rem;
    margin-right: 10rem;
    background: url(../images/album-btn.png) no-repeat center/contain;
}


.show-album .soft-container .soft-item {
    padding: 20rem 0;
    border-bottom: 1rem dashed rgba(0, 0, 0, .1);
}

.show-album .soft-container .soft-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.show-album .soft-container .soft-item .icon-container {
    width: 62rem;
    height: 62rem;
    margin-right: 10rem;
    position: relative;
}

.show-album .soft-container .soft-item .icon {
    width: 60rem;
    height: 60rem;
    border-radius: 14rem;
}

.show-album .soft-container .soft-item .game-tag {
    width: 15rem;
    height: 21rem;
    background: url(../images/album-game04.png) no-repeat center/contain;
    position: absolute;
    left: 10rem;
    top: -1rem;
}

.show-album .soft-container .soft-item .game-tag .text {
    color: #FFF;
    font-size: 10rem;
    text-align: center;
    padding-top: 2rem;
}

.show-album .soft-container .soft-item:nth-child(1) .game-tag,
.show-album .soft-container .soft-item:nth-child(2) .game-tag,
.show-album .soft-container .soft-item:nth-child(3) .game-tag {
    width: 42rem;
    height: 42rem;
    background: no-repeat center center/contain;
    position: absolute;
    left: -2rem;
    top: -2rem;
}

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

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

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

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

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

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

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

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

.show-album .soft-container .soft-item .sketch {
    font-size: 12rem;
}

.show-album .soft-container .soft-item .down-btn {
    width: 60rem;
    height: 30rem;
    color: var(--pm-c);
    line-height: 28rem;
    text-align: center;
    border-radius: 4rem;
    margin-left: 15rem;
    border: 1rem solid var(--pm-c);
}

/* 更多专辑 */
.show-album .more-album .album-container .album-item {
    width: 48%;
    height: 24rem;
    padding: 0 10rem;
    font-size: 12rem;
    line-height: 24rem;
    text-align: center;
    border-radius: 4rem;
    background: #F9F9F9;
    margin: 0 13rem 12rem 0;
}

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

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

/* ———————————————————————————资讯列表——————————————————————————— */
.list-news .game-news {
    margin-top: 30rem;
}

/* ———————————————————————————资讯详情——————————————————————————— */
.show-news .article h1 {
    color: #1A1A1A;
    font-size: 18rem;
    font-weight: bold;
    text-align: center;
    line-height: 29rem;
    margin-bottom: 18rem;
}

.show-news .article .from {
    margin-right: 29rem;
}

.show-news .article .article-content {
    margin-top: 20rem;
    padding-top: 20rem;
    border-top: 1rem solid #EBEBED;
}

/* 新游预告 */
.show-news .public-game-gba .gba-show {
    margin-top: 20rem;
}

.show-news .public-game-gba .gba-show:first-child {
    margin-top: 0;
}

/* 新游上线时间 */
.show-news .game-date-time .game-container .game-item {
    width: 60rem;
    display: flex;
    margin-right: 34rem;
    align-items: center;
    flex-direction: column;
}

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

.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: 24rem;
    flex-direction: column;
}

.show-news .game-date-time .game-container .game-item .date-show .tran-line {
    display: flex;
    margin-top: 8rem;
    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: 38rem;
    height: 1rem;
    background: #D9D9D9;
}


.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:nth-child(2) .date-show .tran-line::before,
.show-news .game-date-time .game-container .game-item:nth-child(3) .date-show .tran-line::after {
    background: var(--pm-c);
}

.show-news .game-date-time .game-container .game-item .date-show .tran-line .dot {
    width: 10rem;
    height: 10rem;
    margin: 0 4rem;
    border-radius: 50%;
    border: 2rem solid #D9D9D9;
}

.show-news .game-date-time .game-container .game-item:nth-child(2) .date-show .tran-line .dot,
.show-news .game-date-time .game-container .game-item:nth-child(3) .date-show .tran-line .dot {
    border: 2rem solid var(--pm-c);
}

.show-news .game-date-time .game-container .game-item .icon {
    width: 60rem;
    height: 60rem;
    margin-bottom: 8rem;
    border-radius: 10rem;
}

.show-news .game-date-time .game-container .game-item .type {
    margin: 6rem 0;
}

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

/* ———————————————————————————礼包列表——————————————————————————— */
.gift .gift-container .game-item {
    padding: 20rem 0;
    border-bottom: 1rem dashed #ccc
}

.gift .gift-container .game-item:first-child {
    padding-top: 0;
}

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

.gift .gift-container .game-item .icon {
    width: 62rem;
    height: 62rem;
    margin-right: 10rem;
    border-radius: 15rem;
}

.gift .gift-container .game-item .info .sketch {
    color: #AAA;
    font-size: 12rem;
}

.gift .gift-container .game-item .down-btn {
    width: 56rem;
    height: 28rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 28rem;
    text-align: center;
    border-radius: 6rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
}

/* ———————————————————————————礼包详情——————————————————————————— */
.show-gift .gift-head .gift-show {
    margin-bottom: 18rem;
}

.show-gift .gift-head .gift-show .icon {
    width: 83rem;
    height: 83rem;
    margin-right: 14rem;
    border-radius: 18rem
}

.show-gift .gift-head .gift-show .info {
    padding: 3rem 0;
}

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

.show-gift .gift-head .gift-show .info .date,
.show-gift .gift-head .gift-show .info .premise {
    color: #AAA;
    font-size: 12rem;
}


.show-gift .gift-head .btn-container {
    margin-top: 20rem;
}

.show-gift .gift-head .btn-container .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #FFF;
    height: 32rem;
    margin-bottom: 15rem;
    position: relative;
    cursor: pointer;
}

.show-gift .gift-head .btn-container .btn:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

/* 礼包弹窗 */
.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: 323.71rem;
    height: 322rem;
    margin: 0 auto;
    padding-top: 143rem;
    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: 18rem;
    font-weight: bold;
}

.mask-layer .pop-up .gift-show-code {
    color: #777;
    font-size: 12rem;
    margin: 30rem 0 40rem 0;
}

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

.show-gift .article .other-gift .gift-container .gift-item {
    margin-bottom: 20rem;
}

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

.show-gift .article .other-gift .gift-container .gift-item .gift-icon {
    width: 100%;
    display: flex;
    align-items: center;
}

.show-gift .article .other-gift .gift-container .gift-item .title {
    max-width: 250rem;
    margin-bottom: 10rem;
}

.show-gift .article .other-gift .gift-container .gift-item .title::before {
    display: inline-block;
    content: '';
    width: 16rem;
    height: 16rem;
    margin-right: 6rem;
    background: url(../images/gift-icon.png) no-repeat center/contain;
}

.show-gift .article .other-gift .gift-container .gift-item .sketch {
    color: #AAA;
}

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

/* 推荐礼包 */
.show-gift .rec-gift .gift-container .gift-item {
    padding-bottom: 20rem;
    margin-bottom: 20rem;
    border-bottom: 1rem dashed #cccc;
}

.show-gift .rec-gift .gift-container .gift-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.show-gift .rec-gift .gift-container .gift-item .icon {
    width: 62rem;
    height: 62rem;
    margin-right: 10rem;
    border-radius: 10rem;
}

.show-gift .rec-gift .gift-container .gift-item .info {
    margin-right: 15rem;
}

.show-gift .rec-gift .gift-container .gift-item .info .sketch {
    color: #AAA;
    font-size: 12rem;
}

.show-gift .rec-gift .gift-container .gift-item .get-btn {
    display: block;
    width: 56rem;
    height: 28rem;
    color: var(--pm-c);
    font-size: 12rem;
    line-height: 26rem;
    text-align: center;
    border-radius: 6rem;
    border: 1rem solid var(--pm-c);
}

/* ———————————————————————————排行——————————————————————————— */
.rank .centre {
    position: relative;
    margin-top: -35rem;
    z-index: 99;
}

.rank .rank-banner {
    width: 100%;
    height: 237rem;
    position: relative;
    background: url(../images/rank-banner.png) no-repeat center/cover;
}

.rank .rank-banner .web-name {
    color: #FFF;
    font-size: 25rem;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: 22rem;
    top: 20rem;
}

.rank .rank-banner .game-rank {
    color: #FFF;
    font-size: 35rem;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: 34rem;
    top: 73rem;
}

.list-rank .centre {
    padding-top: 10rem;
}

.list-rank .rank-type {
    margin-bottom: 20rem;
}

.list-rank .rank-type .rank-item {
    /* width: 104rem; */
    padding: 0 10rem;
    height: 34rem;
    color: #777;
    flex-shrink: 0;
    font-size: 12rem;
    line-height: 32rem;
    text-align: center;
    margin-right: 10rem;
    border-radius: 6rem;
    border: 1rem solid #6BEB9E;
}

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

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

.list-rank .rank-type .rank-item a {
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
}

.list-rank .rank-type .rank-item.active a {
    color: #FFF;
}

.rank .game-container .game-item {
    width: 100%;
    margin-bottom: 20rem;
    padding-bottom: 20rem;
    border-bottom: 1rem dashed #F2F2F2;
}

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

.rank .game-container .game-item .rank-num {
    width: 25rem;
    height: 25rem;
    color: #777;
    flex-shrink: 0;
    font-size: 12rem;
    line-height: 25rem;
    text-align: center;
    margin-right: 10rem;
    background: url(../images/list-rank04.png) no-repeat center center/contain;
}

.rank .game-container .game-item:nth-child(1) .rank-num,
.rank .game-container .game-item:nth-child(2) .rank-num,
.rank .game-container .game-item:nth-child(3) .rank-num {
    color: transparent;
    user-select: none;
}

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

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

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


.rank .game-container .game-item .game-icon {
    width: 60rem;
    height: 60rem;
    margin-right: 12rem;
}

.rank .game-container .game-item .game-icon img {

    border-radius: 10rem;
}

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

/* ————————————————————排行榜列表—————————————————————————— */
.rank .centre {
    padding-top: 20rem;
}

.rank .rank-container {
    margin-top: -10rem;
    position: relative;
    z-index: 99;
}

.rank .rank-container .rank-item {
    width: 100%;
    padding: 16rem 14rem;
    border-radius: 10rem;
    margin-bottom: 20rem;
    background: #F9F9F9;
}

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

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

.rank .rank-title .title {
    display: flex;
    margin-right: 10rem;
    align-items: center;
}

.rank .rank-title .title a {
    flex: 1;
    color: #333;
    font-size: 16rem;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank .rank-title .title::before {
    display: block;
    content: '';
    width: 15rem;
    height: 15rem;
    flex-shrink: 0;
    margin-right: 6rem;
    background: url(../images/rank-title.png) no-repeat center/contain;
}

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

.rank .rank-container .rank-item .game-list .game-item {
    width: 70rem;
    margin-right: 12rem;
}

.rank .rank-container .rank-item .game-list .game-item .game-icon {
    width: 70rem;
    height: 70rem;
    margin-bottom: 6rem;
    border-radius: 16rem;
    position: relative;
}

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

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

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

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

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

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

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

/* ————————————————————排行榜详情—————————————————————————— */
.show-rank .rank-container .rank-title {
    width: 100%;
    height: 47rem;
    padding: 0 10rem;
    margin-bottom: 10rem;
    background: linear-gradient(180deg, #FFF4CD 0%, #FFFFFF 100%);
}

.show-rank .public-game-gba .public-list {
    margin-bottom: 20rem;
}

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

/* 更多排行 */
.more-rank .rank-container .rank-item .rank-title {
    padding: 0;
    height: auto;
    background: transparent;
}

/* ————————————————————开服表—————————————————————————— */
.list-server .server-select select {
    width: 110rem;
    height: 32rem;
    color: #777;
    padding: 0 10rem;
    appearance: none;
    border-radius: 4rem;
    margin-bottom: 37rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1rem solid #EEEEEE;
    background: url(../images/server-select.png) no-repeat right center/10rem 10rem;
    background-position: 90rem 10rem;
}

.list-server .server-select select {
    color: var(--pm-c);
    border: 1rem solid var(--pm-c);
    background-image: url(../images/server-select-a.png);
}

.list-server .server-select select option:first-child {
    display: none;
}

.list-server .game-container .game-item {
    margin-bottom: 20rem;
    padding-bottom: 20rem;
    border-bottom: 1rem dashed #ccc;
}

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

.list-server .game-container .game-item .game-icon {
    width: 60rem;
    height: 60rem;
    margin-right: 12rem;
    border-radius: 10rem;
}

.list-server .game-container .game-item .info {
    margin-right: 15rem;
}

.list-server .game-container .game-item .game-name {
    font-weight: bold;
    margin-right: 8rem;
}

.list-server .game-container .game-item .tag {
    width: 32rem;
    height: 17rem;
    color: #AAA;
    flex-shrink: 0;
    font-size: 12rem;
    line-height: 17rem;
    text-align: center;
    border-radius: 2rem;
    border: 1rem solid #AAAAAA;
}

.list-server .game-container .game-item .server {
    color: #777;
    font-size: 12rem;
}

.list-server .game-container .game-item .date {
    color: var(--pm-c);
    font-size: 13rem;
}

.list-server .game-container .game-item .details {
    width: 60rem;
    height: 30rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 30rem;
    text-align: center;
    border-radius: 4rem;
    background: var(--pm-c);
}

/* ————————————————————其他单页面—————————————————————————— */
.single-page .section {
    margin-bottom: 30rem;
}

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

.single-page .select {
    width: 100%;
    height: 41rem;
    padding: 0 16rem;
    margin-bottom: 10rem;
    box-shadow: 0rem 0rem 10rem rgba(0, 0, 0, 0.1);
}

.single-page .select .option {
    display: block;
    width: 60rem;
    flex-shrink: 0;
    text-align: center;
    white-space: nowrap;
    margin-right: 34rem;
    padding: 11rem 0 12rem 0;
}

.single-page .select .option:last-child {
    margin-right: 0;
}

.single-page .select .option.active::after {
    display: block;
    content: '';
    width: 60rem;
    height: 3rem;
    margin-top: 4rem;
    background: var(--pm-c);
}

.single-page .article-title {
    color: #333;
    font-size: 18rem;
    margin-bottom: 17rem;
}

/* ———————关于我们——————— */
.single-page .about-us {
    position: relative;
}

.single-page .about-us::before {
    display: block;
    content: 'About us';
    color: rgba(51, 51, 51, 0.1);
    font-size: 20rem;
    position: absolute;
    left: 45rem;
    top: -10rem;
}

/* ———————网站地图——————— */
.single-page .web-map {
    position: relative;
}

.single-page .web-map::before {
    display: block;
    content: 'Site map';
    color: rgba(51, 51, 51, 0.1);
    font-size: 20rem;
    position: absolute;
    left: 45rem;
    top: -10rem;
}

.single-page .web-map .section-title {
    color: #333;
    font-size: 18rem;
    font-weight: bold;
    margin-bottom: 16rem;
}

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

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

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

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

/* ———————搜索——————— */
.single-page .search .search-container {
    width: 100%;
    height: 41rem;
    padding: 6rem 16rem;
    position: relative;
    box-shadow: 0rem 0rem 10rem rgba(0, 0, 0, 0.1);
}

.single-page .search .search-container::before {
    display: block;
    content: '';
    width: 16rem;
    height: 16rem;
    background: url(../images/search.png)no-repeat center/contain;
    transform: translateY(-50%);
    position: absolute;
    left: 28rem;
    top: 50%;
}

.single-page .search .search-container input {
    width: 100%;
    height: 29rem;
    border-radius: 15rem;
    background: #F5F5F5;
    padding: 0 60rem 0 38rem;
}

.single-page .search .search-container button {
    width: 50rem;
    height: 24rem;
    color: #FFF;
    font-size: 12rem;
    line-height: 24rem;
    text-align: center;
    border-radius: 16rem;
    background: linear-gradient(180deg, #12CDB0 0%, #6BEB9E 100%);
    transform: translateY(-50%);
    position: absolute;
    right: 18rem;
    top: 50%;
}

.single-page .search .search-history .public-title .delete {
    width: 16rem;
    height: 16rem;
    background: url(../images/delete.png) no-repeat center/contain;
}

.single-page .search .search-history .history-container .history-item {
    height: 24px;
    padding: 0 12rem;
    line-height: 24px;
    background: #F5F5F5;
    border-radius: 15rem;
    margin: 0 15rem 10rem 0;
}

.single-page .search .you-want-search .hot-search {
    width: 100%;
    height: 436rem;
    padding: 10rem 14rem 14rem;
    background: url(../images/hot-search-bg.png) no-repeat center/contain;
}

.single-page .search .you-want-search .hot-search .section-title {
    width: 56rem;
    height: 26rem;
    margin-bottom: 10rem;
    background: url(../images/hot-search-title.png) no-repeat center/contain;
}

.single-page .search .you-want-search .hot-search .game-container {
    width: 100%;
    height: 376px;
    background: #FFF;
    padding: 10rem 12rem;
    border-radius: 14rem;
}

.single-page .search .you-want-search .hot-search .game-container .game-item {
    margin-bottom: 14rem;
}

.single-page .search .you-want-search .hot-search .game-container .game-item:last-child {
    margin-bottom: 0;
}

.single-page .search .you-want-search .hot-search .game-container .game-item .num {
    width: 8rem;
    height: 21rem;
    margin-right: 12rem;
    background: no-repeat center center/contain;
}

.single-page .search .you-want-search .hot-search .game-container .game-item:nth-child(1) .num {
    background-image: url(../images/hot-search01.png);
}

.single-page .search .you-want-search .hot-search .game-container .game-item:nth-child(2) .num {
    background-image: url(../images/hot-search02.png);
}

.single-page .search .you-want-search .hot-search .game-container .game-item:nth-child(3) .num {
    background-image: url(../images/hot-search03.png);
}

.single-page .search .you-want-search .hot-search .game-container .game-item:nth-child(4) .num {
    background-image: url(../images/hot-search04.png);
}

.single-page .search .you-want-search .hot-search .game-container .game-item:nth-child(5) .num {
    background-image: url(../images/hot-search05.png);
}

.single-page .search .you-want-search .hot-search .game-container .game-item .game-icon {
    width: 60rem;
    height: 60rem;
    margin-right: 14rem;
    border-radius: 10rem;
}

.single-page .search .you-want-search .hot-search .game-container .game-item .sketch {
    color: #aaa;
    font-size: 12rem;
}

/* ———————搜索结果——————— */
.single-page .page-search .search-item .search-hint {
    font-size: 16rem;
}

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

.single-page .page-search .search-item .soft-container {
    margin-top: 0;
}

.single-page .page-search .search-item .game-news {
    margin-top: 20rem;
}

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

.page404 .pic,
.page500 .pic {
    width: 178.28rem;
    height: 232.14rem;
    margin-top: 100rem;
}

.page404 p,
.page500 p {
    color: #333;
    font-size: 16rem;
    margin: 34rem 0;
}

.page404 .back-index,
.page500 .back-index {
    width: 92rem;
    height: 31rem;
    font-size: 14rem;
    line-height: 29rem;
    text-align: center;
    color: var(--pm-c);
    border-radius: 6rem;
    border: 1rem solid var(--pm-c);
}

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