/* 公共样式 */

:root {
    --pm-c: #24AA99!important;
    --dm-c: #fdeaea!important;
    --bg-c: #f5f5f5!important;
    --br-c: #eee!important;
}

.bg-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, transparent 100%);
}

.bg-f7 {
    background-color: #f7f7f7;
}

.bg-f8 {
    background-color: #f8f8f8;
}

.bg-f {
    background-color: #ffffff;
}


/* 禁用iPhone中Safari的字号自动调整 */

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}


/*修改UIKIT框架自带样式*/

body,
html {
    background-color: var(--bg-c);
    max-width: 750px;
    margin: 0 auto;
    font-family: Microsoft YaHei;
}

a,
a:hover {
    text-decoration: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


/*图片高清*/

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    object-fit: cover;
}

.my-uk-flex-between {
    justify-content: space-between;
}

.my-uk-flex-1 {
    flex: 1;
}


/*边框样式*/

.b-a {
    border: 1px solid var(--br-c) !important;
}

.b-b {
    border-bottom: 1px solid var(--br-c) !important;
}

.b-t {
    border-top: 1px solid var(--br-c) !important;
}

.b-l {
    border-left: 1px solid var(--br-c) !important;
}

.b-r {
    border-right: 1px solid var(--br-c) !important;
}

.b-t-dashed {
    border-top: 1px dashed var(--br-c) !important;
}

.b-b-dashed {
    border-bottom: 1px dashed var(--br-c) !important;
}


/* 外边距 */

.m-a-5 {
    margin: 0.05rem;
}

.m-a-10 {
    margin: 0.1rem;
}

.m-a-20 {
    margin: 0.2rem;
}

.m-a-30 {
    margin: 0.3rem;
}


/* 内边距  */

.p-a-5 {
    padding: 0.05rem;
}

.p-a-10 {
    padding: 0.1rem;
}

.p-a-20 {
    padding: 0.2rem;
}

.p-a-30 {
    padding: 0.3rem;
}


/* 内上边距 */

.p-t-0 {
    padding-top: 0 !important;
}

.p-t-5 {
    padding-top: 0.05rem;
}

.p-t-10 {
    padding-top: 0.1rem;
}

.p-t-15 {
    padding-top: 0.15rem;
}

.p-t-20 {
    padding-top: 0.2rem;
}

.p-t-30 {
    padding-top: 0.3rem;
}


/* 内下边距 */

.p-b-0 {
    padding-bottom: 0rem;
}

.p-b-5 {
    padding-bottom: 0.05rem;
}

.p-b-10 {
    padding-bottom: 0.1rem;
}

.p-b-15 {
    padding-bottom: 0.15rem;
}

.p-b-20 {
    padding-bottom: 0.2rem;
}

.p-b-30 {
    padding-bottom: 0.3rem;
}


/* 内左边距 */

.p-l-0 {
    padding-left: 0 !important;
}

.p-l-5 {
    padding-left: 0.05rem;
}

.p-l-10 {
    padding-left: 0.1rem;
}

.p-l-15 {
    padding-left: 0.15rem;
}

.p-l-20 {
    padding-left: 0.2rem;
}

.p-l-30 {
    padding-left: 0.3rem;
}


/* 内右边距 */

.p-r-0 {
    padding-right: 0 !important;
}

.p-r-5 {
    padding-right: 0.05rem;
}

.p-r-10 {
    padding-right: 0.1rem;
}

.p-r-15 {
    padding-right: 0.15rem;
}

.p-r-20 {
    padding-right: 0.2rem;
}

.p-r-30 {
    padding-right: 0.3rem;
}

.m-t-b-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}


/* 内上边距 */

.m-t-0 {
    margin-top: 0rem;
}

.m-t-5 {
    margin-top: 0.05rem;
}

.m-t-10 {
    margin-top: 0.1rem;
}

.m-t-15 {
    margin-top: 0.15rem;
}

.m-t-20 {
    margin-top: 0.2rem;
}

.m-t-30 {
    margin-top: 0.3rem;
}


/* 外下边距 */

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-5 {
    margin-bottom: 0.05rem !important;
}

.m-b-10 {
    margin-bottom: 0.1rem !important;
}

.m-b-15 {
    margin-bottom: 0.15rem !important;
}

.m-b-20 {
    margin-bottom: 0.2rem !important;
}

.m-b-30 {
    margin-bottom: 0.3rem !important;
}


/* 外左边距 */

.m-l-0 {
    margin-left: 0 !important;
}

.m-l-5 {
    margin-left: 0.05rem !important;
}

.m-l-10 {
    margin-left: 0.1rem !important;
}

.m-l-15 {
    margin-left: 0.15rem !important;
}

.m-l-20 {
    margin-left: 0.2rem !important;
}

.m-l-30 {
    margin-left: 0.3rem !important;
}


/* 外右边距 */

.m-r-0 {
    margin-right: 0 !important;
}

.m-r-5 {
    margin-right: 0.05rem !important;
}

.m-r-10 {
    margin-right: 0.1rem !important;
}

.m-r-15 {
    margin-right: 0.15rem !important;
}

.m-r-20 {
    margin-right: 0.2rem !important;
}

.m-r-30 {
    margin-right: 0.3rem !important;
}


/*圆角样式*/

.b-r-4 {
    border-radius: 0.04rem !important;
}

.b-r-5 {
    border-radius: 0.05rem !important;
}

.b-r-8 {
    border-radius: 0.08rem !important;
}

.b-r-10 {
    border-radius: 0.1rem !important;
}

.b-r-12 {
    border-radius: 0.12rem !important;
}

.b-r-24 {
    border-radius: 0.24rem !important;
}


/* 溢出2行省略号 */

.line-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}


/* 溢出3行省略号 */

.line-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}


/* 溢出4行省略号 */

.line-4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
}


/*伪类居中*/


/* 增加伪类 前置 */

.before-middle {
    position: relative;
}

.before-middle::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}


/* 增加伪类 后置 */

.after-middle {
    position: relative;
}

.after-middle::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.after-center {
    position: relative;
}

.after-center::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}


/*默认图标尺寸*/

.item .icon {
    margin: 0 auto;
    border-radius: 0.12rem;
    overflow: hidden;
}

.item .icon img {
    width: 100%;
    height: 100%;
}

.item .data span {
    font-size: 0.14rem;
}

.item .hr {
    display: inline-block;
    height: 0.12rem;
    width: 0.01rem;
    background: #bbb;
    margin: 0 0.05rem;
}


/* 默认缩略图尺寸 */

.thumb img {
    width: 100%;
    height: 100%;
}


/*面包屑导航*/

.crumbs {
    font-size: 0.24rem;
    padding: 0 0.3rem;
    color: #a5a5a5;
}

.crumbs a {
    color: #909399;
    display: inline-block;
    position: relative;
    font-size: 0.24rem;
}

.crumbs a::after {
    content: ">";
}


/* 平台 安卓 苹果 图标显示 */

.platform i {
    display: inline-block;
    width: 0.15rem;
    height: 0.15rem;
    background-repeat: no-repeat;
}

.platform .az {
    background-image: url(../img/icon-az.png);
}

.platform .ios {
    background-image: url(../img/icon-ios.png);
}


/* 公共标题 */

.module-title {
    border-bottom: 1px solid var(--br-c);
    padding-bottom: 0.2rem;
}

.module-title .title {
    padding-left: 0.2rem;
    font-size: 0.3rem;
    font-weight: bold;
    color: #333333;
}

.module-title .more {
    display: block;
    color: #999;
    font-size: 0.24rem;
}

.module-title .title::before {
    width: 0.04rem;
    height: 0.28rem;
    left: 0;
    background: var(--pm-c);
    border-radius: 0.02rem;
}

.pd3 {
    padding: 0.3rem;
}

.x-scoll {
    padding-left: 0.3rem;
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
}

.module {
    padding: 0.2rem 0.3rem;
    background-color: #fff;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}


/* 友情链接 */

.home-links a {
    font-size: 0.12rem;
    color: #8d8c8c;
    border-right: 1px solid #999999;
}

.home-links li {
    display: inline-block;
    margin-bottom: 0.1rem;
}


/* 页脚 */

.footer {
    font-size: 0.24rem;
    color: #999;
    line-height: 0.5rem;
    padding-bottom: 0.38rem;
    padding-top: 0.38rem;
    background: #333333;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}

.footer ul li {
    display: inline-block;
}

.footer ul li a {
    color: #999;
    margin-right: 0.15rem;
    font-size: 0.24rem;
    color: #999999;
    border-right: 1px solid #999;
    padding-right: 0.2rem;
}

.footer ul li:last-child a {
    border: none;
}

.footer p {
    font-size: 0.24rem;
    margin: 0px !important;
    color: #999999;
}

.star {
    height: 0.18rem;
    width: 0.9rem;
    background: url(../images/icon-star-bg.png) repeat-x center/0.18rem;
    display: inline-block;
}

.star:before {
    content: "";
    display: block;
    background: url(../images/icon-star.png) repeat-x 0/0.18rem;
    height: 0.18rem;
}

.star-1:before {
    width: 0.18rem;
}

.star-2:before {
    width: 0.36rem;
}

.star-3:before {
    width: 0.54rem;
}

.star-4:before {
    width: 0.72rem;
}

.star-5:before {
    width: 0.9rem;
}


/* 分页 */

.pagination {
    margin: 0.6rem 0 0.4rem 0;
    text-align: center;
}

.pagination .page-item {
    display: inline-block;
    margin: 0.05rem;
    font-size: 0.13rem;
    border: 1px solid var(--br-c);
    color: #555;
}

.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: 0.06rem 0.12rem;
    border: 1px solid transparent;
}

.pagination li span {}

.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;
}


/* 上一页 下一页 */

.page {
    overflow: hidden;
}

.page a {
    width: 100%;
    display: block;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: left;
    font-size: 0.26rem;
    color: #666;
}

header {
    background-color: var(--pm-c);
    padding-bottom: 0rem !important;
}

.head .logo a {
    display: inline-block;
    height: 0.2rem;
}

.logo {
    flex: 1;
}

.logo img {
    width: 2.4rem;
}

.head .menu-img {
    margin-left: 0.24rem;
    width: 0.35rem;
    height: 0.28rem;
    padding-left: 0.1rem;
}

.search {
    position: relative;
    width: 4rem;
    height: 0.6rem;
}

.search input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.1rem;
    font-size: 0.25rem;
    text-indent: 2.3em;
    background: rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .6);
    box-sizing: border-box;
}


/* 针对 谷歌 内核 */

input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .6);
}


/* 火狐 */

input:-moz-placeholder {
    color: rgba(255, 255, 255, .6);
}

.search button {
    background-color: transparent;
    border: 0;
    width: 0.31rem;
    height: 0.29rem;
    background-image: url("../images/icon-search.png");
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 0.1rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0.05rem;
}

.nav {
    margin-left: -0.3rem;
    /* margin-top: 0.14rem; */
}

.nav li {
    margin-right: 0.3rem;
    white-space: nowrap;
    position: relative;
    line-height: 0.9rem;
    padding: 0 0.26rem;
}

.nav li a {
    font-size: 0.28rem;
    color: #ffffff;
    line-height: 0.4rem;
    padding-bottom: 0.12rem;
}

.nav li.active a {
    border-bottom: 4px solid #fff;
}

.home-slide {}

.home-slide .swiper-pagination {
    right: 0.3rem;
    width: auto;
    left: auto;
    display: inline-block;
    bottom: 0.23rem !important;
    text-align: right;
    padding-right: 0.2rem;
    box-sizing: border-box;
}

.home-slide .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.9;
    width: 0.15rem;
    height: 0.04rem;
    margin: 0 0.06rem !important;
    border-radius: 0;
}

.home-slide .swiper-pagination-bullet-active {
    background-color: var(--pm-c);
}

.home-slide img {
    height: 4.15rem;
    width: 100%;
}

.home-slide .title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    padding: 0.15rem 0.3rem;
    overflow: hidden;
    height: auto;
}

.home-slide .title span {
    display: inline-block;
    width: 5.9rem;
    font-size: .24rem;
    color: #fff;
    line-height: 1;
}


/* 游戏测评 */

.home-cp {}

.home-cp-list .item:last-child {
    border-bottom: none !important;
    padding-bottom: 0;
}

.home-cp-list ul {
    overflow: hidden;
    margin-left: -3%;
}

.home-cp-list .item {
    float: left;
    width: 47%;
    margin-left: 3%;
}

.home-cp-list .thumb {
    width: 3.35rem;
    height: 1.9rem;
}

.home-cp-list .title {
    font-size: 0.24rem;
    color: #1A1A1A;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.home-cp-list .time {
    font-size: 0.24rem;
    color: #999999;
}

.home-cp-list .lookmore {
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
}

.home-cp-list .lookmore a {
    font-size: 0.26rem;
    color: #999;
    width: 100%;
}


/* 游戏资讯 */

.home-game-gl {}

.home-game-zx .list {}

.home-game-zx .home-zx-list .list {}

.home-game-zx .home-zx-list .list:last-child {
    border: none !important;
}

.home-game-zx .home-zx-list .list .title {
    font-size: 0.26rem;
    color: #333333;
    line-height: 1;
}

.home-game-zx .home-zx-list .list .desc {
    font-size: 0.24rem;
    color: #666;
    margin: 0.2rem 0;
}

.home-game-zx .home-zx-list .list .info {
    margin: 0.2rem 0 0;
}

.home-game-zx .home-zx-list .list .time {
    font-size: 0.24rem;
    color: #999999;
}

.home-game-zx .home-zx-list .list .look {
    font-size: 0.24rem;
    color: var(--pm-c);
}

.home-game-zx .home-zx-list .list .hot {
    display: inline-block;
    color: var(--pm-c);
    font-size: 0.22rem;
    line-height: 0.28rem;
    width: 0.7rem;
    height: 0.28rem;
    border-radius: 0.05rem;
    background: rgba(36, 170, 153, 0.1);
    text-align: center;
    margin-right: 0.2rem;
}


/* 游戏视频 */

.game-video-list {}

.game-video-list .thumb {
    width: 3.35rem;
    height: 2rem;
    position: relative;
}

.game-video-list>div:nth-last-child(2),
.game-video-list>div:last-child {
    margin-bottom: 0 !important;
}

.game-video-list .thumb img {
    height: 100%;
    width: 100%;
}

.game-video-list .thumb .cover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .5);
    padding: 0.12rem 0.12rem 0rem;
    font-size: 0.26rem;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
}

.game-video-list .thumb .cover span {
    display: inline-block;
    width: 100%;
}


/* 最新攻略 */

.home-hot-gl {}

.home-hot-gl-list ul li {}

.home-hot-gl-list ul li:last-child {
    border: none !important;
    padding-bottom: 0;
}

.home-hot-gl-list ul li .title {
    font-size: 0.26rem;
    color: #1A1A1A;
    display: inline-block;
    line-height: 1;
}

.home-hot-gl-list ul li .time {
    font-size: 0.24rem;
    color: #999;
}

.home-hot-gl-list ul li .look {
    font-size: 0.24rem;
    color: #999;
}

.home-hot-gl-list ul li .source {
    font-size: 0.24rem;
    color: #999;
}

.home-hot-gl-list ul li .up-to-date {
    font-size: 0.24rem;
    color: #999;
    margin-right: 0.05rem;
    line-height: 0.26rem;
    margin-top: -0.03rem;
    margin-left: -0.08rem;
}


/* 游戏攻略 */

.home-game-gl {}

.home-game-gl .home-gl-list .itembox {
    margin-top: 0.2rem;
}

.home-game-gl .home-gl-list .itembox .thumb {
    width: 3.35rem;
    height: 2.1rem;
    position: relative;
}

.home-game-gl .home-gl-list .itembox .thumb img {
    width: 100%;
    height: 100%;
}

.home-game-gl .home-gl-list .itembox .thumb .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
    line-height: 0.5rem;
    padding: 0 0.2rem;
    background: rgba(0, 0, 0, .5);
    font-size: 0.24rem;
    color: #fff;
}

.home-game-gl ul li {
    padding-left: 0.3rem;
    overflow: hidden;
    padding-bottom: 0.2rem;
}

.home-game-gl ul li:last-child {
    border: none !important;
}

.home-game-gl ul li::before {
    background: var(--pm-c);
    left: 0;
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
}

.home-game-gl ul li .title {
    font-size: 0.26rem;
    color: #333333;
    display: inline-block;
    width: 100%;
    line-height: 1;
}

.home-game-gl ul li:hover .title {
    color: var(--pm-c);
}

.home-game-gl ul li .time {
    font-size: 0.24rem;
    color: #999;
    margin-left: 0.1rem;
}

.home-game-gl ul li p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.home-game-gl ul li .desc {
    font-size: 0.24rem;
    color: #999;
}

.home-game-gl ul li .look {
    font-size: 0.24rem;
    color: #999;
}


/* 游戏新闻 */

.home-game-news {}

.home-news-list {}

.home-news-list ul {
    border-left: 1px solid #eee;
}

.home-news-list ul li::before {
    content: "";
    left: -0.03rem;
    top: 0.13rem;
    width: 0.09rem;
    height: 0.09rem;
    background: #CCCCCC;
    border-radius: 50%;
}

.home-news-list ul li:last-child,
.home-news-list ul li:last-child .item {
    margin-bottom: 0 !important;
}

.home-news-list .thumb {
    width: 2.5rem;
    height: 1.5rem;
}

.home-news-list .thumb img {
    width: 100%;
    height: 100%;
}

.home-news-list .title {
    font-size: 0.28rem;
    color: #333333;
    margin-left: 0.1rem;
    display: inline-block;
    font-weight: bold;
    line-height: 1;
}

.home-news-list .desc {
    font-size: 0.26rem;
    color: #666666;
    line-height: 0.42rem;
}

.home-news-list .source {
    font-size: 0.24rem;
    color: #999;
}

.home-news-list .time {
    font-size: 0.26rem;
    color: var(--pm-c);
    padding-right: 0.1rem;
    display: inline-block;
    min-width: 50px;
}

.home-news-list .time::after {
    content: "|";
    right: 0;
    color: #eee;
}

.home-news-list ul li .info {
    margin-left: 20px;
}


/* 资讯列表 */

.game-list .item {}

.game-list .item:last-child {
    border: none !important;
    padding-bottom: 0;
}

.list-game-list .item .info {
    width: calc(100% - 3rem);
}

.list-game-list .item .info .time{
    font-size: 14px;
    color: #333

}

.list-game-list .item .icon {
    width: 1.31rem;
    height: 1.31rem;
}

.game-list .item .info .score {
    font-size: 0.24rem;
    color: #666;
    vertical-align: revert;
}

.game-list .item .icon img {
    width: 100%;
    height: 100%;
    border-radius: 0.1rem;
}

.game-list .item .info p {
    margin: 0 !important;
}

.game-list .item .info a {
    font-size: 0.26rem;
    color: #333333;
    line-height: 0.3rem;
    font-weight: 700;
    display: inline-block;
    max-width: 100%;
}

.game-list .item .info .desc {
    font-size: 0.24rem;
    color: #666666;
    line-height: 0.3rem;
    margin-top: 0.1rem !important;
}

.game-list .item .info span {
    font-size: 0.24rem;
    color: #666666;
    line-height: 0.35rem;
}

.game-list .item .down {
    width: 0.6rem;
    height: 0.6rem;
    background: url("../images/down.png") no-repeat center/contain;
}

.game-list .item .more {
    border: 1px solid var(--pm-c);
    color: var(--pm-c);
    font-size: 0.24rem;
    width: 1.3rem;
    height: 0.6rem;
    line-height: 0.6rem;
    border-radius: 0.1rem;
    text-align: center;
}


/* 热门游戏 */

.list-hot-game-list ul {}

.list-hot-game-list .item {}

.list-hot-game-list .item:last-child {
    border: none !important;
    padding-bottom: 0;
}

.list-hot-game-list .item .num {
    font-size: 0.24rem;
    color: #fff;
    width: 0.3rem;
    height: 0.3rem;
    line-height: 0.3rem;
    text-align: center;
    box-sizing: border-box;
    background: #ccc;
    align-self: flex-start;
    margin-right: 0.2rem;
}

.list-hot-game-list .item:nth-child(-n+3) .num {
    background: var(--pm-c);
}

.list-hot-game-list .item .icon {
    width: 0.98rem;
    height: 0.98rem;
    border-radius: 0.1rem;
}

.list-hot-game-list .item .icon img {
    width: 100%;
    height: 100%;
    border-radius: 0.1rem;
}

.list-hot-game-list .item .title {
    font-size: 0.26rem;
    color: #2f2f2f;
    display: inline-block;
    max-width: 100%;
    line-height: 1;
}

.list-hot-game-list .item .info .score {
    font-size: 0.24rem;
    color: #666;
    vertical-align: revert;
}

.list-hot-game-list .item .type {
    font-size: 0.24rem;
    color: #666;
    display: inline-block;
    margin-bottom: 0;
}

.list-hot-game-list .item .down {
    width: 0.7rem;
    height: 0.7rem;
    display: inline-block;
    background: url('../images/down.png') no-repeat center/contain;
}

.single-header {}

.single-news .single-header {
    margin-top: 0.2rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.single-header h1 {
    font-size: 0.3rem;
    color: #333;
    text-align: center;
}

.single-header .single-info {
    text-align: left;
}

.single-header .single-info h1 {
    text-align: left;
    line-height: 0.3rem;
    padding-bottom: 0;
    margin-bottom: 0.1rem;
}

.single-header .info {
    text-align: center;
    margin: 0.5rem 0 0.36rem;
}

.single-header .info span {
    font-size: 0.22rem;
    color: #666666;
    margin-right: 0.3rem;
}

.single-header .single-info .icon {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 auto;
}

.single-header .single-info .icon img {
    width: 100%;
    height: 100%;
    border-radius: 0.1rem;
}

.single-header .single-info .title {
    font-size: 0.26rem;
    color: #2F2F2F;
    line-height: 1;
}

.single-header .single-info .time {
    font-size: 0.24rem;
    color: #666666;
}

.single-header .single-info .pf {
    font-size: 0.38rem;
    color: var(--pm-c);
    line-height: 1;
}

.single-header ul li .cont {
    font-size: 0.24rem;
    color: #333;
}

.single-header ul li .name {
    font-size: 0.24rem;
    color: #999;
}

.single-header .single-info ul li {
    width: 50%;
    padding-right: 0.2rem;
    box-sizing: border-box;
    font-size: 0.24rem;
    color: #666666;
    padding-left: 0;
}

.single-header .downbtn {
    padding: 0.2rem 0.08rem;
    border-radius: 0.1rem;
    text-align: center;
    display: block;
    color: #fff;
    background-color: var(--pm-c);
    position: relative;
    background-image: linear-gradient(0deg, var(--pm-c) 0%, var(--pm-c) 100%), linear-gradient(var(--pm-c), var(--pm-c));
    background-blend-mode: normal, normal;
    margin-top: 0.3rem;
    font-size: 0.24rem;
}
.single-header .downbtn a{
    color: #fff
}

/* 游戏截图 */

.single-jt {}

.single-app .single-slide .item {
    width: 2.55rem;
    height: 3.4rem;
}

.single-app .single-slide .uk-slider-items {
    overflow-x: scroll;
    flex-wrap: nowrap;
}

.single-app .single-slide .item img {
    width: 100%;
    height: 100%;
}


/* 游戏简介 */

.single-content p {
    text-indent: 2em;
    font-size: 0.26rem;
    color: #666666;
    line-height: 0.58rem;
    margin-bottom: 0px !important;
    display: inline-block;
    margin: 0.1rem 0;
}

.single-content h2,
.single-content h3 {
    font-size: 0.28rem;
    font-weight: bold;
    margin: 0.1rem 0;
}

.single-app .single-content img {
    display: block;
    max-width: 100%;
    margin: 0.1rem auto;
    height: auto;
}


/* 资讯列表 */

.list-app {}

.list-app .list-news-list li {}

.list-app .list-news-list li:last-child {
    border: none !important;
    padding-bottom: 0;
}

.list-app .list-news-list li .title {
    font-size: 0.26rem;
    color: #333;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    line-height: 1;
}

.list-app .list-news-list li .desc {
    font-size: 0.24rem;
    color: #666666;
    line-height: 0.48rem;
    margin: 0.2rem 0 0;
}

.list-app .list-news-list li .time {
    font-size: 0.24rem;
    color: #999999;
}

.list-app .list-news-list li .info .look {
    font-size: 0.24rem;
    color: var(--pm-c);
}

.list-app .list-news-list li .info {
    margin: 0.1rem 0 0;
}

.list-app .list-news-list li .hot {
    display: inline-block;
    color: var(--pm-c);
    font-size: 0.22rem;
    line-height: 0.28rem;
    width: 0.7rem;
    height: 0.28rem;
    border-radius: 0.05rem;
    background: rgba(36, 170, 153, 0.1);
    text-align: center;
    margin-right: 0.2rem;
}


/* 相关资讯 */

.xg-news {
    overflow: hidden;
    padding-bottom: 0;
}

.xg-news .news-list {}

.xg-news .news-list .list {
    box-sizing: border-box;
    padding-left: 0.25rem;
}

.xg-news .news-list .list::before {
    width: 0.15rem;
    height: 0.15rem;
    background: url('../images/list_dot.png') no-repeat center/contain;
    left: 0;
    top: 0.1rem;
}

.xg-news .news-list .list:last-child {
    border: none !important;
}

.xg-news .news-list .list .title {
    font-size: 0.26rem;
    color: #333333;
    line-height: 1;
}

.xg-news .news-list .list .time {
    font-size: 0.24rem;
    color: #999999;
    display: inline-block;
}

.xg-news .news-list .list .more {
    font-size: 0.24rem;
    color: #999999;
    display: inline-block;
}


/* list 样式 */

.list ul li a {
    padding-left: 0.2rem;
}

.list ul li a::before {
    display: inline-block;
    left: 0;
    width: 0.06rem;
    height: 0.06rem;
    background-color: var(--pm-c);
}


/* 鼠标移入 阴影立体效果 */

.list-game-li ul li:hover {
    box-shadow: 0px 0px 0.16rem 0px rgba(100, 100, 100, 0.22);
    box-shadow: 0px 0px 0.09rem 0px rgba(210, 222, 235, 0.72);
}


/* 卡片式 */

.gl-card .item:hover {
    background: #f7f7f7;
}


/* 
 * -n+3  获取前三个元素 
 * 2n    偶数even
 * 2n-1  奇数odd
*/


/* 公共样式 end */


/* 首页 */

.home- {}


/* 列表页 */

.category- {}

.list- {}


/* 文章内页 */

.single- {}

.mobile .title {
    font-size: 0.28rem;
}


/* 样式修改 */

.module-title .more {
    color: #24AA99;
    transform: translateY(-0.01rem) translatex(-0.03rem) scale(2);
}

.home-hot-gl-list {
    margin-top: 0.2rem;
}

.home-hot-gl-list ul li {
    position: relative;
    padding: 0 0.14rem;
    margin: 0;
}

.home-hot-gl-list ul li p {
    font-size: 0.3rem;
    height: 0.3rem;
    line-height: 0.3rem;
    padding: 0.2rem 0;
    margin: 0 !important;
    width: 80%;
}

.up-to-date {
    display: block;
    color: #24AA99 !important;
    height: 0.3rem !important;
    line-height: 0.3rem !important;
    margin-top: 0.02rem !important;
    padding-left: 0.1rem;
}

.home-hot-gl-list ul li .time {
    position: absolute;
    right: 0;
    margin-right: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.3rem;
    margin-top: 0.2rem;
}

.home-hot-gl-list ul li:nth-child(odd) {
    background-color: #F7F7F7;
    /* 奇数项的背景颜色 */
}


/* 组件增加样式 */

.flex-start {
    display: flex;
}

.flex-bet {
    display: flex;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gl_box>a,
.gl_box>a>img {
    width: 2.6rem;
    height: 1.6rem;
    display: block;
    margin-right: 0.28rem;
    border-radius: 0.2rem;
}

.gl_box {
    padding: 0.4rem 0;
    border-bottom: 0.01rem dashed #eeeeee;
}

.gl_box>div {
    width: 4rem;
}

.list_gl li a,
.gl_box>div>a {
    font-size: 0.28rem;
    line-height: 0.4rem;
    height: 0.4rem;
    color: #1A1A1A;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list_gl li p,
.gl_box>div>p {
    text-overflow: ellipsis;
    font-size: 0.28rem;
    height: 0.4rem;
    color: #4D4D4D;
    line-height: 0.4rem;
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.list_gl li p {
    display: block;
    margin-top: 0.2rem !important;
}

.gl_box>div>p {
    margin: 0.16rem 0 0 0;
}

.list_gl li span,
.gl_box>div>span {
    font-size: 0.24rem;
    height: 0.34rem;
    line-height: 0.34rem;
    color: #999999;
}

.gl_box>div>span {
    display: block;
    margin: 0.3rem 0 0 0;
}

.list_gl {
    padding: 0.08rem 0;
}

.list_gl li {
    padding: 0.32rem 0 !important;
    position: relative;
    border-bottom: 0.01rem dashed #eeeeee;
}

.list_gl li:last-child {
    border: none;
}

.list_gl li a {
    width: 80%;
    padding-left: 0.32rem;
    position: relative;
}

.list_gl li a::before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 0.12rem;
    height: 0.12rem;
    margin-left: -0.32rem;
    background: #24AA99;
    border-radius: 0.06rem;
    margin-top: 0.14rem;
}

.list_gl li span {
    position: absolute;
    right: 0;
}

.zx_imgs a,
.zx_imgs img {
    width: 3.36rem;
    height: 2.2rem;
    border-radius: 0.2rem;
    display: block;
    overflow: hidden;
}

.zx_imgs a {
    margin-top: 0.32rem;
    position: relative;
}

.zx_imgs a span {
    display: block;
    position: absolute;
    bottom: 0;
    width: inherit;
    height: 0.6rem;
    font-size: 0.26rem;
    line-height: 0.6rem;
    padding: 0 0.28rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.home-cp-list .item {
    position: relative;
    border-radius: 0.2rem;
    background: #F7F7F7;
}

.home-cp-list .item>a {
    font-size: 0.26rem;
    height: 0.36rem;
    line-height: 0.36rem;
    padding: 0.18rem 0.28rem;
    margin: 0 !important;
}

.cp_top_date {
    position: absolute;
    width: 1rem;
    height: 0.48rem;
    border-radius: 0 0 0.2rem 0;
    background: #24AA99;
    text-align: center;
    line-height: 0.48rem;
    font-size: 0.24rem;
    color: white !important;
}

.home-cp-list .item:last-child {
    width: 6.9rem !important;
}

.home-cp-list .item:last-child>.thumb,
.home-cp-list .item:last-child>.thumb>a,
.home-cp-list .item:last-child>.thumb>a>img {
    width: 6.9rem !important;
    height: 3rem !important;
}

.new_date {
    margin-right: 0.2rem !important;
}

.single-header h1 {
    font-size: 0.36rem;
    line-height: 0.58rem;
    width: 6.5rem;
    color: #1A1A1A;
    margin: 0 auto;
    font-weight: 600;
}

.head_msg_img {
    margin: 0.6rem auto !important;
}

.head_msg_img,
.head_msg_img>img {
    display: block;
    width: 5.48rem !important;
    height: 3.08rem !important;
}

.footer>div>p {
    font-size: 0.24rem;
    color: #999;
    line-height: 0.6rem;
    padding: 0;
    background: #333333;
}

.footer>div>p>a {
    color: #999;
}

.footer>div>a {
    color: #999999;
}

.footer ul li a {
    border: none;
    padding: 0;
}

.footer>ul>li:last-child>a {
    margin-right: 0;
}

.nav li.active a {
    border-bottom: 0.04rem solid #fff;
}

.home-slide .swiper-pagination-bullet {
    width: 0.26rem;
    height: 0.08rem;
    border-radius: 0.08rem;
}

.module-title .title::before {
    width: 0.08rem;
    height: 0.32rem;
    border-radius: 0.04rem;
    background: linear-gradient(to top, #24AA99, #8EE1A5);
}

.home-links {
    overflow: hidden;
}

.home-links a {
    font-size: 0.28rem;
    border: none;
}

.single-content {
    padding-top: 0.17rem;
    padding-bottom: 0.2rem;
}


/* 开服表样式 */

.kf_container {
    padding: 0.2rem 0.48rem;
    background: white;
    margin-bottom: 0.2rem;
}

.kf_head {
    height: 0.4rem;
    border-radius: 0.2rem;
    padding: 0.2rem 0.28rem;
    background: #F7F7F7;
}

.kf_head p {
    margin: 0;
    padding: 0;
    font-size: 0.24rem;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 0.4rem;
    height: 0.4rem;
}

.kf_head>span>img {
    width: 0.4rem;
    height: 0.4rem;
    display: inline-block;
    margin-right: 0.16rem;
    opacity: 0.6;
}

.kf_head>span {
    line-height: 0.4rem;
    height: 0.4rem;
    margin: 0;
    padding: 0;
    font-size: 0.28rem;
    font-weight: 500;
    color: #1A1A1A;
    display: flex;
    align-items: center;
}

.kf_table>li>div {
    height: 1.2rem;
    padding: 0.36rem 0;
    border-bottom: 1px solid #EDEDED;
}

.kf_table>li:last-child>div:last-child {
    border: none;
}

.kf_table>li>div>a,
.kf_table>li>div>a>img {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0 0.3rem 0.3rem 0.3rem;
}

.kf_table>li>div>a {
    position: relative;
}

.kf_table>li>div>a>span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0.32rem;
    height: 0.32rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
    text-align: center;
    color: white;
    background: #FF7A00;
}

.kf_table>li>div>div {
    padding-left: 0.2rem;
    width: 5.5rem;
}

.kf_table>li>div>div>div>p {
    margin: 0;
    padding: 0;
}

.kf_table>li>div>div>div>p:nth-child(1) {
    height: 0.42rem;
    font-size: 0.3rem;
    font-weight: 500;
    color: #333333;
    line-height: 0.42rem;
}

.kf_table>li>div>div>div>p:nth-child(2),
.kf_table>li>div>div>div>p:nth-child(3) {
    height: 0.34rem;
    font-size: 0.24rem;
    font-weight: 500;
    color: #999999;
    line-height: 0.34rem;
    margin-top: 0.06rem;
}

.kf_table>li>div>div>div>p:nth-child(2)>span,
.kf_table>li>div>div>div>p:nth-child(3)>span {
    color: #666666;
}

.kf_table>li>div>div>div>p:nth-child(1)>span {
    display: inline-block;
    width: 0.8rem;
    height: 0.4rem;
    font-size: 0.24rem;
    font-weight: 500;
    color: #1FCCB6;
    line-height: 0.4rem;
    background: #E4F8F5;
    margin-left: 0.24rem;
    text-align: center;
    position: relative;
}

.kf_table>li>div>div>div>p:nth-child(1)>span::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    margin-top: 0.12rem;
    margin-left: -0.08rem;
    width: 0;
    height: 0;
    border-top: 0.08rem solid transparent;
    border-right: 0.08rem solid #E4F8F5;
    border-bottom: 0.08rem solid transparent;
}

.kf_table>li>div:nth-child(2)>div>div>p:nth-child(1)>span {
    color: #F56700;
    background: #FDF1E9;
}

.kf_table>li>div:nth-child(2)>div>div>p:nth-child(1)>span::before {
    border-right: 0.08rem solid #FDF1E9;
}

.kf_table>li>div>div>a {
    display: block;
    width: 1.18rem;
    height: 0.58rem;
    line-height: 0.58rem;
    border: 0.01rem solid #24AA99;
    color: #24AA99;
    font-size: 0.24rem;
    font-weight: 500;
    color: #24AA99;
    text-align: center;
    border-radius: 0.3rem;
    margin-top: 0.3rem;
}
#home_aqapps {
    margin:0 !important;
    background: #fff;
    padding: 15px;
}

div.aq_part{
    background-color: #fff;
}