/* 公共样式 */

: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-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);
    padding: 0;
    margin: 0;
    font-family: Microsoft YaHei;
}

.w360 {
    width: 360px;
}

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

ol,
ul,
p {
    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;
}


/*边框样式*/

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


/* 内边距  */

.p-a-5 {
    padding: 5px;
}

.p-a-10 {
    padding: 10px;
}

.p-a-20 {
    padding: 20px;
}

.p-a-25 {
    padding: 25px;
}

.p-a-30 {
    padding: 30px;
}


/* 内上边距 */

.p-t-0 {
    padding-top: 0px;
}

.p-t-5 {
    padding-top: 5px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-30 {
    padding-top: 30px;
}


/* 内下边距 */

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

.p-b-5 {
    padding-bottom: 5px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.p-b-15 {
    padding-bottom: 15px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-b-30 {
    padding-bottom: 30px;
}


/* 内右边距 */

.p-r-5 {
    padding-right: 5px;
}

.p-r-10 {
    padding-right: 10px;
}

.p-r-15 {
    padding-right: 15px;
}

.p-r-20 {
    padding-right: 20px;
}

.p-r-30 {
    padding-right: 30px;
}


/* 内左边距 */

.p-l-0 {
    padding-left: 0px;
}

.p-l-5 {
    padding-left: 5px;
}

.p-l-10 {
    padding-left: 10px;
}

.p-l-15 {
    padding-left: 15px;
}

.p-l-20 {
    padding-left: 20px;
}

.p-l-30 {
    padding-left: 30px;
}


/*圆角样式*/

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

.b-r-6 {
    border-radius: 6px !important;
}

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

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

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

.b-r-20 {
    border-radius: 20px !important;
}

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

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


/* 上外边距 */

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-25 {
    margin-top: 25px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}


/* 下外边距 */

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

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

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

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

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

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

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


/* 左外边距 */

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

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

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

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

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

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


/* 右外边距 */

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

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

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

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

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

.m-r-30 {
    margin-right: 30px !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);
}

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


/*默认图标尺寸*/

.item .icon {
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

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

.item .data span {
    font-size: 14px;
}

.item .hr {
    display: inline-block;
    height: 12px;
    width: 1px;
    background: #bbb;
    margin: 0 5px;
}


/* 默认缩略图尺寸 */

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


/* 分页 */

.pagination {
    margin: 60px 0 40px 0;
    text-align: center;
}

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
    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: 6px 12px;
    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;
}

.star {
    height: 15px;
    width: 75px;
    display: inline-block;
    background: url(../images/icon-star-bg.png) repeat-x 15px/contain;
}

.star:before {
    content: "";
    display: block;
    background: url(../images/icon-star.png) repeat-x 15px/contain;
    height: 15px;
}

.star-1:before {
    width: 16px;
}

.star-2:before {
    width: 30px;
}

.star-3:before {
    width: 45px;
}

.star-4:before {
    width: 60px;
}

.star-5:before {
    width: 75px;
}


/*面包屑导航*/

.crumbs {
    font-size: 12px;
    /* padding: 10px; */
    color: #999;
}

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

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


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

.platform i {
    display: inline-block;
    width: 15px;
    height: 15px;
    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: 5px;
}

.module-title .title {
    padding-left: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}

.module-title .more {
    display: block;
    font-size: 12px;
    color: var(--pm-c);
    text-align: right;
}

.module-title .title::before {
    width: 4px;
    height: 18px;
    left: 0;
    background: var(--pm-c);
    border-radius: 2px;
}


/* list 样式 */

.list ul li a {
    padding-left: 25px;
}

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


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

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


/* 带图标 序号 */

.item .icon {
    width: 100px;
    height: 100px;
}


/* 卡片式 */

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


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


/* 公共样式 end */


/* 公共头部样式 */

header {
    background-color: var(--pm-c);
    height: 80px;
    line-height: 80px;
}

header .header {
    justify-content: space-between;
}

header .logo {
    line-height: normal
}

header .logo a {
    display: block;
    height: 43px;
}

header .logo img {
    width: auto;
    height: 100%;
}

header .nav {
    max-width: 900px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

header .nav ul li {
    display: inline-block;
    padding-right: 20px;
    margin-left: 20px;
}

header .nav ul li a {
    color: #fff;
    font-size: 18px;
}

header .nav ul li::after {
    content: "|";
    right: 0;
    color: #fff;
    margin-top: -2px;
}

header .nav ul li a:hover {
    color: #fff;
}

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


/* 公共头部样式end */


/* 搜索 */

.search {
    background: #ffffff;
    border-radius: 5px;
    margin-left: 90px;
}

.search-1 {
    width: 250px;
    height: 36px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 5px;
}

.search-input {
    width: calc(100% - 60px);
    height: 100%;
    padding-left: 13px;
    border: none;
    outline: medium;
    vertical-align: top;
    width: 200px;
    height: 36px;
    line-height: 36px;
    background: #ffffff;
    border: 1px solid #fff;
    color: #ccc;
}

.search-input::-webkit-input-placeholder {
    color: #ccc;
}

.search-input:-moz-placeholder {
    color: #ccc;
}

.search-input:-ms-input-placeholder {
    color: #ccc;
}

.search-btn {
    width: 40px;
    height: 100%;
    color: #fff;
    text-align: center;
    border: none;
    float: right;
    vertical-align: top;
    background: url(../images/search.png) no-repeat center, #fff;
    background-size: 19px 19px;
}


/* 公共头部样式end */


/* 公共页脚样式 */

.footer {
    margin-top: 30px;
    background: #333333;
    padding: 50px 0;
}

.footer .foot-nav ul li {
    display: inline-block;
    padding-right: 10px;
    margin-right: 5px;
}

.footer a {
    color: #999999;
}

.footer p {
    color: #999999;
    margin-bottom: 0;
}

.footer .foot-nav ul li::after {
    content: "|";
    right: 0;
    color: #999999;
}


/* 公共页脚样式end */

.uk-container {
    box-sizing: border-box;
    padding: 0;
}


/* 首页 */

.home-img {
    width: 230px;
}

.home-img .thumb {
    width: 230px;
    height: 155px;
    position: relative;
    margin-bottom: 20px;
}

.home-img .thumb:last-child {
    margin-bottom: 0;
}

.home-img .thumb span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    padding: 5px 15px;
}

.home-headlines-list ul {
    margin-top: -5px;
    max-height: 105px;
    overflow: hidden;
}

.home-headlines-list ul li {
    box-sizing: border-box;
}

.home-headlines-list ul li .title {
    padding-left: 10px;
    font-size: 14px;
    color: #333333;
}

.home-headlines-list ul li span {
    font-size: 14px;
    color: #999999;
}


/* 首页轮播图 */

.home-banner {
    width: 500px;
    overflow: hidden;
}

.home-banner-img {
    width: 500px;
    height: 330px;
}

.home-banner .home-banner-swiper {}

.swiper-wrapper {
}

.home-banner .home-banner-swiper .swiper-slide .title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 30px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding-left: 20px;
    box-sizing: border-box;
}

.home-banner .home-banner-swiper .swiper-slide p {
    line-height: 30px;
    font-size: 14px;
    color: #FFFFFF;
    width: 70%;
}

.home-banner .home-banner-swiper .swiper-pagination {
    bottom: 5px;
    right: 0px;
    text-align: right;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 6px;
    border-radius: 3px;
    background: var(--pm-c);
}

.home-banner .info {
    margin-top: 30px;
}

.home-banner .info .title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 16px !important;
    font-weight: 500;
}

.home-banner .info .desc {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #777777;
    line-height: 26px;
}

.home-banner .info .look {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--pm-c);
}

.thumbnail img {
    width: 86px;
    height: 50px;
}

.home-latest {}

.home-latest-hot .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pm-c);
}

.home-latest-hot .desc {
    font-size: 14px;
    color: #777;
}

.home-latest-hot .look {
    font-size: 14px;
    color: #999;
    display: inline-block;
    margin-left: 10px;
}

.home-headlines-list .up-to-date {
    font-size: 14px;
    color: var(--pm-c);
}

.home-headlines-list .up-to-date::after {
    content: "|";
    right: 0;
    color: #eee;
}

.home-latest .list ul li {
    width: 100%;
    padding-left: 0;
}

.home-latest .list ul {
    max-height: 100%;
}

.home-latest .list ul li:last-child {
    padding-bottom: 0px;
}

.home-latest-hot-item {
    border-bottom: 1px dashed #eeeeee;
}

.home-latest-hot-item .icon {
    width: 151px;
    height: 91px;
}

.home-latest-hot-item .icon img {
    width: 100%;
    height: 100%;
}

.home-latest-hot-item .info .desc {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
}

.home-latest-hot-item .info .time {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}


/* 游戏资讯 */

.home-information {
    width: 750px;
}

.home-information-list {
    margin-top: -5px;
    margin-left: -30px;
    overflow: hidden;
}

.home-information .list {
    width: 46%;
    float: left;
    margin-left: 30px;
    box-sizing: border-box;
    border-radius: 5px;
}

.home-information .list .up-to-date {
    font-size: 14px;
    color: var(--pm-c);
    margin-right: 10px;
    line-height: 14px;
    background: rgba(36, 170, 153, 0.2);
    border-radius: 5px;
    width: 40px;
    text-align: center;
    line-height: 23px;
    height: 23px;
}

.home-information .list .title {
    font-size: 16px;
    color: #333;
}

.home-information .list .desc {
    font-size: 14px;
    color: #666;
    line-height: 23px;
    margin-top: 10px;
}

.home-information .list .time,
.home-information .list .source {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}

.home-information .list .look {
    font-size: 14px;
    color: var(--pm-c);
}

.home-information .list:hover .title {
    color: var(--pm-c);
}


/* 最新攻略 */

.home-hot-gl .home-gl {}

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

.home-hot-gl .home-gl .thumb {
    width: 380px;
    height: 150px;
}

.home-hot-gl .home-gl .thumb img {
    width: 100%;
    height: 100%;
}

.home-hot-gl .home-gl ul li.info {
    border-radius: 5px;
}

.home-hot-gl .home-gl ul li.info:nth-child(odd) {
    background-color: #f6f6f6;
}

.home-hot-gl .home-gl ul li.info .up-to-date {
    font-size: 14px;
    color: #999;
}

.home-hot-gl .home-gl ul li.info .title {
    font-size: 14px;
    color: #333333;
    display: inline-block;
    margin-right: 10px;
}

.home-hot-gl .home-gl ul li.info .time {
    font-size: 14px;
    color: #999999;
}


/* 游戏攻略 */

.home-game-gl {}

.home-game-gl {}

.home-game-gl .thumb {
    display: block;
    width: 180px;
    height: 100px;
}

.home-game-gl .home-gl-list .list li {
    padding-left: 18px;
}

.home-game-gl .home-gl-list .list li a {
    font-size: 14px;
    color: #333333;
    margin-right: 15px;
}

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

.home-game-gl .home-gl-list .list li span {
    font-size: 14px;
    color: #999999;
    line-height: 24px;
}

.home-game-gl .home-gl-list .list li::before {
    width: 8px;
    height: 8px;
    background: #24AA99;
    border-radius: 50%;
    left: 0;
    top: 13px;
}

.home-game-gl .home-gl-list .thumb {
    width: 170px;
    height: 110px;
    position: relative;
}

.home-game-gl .home-gl-list .thumb .title {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    padding: 0 8px;
}


/* 游戏测评 */

.home-game-cp {
    overflow: hidden;
}

.home-game-cp .home-cp-list {
    margin-left: -20px;
}

.home-game-cp .thumb {
    width: 16.6%;
    height: 110px;
    float: left;
    padding-left: 20px;
    position: relative;
    margin-top: 20px;
    box-sizing: border-box;
}

.home-game-cp .thumb .title {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    padding: 0 8px;
    margin-left: 20px;
}


/* 友情链接 */

.home-links a {
    font-size: 14px;
    margin-right: 12px;
    color: #666666;
    line-height: 21px;
}


/* 游戏新闻 */

.home-news {}

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

.home-news-list ul li::before {
    content: "";
    left: -3px;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #CCCCCC;
    border-radius: 50%;
}

.home-news-list .thumb {
    width: 130px;
    height: 80px;
}

.home-news-list .title {
    font-size: 16px;
    color: #333333;
    margin-left: 10px;
    display: inline-block;
}

.home-news-list .desc {
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

.home-news-list .source {
    font-size: 14px;
    color: #999;
}

.home-news-list .time {
    font-size: 14px;
    color: #999;
    padding-right: 10px;
    display: inline-block;
    min-width: 40px;
}

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

.home-news-list ul li .item {
    display: none;
}

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

.home-news-list ul li.active .item {
    display: block;
    display: flex;
}

.home-news-list ul li.active .title {
    color: var(--pm-c);
}

.home-news-list ul li.active .time {
    color: var(--pm-c);
}

.home-news-list ul li.active::before {
    background-color: var(--pm-c);
}


/* 列表页 */


/* 游戏列表 */

.list-game-list {}

.list-game-list .item .info {}

.list-game-list .item .info .title {
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.list-game-list .item .info .type {
    font-size: 14px;
    color: #777;
}

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

.list-game-list .item .desc {
    font-size: 14px;
    color: #777;
    display: block;
}

.list-game-list .item .info-list {}

.list-game-list .item .info-list li {
    margin-left: 30px;
    font-size: 14px;
    color: #666;
}

.list-game-list .item .icon {
    width: 81px !important;
    height: 81px !important;
}

.list-game-list .item .more {
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid var(--pm-c);
    border-radius: 5px;
    font-size: 14px;
    color: var(--pm-c);
    margin-left: 30px;
}

.list-game-list .item:hover .more {
    color: #fff;
    background-color: var(--pm-c);
}


/* 热门游戏 */

.list-hot-game {
    overflow: hidden;
}

.game-list .item {
    width: 25%;
    padding-left: 36px;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

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

.game-list .item .title {
    font-size: 14px;
    /* font-size: 16px; */
    font-weight: 600;
    color: #2f2f2f;
    display: inline-block;
    margin: 8px 0;
}

.game-list .item .look {
    font-size: 14px;
    color: var(--pm-c);
    display: inline-block;
    width: 45px;
    height: 25px;
    background: rgba(18, 186, 188, 0.1);
    border-radius: 5px;
    text-align: center;
    line-height: 25px;
}

.list-hot-game-list .item .icon {
    width: 68px;
    height: 68px;
    border-radius: 10px;
}

.list-hot-game-list .item .title {
    font-size: 16px;
    font-weight: 600;
    color: #2f2f2f;
    display: inline-block;
}

.list-hot-game-list .item .type {
    font-size: 14px;
    color: #999;
    display: inline-block;
}

.list-hot-game-list .item .num {
    font-size: 14px;
    color: #fff;
    width: 23px;
    height: 23px;
    text-align: center;
    box-sizing: border-box;
    background: #ccc;
    border-radius: 2px;
    align-self: flex-start;
    margin-right: 20px;
}

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

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


/* 文章内页 */

.single- {}

.single-content p {
    text-indent: 2em;
    line-height: 36px;
    font-size: 16px;
    color: #666;
    margin: 10px auto;
}

.single-content h2,
.single-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 15px 0;
}

.single-content img {
    display: block;
    max-width: 100%;
    margin: 10px auto;
    height: auto !important;
}

.single-head .icon {
    width: 131px;
    height: 131px;
    border-radius: 10px;
}

.single-head .icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.single-head .title {
    font-size: 24px;
    color: #333333;
}

.single-head .title2 {
    color: #333333;
    font-size: 26px;
    font-weight: bold;
    padding: 50px 0;
    padding-bottom: 45px;
    margin-bottom: 0;
}

.single-head ul li {
    color: #858585;
    font-size: 14px;
    width: 33.33%;
    padding-right: 10px;
    box-sizing: border-box;
    padding-left: 0 !important;
}

.single-head ul li .star {
    display: inline-block;
}

.single-head ul li:nth-child(3n) {
    padding-right: 0;
}

.btn span {
    position: relative;
    display: block;
    font-size: 16px;
    color: #ffffff;
    text-indent: 60px;
    line-height: 50px;
}

.single-head .download .btn::before {
    left: 30px;
    display: inline-block;
    width: 21px;
    height: 24px;
    background-repeat: no-repeat;
}

.single-head .download .az:before {
    background-image: url(../images/az.png);
}

.single-head .download .ios:before {
    background-image: url(../images/ios.png);
}

.single-head .download .btn {
    position: relative;
    height: 50px;
    line-height: 50px;
    min-width: 180px;
    background: var(--pm-c);
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
}

.single-head .download .none {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid: DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
    opacity: 0.4;
}

.single-head .download .code {
    display: none;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    color: #777;
    font-size: 14px;
    line-height: normal;
    right: -170px;
    z-index: 10;
}

.single-head .download .code img {
    border: 1px solid #f5f5f5;
    margin-bottom: 15px;
}

.single-head .download .az:hover .code {
    display: block;
}


/* 资讯列表 */

.list-new {}

.list-new .list-news-list li {
    padding: 20px;
}

.list-new .list-news-list li .hot {
    font-size: 14px;
    color: var(--pm-c);
    display: inline-block;
    background: rgba(36, 170, 153, 0.08);
    height: 23px;
    line-height: 23px;
    width: 50px;
    text-align: center;
    border-radius: 5px;
    align-self: flex-start;
    margin-top: 5px;
}

.list-new .list-news-list li .title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    display: inline-block;
}

.list-new .list-news-list li:hover .title {
    color: var(--pm-c);
}

.list-new .list-news-list li .info .desc {
    font-size: 14px;
    color: #666666;
    margin: 8px 0;
}

.list-new .list-news-list li .time {
    font-size: 14px;
    color: #999;
}

.list-new .list-news-list li .time span {
    display: block;
}

.list-new .list-news-list li .date {
    font-size: 22px;
    color: var(--pm-c);
}

.list-new .list-news-list li .year {
    font-size: 14px;
    color: var(--pm-c);
}

.list-new .list-news-list li .info {
    position: relative;
}

.list-new .list-news-list li .info .look {
    font-size: 14px;
    color: var(--pm-c);
    background-color: #f7f7f7;
}


/* 内页中的头部标题 */

.show-news .single-head {
    min-height: 190px;
}

.show-news .single-head .info span {
    font-size: 12px;
    color: #999999;
}


/* .show-news .single-head .info span:nth-child(odd) {
    margin-right: 80px;
} */


/* 相关资讯 */

.xg-news {
    overflow: hidden;
}

.xg-news .news-list {
    margin-left: -4%;
}

.xg-news .news-list .list {
    width: 46%;
    float: left;
    box-sizing: border-box;
    margin-left: 4%;
}

.xg-news .news-list .list:last-child,
.xg-news .news-list .list:nth-last-child(2) {
    border: none !important;
}

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

.xg-news .news-list .list:nth-child(even) {
    padding-right: 0px;
}

.xg-news .news-list .list .title {
    font-size: 14px;
    color: #333333;
}

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

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

.xg-news .news-list .list:hover .title {
    color: var(--pm-c);
}


/* 上一页 下一页 */

.page {
    overflow: hidden;
}

.page a {
    width: 100%;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: left;
    font-size: 16px;
    color: #777;
}


/* 内页中的轮播图 */

.single-swiper {
    overflow: hidden;
}

.single-swiper-warp {
    width: 750px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.single-swiper .swiper-wrapper {
    height: auto;
}

.single-swiper .swiper-slide .thumb {
    width: 236px;
}

.single-swiper .swiper-slide img {
    min-height: 100%;
}

.single-swiper .swiper-btn {
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 100px;
    background-image: url(../images/left-btn.png);
    position: absolute !important;
    background-repeat: no-repeat;
    max-width: calc(100% - (0px * 2));
    box-sizing: border-box;
}

.single-swiper .swiper-slide-active {
    position: relative;
    z-index: 10;
}

.single-swiper .swiper-slide-active .thumb {
    /* transform: scale(1.2); */
    z-index: 10;
}

.single-swiper .button-next {
    right: 0;
    top: calc(40%);
    transform: translate(0, -50%) rotate(180deg);
}

.single-swiper .button-prev {
    transform: translate(0, 0);
    left: 0px;
    top: calc(50%);
}

@media (max-width: 760px) {
    header {
        padding: 15px 0;
    }
    header .logo {
        height: 35px;
        margin: 0 15px;
    }
    header .logo img {
        height: 100%;
    }
    header .nav ul {
        white-space: nowrap;
        overflow-x: scroll;
    }
    header .nav ul li {
        margin-right: 0;
    }
    .footer {
        padding: 15px;
    }
    .xg-news .news-list .item {
        padding-right: 0px;
        width: 100%;
    }
    .w360 {
        width: 100%;
    }
    .show-game-left {
        width: 100%;
    }
    .list-game-left {
        width: 100%;
    }
    .list-game-right {
        margin-left: 0 !important;
    }
    .single {
        display: block;
    }
    .single-swiper-warp {
        width: 100%;
    }
    .single-head ul li {
        font-size: 12px;
    }
    .game-rank-score,
    .game-rank-score-1,
    .game-rank-score-2,
    .game-rank-score-3,
    .game-rank-score-4,
    .game-rank-score-5 {
        width: 70px;
        height: 14px;
    }
    .xg-news {
        margin-bottom: 20px;
    }
    .index-banner,
    .index-gl,
    .list-new {
        display: block;
    }
    .home-banner-img {
        width: 100%;
        height: auto;
    }
    .home-headlines-list {
        width: 100%;
    }
    .home-information,
    .home-banner {
        width: 100%;
    }
    .home-banner,
    .home-hot-gl {
        margin-left: 0px !important;
        margin-top: 20px;
    }
    .home-latest,
    .home-cp,
    .home-game-gl {
        width: 100%;
        max-width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    .home-information .list {
        width: 44%;
    }
    .home-information,
    .home-cp,
    .home-news {
        margin-top: 20px;
    }
    .home-latest {
        margin-top: 20px;
    }
    .logo-search {
        padding: 30px;
    }
    .home-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .home-img .thumb {
        margin-bottom: 0px;
    }
    .single-swiper .swiper-slide .thumb {
        width: 100%;
        height: 100%;
    }
    .swiper-wrapper {
        height: 200px !important;
    }
    .xg-news .news-list .list {
        width: 100%;
        margin-left: 0px;
    }
}


/* 修改样式 */

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

.thumb,
.home-banner-swiper {
    border-radius: 10px;
    overflow: hidden;
}

.home-game-cp .thumb {
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden;
    padding: 0;
    margin-left: 20px;
    width: 210px;
    height: 160px;
    position: relative;
}

.cp_date {
    position: absolute;
    width: 50px;
    height: 24px;
    border-radius: 10px 0px 10px 0px;
    background: #24AA99;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    line-height: 24px;
}

.home-game-cp .thumb img {
    width: 210px;
    height: 120px;
}

.home-game-cp .thumb .title {
    margin-left: 0;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    background: #F7F7F7;
    color: #333333;
}

.module-title .more {
    transform: scale(2.5) translateX(-2px);
}

.module-title .title::before {
    background: linear-gradient(to bottom, #8EE1A5, #24AA99);
}

.home-information .list {
    width: 360px;
    height: 170px;
    border-radius: 10px;
    background: #F7F7F7;
    border: none !important;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 0;
}

.home-information .list .title {
    line-height: 21px;
    font-weight: bold;
}

.home-information .list .up-to-date {
    border-radius: 10px 0px 10px 0px;
    color: white;
    background: #FFBC10;
}

.home-information-list li:nth-child(1) .up-to-date {
    background: #FF1010;
}

.home-information-list li:nth-child(2) .up-to-date {
    background: #FF6610 !important;
}

.home-information .list .desc {
    margin-top: -3px;
}

.home-information .list .time,
.home-information .list .look {
    line-height: 17px;
    margin-top: 0;
}

.home-information .list .look {
    transform: scale(2.5) translateX(-3px);
}

.home-information-list {
    margin-left: 0 !important;
    justify-content: space-between;
    margin-top: -10px;
}

.home-information-list li {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.home-information-list li:nth-child(even) {
    flex-direction: row-reverse;
}

.date {
    background: #D9D9D9 !important;
}

.img_box:nth-child(1)>.date {
    background: #FF1010 !important;
}

.img_box:nth-child(2)>.date {
    background: #FF6610 !important;
}

.img_box:nth-child(3)>.date {
    background: #FFBC10 !important;
}

.color_change {
    color: #24AA99 !important;
}


/* 组件重构 */

.img_msg_box {
    height: 80px;
    padding: 20px 0;
    border-bottom: 1px solid #EDEDED;
}

.img_msg_box>a,
.img_msg_box>a>img {
    width: 130px;
    height: 80px;
    display: block;
    border-radius: 10px;
    margin-right: 14px;
}

.img_msg_box>div {
    width: 216px;
}

.img_msg_box>div>a,
.img_msg_box>div>p {
    font-size: 14px;
    line-height: 18px;
    display: block;
}

.img_msg_box>div>a {
    color: #333333;
}

.img_msg_box>div>p {
    color: #666666;
    margin-top: 10px;
}

.img_msg_box>div>span>span,
.img_msg_box>div>span>a {
    font-size: 12px;
    line-height: 16px;
    height: 16px;
    margin-top: 18px;
}

.img_msg_box>div>span>span {
    color: #999999;
}

.img_msg_box>div>span>a {
    color: #24AA99;
}

.img_msg_box>div>span>a::before,
.img_msg_box>div>span>a::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    border: 1px solid #24AA99;
    border-radius: 2px;
    margin: 0 9px 3px;
}

.img_msg_list {}

.img_msg_list>li {
    height: 48px;
    padding: 20px 0;
    flex-direction: column;
    border-bottom: 1px solid #EDEDED;
}

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

.img_msg_list>li>div>a,
.img_msg_list>li>p {
    font-size: 14px;
    height: 18px;
    line-height: 18px;
}

.img_msg_list>li>p {
    color: #666666;
}

.img_msg_list>li>div>a {
    color: #333333;
    display: inline-block;
    width: 80%;
    position: relative;
    padding-left: 16px;
}

.img_msg_list>li>div>a::before {
    position: absolute;
    margin-left: -16px;
    margin-top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #24AA99;
    display: inline-block;
    content: "";
}

.img_msg_list>li>div>span {
    font-size: 13px;
    height: 18px;
    line-height: 17px;
    color: #666666;
}

.home-information-list-img,
.home-information-list-img img {
    width: 360px;
    height: 170px;
    border-radius: 10px;
}

.footer .foot-nav ul {
    display: flex;
    justify-content: center;
}

.footer .foot-nav ul li::after {
    display: none;
}

.footer .foot-nav ul li {
    padding: 0;
    margin: 0;
}

.footer .foot-nav ul li a {
    padding: 0 5px;
    border-right: 1px solid #999999;
    height: 16px !important;
    line-height: 16px !important;
    display: inline-block;
}

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

.footer {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 14px;
    line-height: 14px;
}

.single-head {
    /*border-bottom: 1px dashed #E6E6E6 !important;*/
}

.show-news .single-head {
    min-height: 130px;
    height: 130px;
}

.pd-38 {
    padding: 38px 0 0;
}

.single-head .title2 {
    padding-top: 10px;
}

.text_in_img {
    width: 400px;
    height: 240px;
    padding: 30px 0;
    margin: 0 auto;
    display: block;
}

.text_in_img>img {
    width: 400px;
    height: 240px !important;
    background: #24AA99;
    margin: 0 !important;
    /* object-fit: cover; */
}

.xg-news .news-list .list {
    position: relative;
    padding-left: 16px !important;
}

.top_right_date {
    position: absolute;
    right: 0;
    font-size: 13px;
    line-height: 18px;
    color: #999999;
}

.newstyle_p {
    height: 18px;
    font-size: 14px;
    color: #666666;
    line-height: 18px;
    display: block;
    margin-left: -16px !important;
}

.xg-news .news-list .list .title {
    width: 85%;
}

.img_box {
    width: 360px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.img_box_num {
    display: block;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px 0 10px 0;
    width: 30px;
    color: white !important;
}

.img_box_num_next,
.img_box_num_next img {
    width: 310px;
    height: 150px;
    display: block;
    border-radius: 10px;
}

header {
    box-shadow: 0px 0px 25px rgb(158, 175, 174);
}

.location_nav {
    padding-left: 30px;
}

.location_nav span:last-child {
    color: #2f2f2f;
}

.xg-news .news-list .list::before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #D9D9D9;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #24AA99 !important;
    width: 25px !important;
}

.home-banner .home-banner-swiper .swiper-pagination {
    right: 16px !important;
    width: 87px !important;
    left: auto !important;
}

.home-information .list {
    position: relative;
}

.left_triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #F7F7F7;
    border-bottom: 10px solid transparent;
    margin-left: -30px;
    margin-top: 50px;
}

.right_triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid #F7F7F7;
    border-bottom: 10px solid transparent;
    right: 0;
    margin-right: -10px;
    margin-top: 50px;
}

.home-links li {
    display: block !important;
    margin-bottom: 16px;
}

.home-links li:last-child {
    margin-bottom: 0;
}

.show-news .single-head .info {
    justify-content: center;
    display: flex;
}

.mid_span {
    display: inline-block;
    height: 14px;
    width: 1px;
    background: #E6E6E6;
    margin: 2px 12px 0;
}

.img_box_num_next {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.img_box_num_next_date,
.img_box_num_next_msg {
    position: absolute;
    box-sizing: border-box;
}

.img_box_num_next_msg {
    font-size: 14px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 11px 15px;
    color: white;
    background: rgb(0, 0, 0, 0.6);
    line-height: 18px;
}

.img_box_num_next_date {
    right: 0;
    top: 0;
    width: 50px;
    height: 24px;
    background: #24AA99;
    border-radius: 0px 10px 0px 10px;
    color: white;
    padding: 4px 7px;
    font-size: 12px;
    line-height: 16px;
}


/* 开服表 */

table {
    border-collapse: collapse;
}

.kf-table-container {
    width: 1200px;
    margin: 0 auto;
    background: white;
    font-size: 14px;
    color: #333333;
    border-radius: 10px;
    margin-bottom: 30px;
}

.kf-table-top {
    height: 40px;
    padding: 0 20px;
}

time {
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
}

time img {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

.kf-table-top>p {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    color: #333333;
}

.kf-table-top>p>span {
    font-weight: bold;
    color: #24AA99;
    display: inline-block;
    padding: 0 5px;
}

.kf-table-top>p>span:last-child {
    padding: 0 5px 0 25px;
}

.kf-table td {
    text-align: center;
    width: inherit;
    border: none;
}

.kf-table tr {
    height: 70px !important;
    overflow: hidden;
    padding-bottom: 1px;
    border-bottom: 1px solid #E6E6E6;
}

.kf-table tr:last-child {
    border: none;
}

.kf-table tr:hover {
    background: #FFFFE8 !important;
}

.kf-table tr:nth-child(1):hover {
    background: #24AA99 !important;
}

.kf-table tr>th {
    box-sizing: border-box;
}

.kf-table tr>td:nth-child(1) {
    display: flex;
    width: 280px;
}

.kf-table tr>td:nth-child(2) {
    width: 170px;
}

.kf-table tr>td:nth-child(3) {
    width: 220px;
}

.kf-table tr>td:nth-child(4) {
    width: 140px;
}

.kf-table tr>td:nth-child(5) {
    width: 170px;
}

.kf-table tr>td:nth-child(6) {
    width: 220px;
}

.kf-table tr:nth-child(1) {
    background: #24AA99;
    color: white;
    height: 70px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 70px;
}

.kf-table tr>td:nth-child(1)>img,
.kf-table tr>td:nth-child(1)>div {
    display: inline-block;
    height: 44px;
    margin: 11px;
}

.kf-table tr>td:nth-child(1)>div {
    margin-left: 2px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.kf-table tr>td:nth-child(1)>img {
    height: 44px;
    border-radius: 17px;
    margin-left: 30px;
}

.kf-table tr>td:nth-child(1)>div>p:nth-child(1) {
    height: 21px;
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    text-align: left;
}

.kf-table tr>td:nth-child(1)>div>p:nth-child(1)>span {
    display: inline-block;
    height: 14px;
    width: 14px;
    font-size: 12px;
    background: #FF7A00;
    text-align: center;
    line-height: 14px;
    margin-left: 5px;
    color: white;
}

.kf-table tr:nth-child(n+8)>td:nth-child(1)>div>p:nth-child(1)>span {
    display: none;
}

.kf-table tr>td:nth-child(1)>div>p:nth-child(2) {
    height: 14px;
    font-size: 12px;
    color: #999999;
    line-height: 14px;
}

.kf-table tr>td:nth-child(1)>div>p:nth-child(2)>span {
    display: inline-block;
    margin: 3px 8px 0;
    width: 1px;
    background: #999999;
    height: 10px;
}

.kf-table tr:nth-child(7),
.kf-table tr:nth-child(3),
.kf-table tr:nth-child(5) {
    background: #FEFFB9;
    border-color: #FFEF98;
}

.kf-table tr:nth-child(2),
.kf-table tr:nth-child(4),
.kf-table tr:nth-child(6) {
    border-color: #FFEF98;
    background: #FEFFD2;
}

.kf-table tr>td:nth-child(6)>a {
    display: block;
    width: 110px;
    height: 36px;
    border: 1px solid #24AA99;
    border-radius: 18px;
    margin: 0 auto !important;
    text-align: center;
    font-size: 14px;
    color: #24AA99;
    line-height: 36px;
}

.kf-table tr>td:nth-child(6)>a:hover {
    background: #24AA99;
    color: white;
}


.list-game {
	width: 100% !important
}
#home_aqapps {
    margin: 30px !important
}