/*
* @Author: 叶
* @Date: 2022-03-25 18:01:06
* @LastEditors: 叶
* @EditTime: 2022-03-28 18:01:30Path: /static/css/index.css
* @Description: 主题样式文件
*/

/*颜色变量*/
:root {
    --pm-c: #0ec274;
	--dm-c: #fdeaea;
    --bg-c: #f6f9f8;
    --br-c: #f1f1f1;
}
/*颜色类*/
.b-pm {
	background-color: var(--pm-c);
}
.c-fff {
	color: #fff!important;
}
.c-pm {
	color: var(--pm-c);
}
.c-333 {
	color: #303133;
}
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}
/*修改UIKIT框架自带样式*/
body,html {
	background: var(--bg-c);
}
a,a:hover {
	text-decoration: none;
}
ol,ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*边框样式*/
.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-d-b {
	border-bottom: 1px dashed var(--br-c)!important;
}
.b-t-b {
	border-top: 1px dashed var(--br-c)!important;
}

/*图片高清*/
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;    
}

/*圆角样式*/
.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;
}

/*共用内边距*/
.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-t-5 {
	padding-top: 5px;
}
.p-t-10 {
	padding-top: 10px;
}
.p-t-15 {
	padding-top: 15px;
}
.p-t-20 {
	padding-top: 20px;
}


/*文章N行隐藏样式*/
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
/*渐变背景色*/
.gradient-bg {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, transparent 100%);
}


/*自定义通知弹窗样式*/
.uk-notification-message {}
.uk-notification-message-success {
	background: #32d296!important;
	color: #fff!important;
	font-size: 15px!important;
}
.uk-notification-message-primary {
	background: #333!important;
	color: #fff!important;
}
.uk-notification-close {
	color: #fff;
}

/*伪类居中*/
.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);
}
.before-middle {
	position: relative;
}
.before-middle::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}

.item {}
/*默认图标尺寸*/
.item .icon {
	width: 85px;
	height: 85px;
	margin: 0 auto;
	border-radius: 15px;
	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;
}

/*宽度*/
.w245 {
	width: 245px;
}
.w420 {
	width: 420px
}


/*文章列表*/
.post-list {}
.post-list li {}
.post-list li a {}

/*面包屑导航*/
.crumbs {
	font-size: 12px;
	margin: 10px 0;
}
.crumbs a {
	color: #909399;
	display: inline-block;
	position: relative;
	font-size: 12px;
}
.crumbs a::after {
	content: '>';
}
.crumbs a:last-child::after {
	display: none;
}

/*分页*/
.pagination {
	margin: 60px 0 40px 0;
	text-align: center;
}
.pagination .page-item {
	display: inline-block;
	margin: 5px;
	font-size: 14px;
	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
}

/*侧边栏*/
.sidebar {
	width: 310px;
}

/*网站头部*/
.head {
	height: 100px;
	overflow: hidden;
	background-image: url(../images/head-bg.png);
}
.head .logo {}
.head .logo a {
	display: block;
	height: 45px;
}
.head .logo a img {
	height: 100%;
}
.head .search {
	max-width: 270px;
}
.head .search .form {
	width: 100%;
	height: 40px;
	border: 1px solid #fff;
	overflow: hidden;
	
}
.head .search .form input {
	height: 100%;
	width: 100%;
	border: 0;
	text-indent: 1em;
	color: #fff;
	background: transparent;
}
.head .search .form button {
	padding: 0;
	margin: 0;
	width: 50px;
	height: 100%;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/icon/icon-search.png);
}
.head .search .form input:-moz-placeholder {  
    color: #fff
}  
.head .search .form input:-ms-input-placeholder{  
    color: #fff
}  
.head .search .form input::-webkit-input-placeholder {  
    color: #fff
}
.head .search .search-tags {
	margin-top: 5px;
	color: #fff;
}
.head .search .search-tags a {
	font-size: 12px;
	margin-right: 10px;
	color: #fff;
}
/*顶部导航条*/
.navbar {}
.navbar .nav {
	padding-top: 20px;
	padding-bottom: 30px;
}
.navbar .nav ul {}
.navbar .nav ul li {
	display: inline-block;
	text-align: center;
	margin-right: 46px;
}
.navbar .nav ul li a {
	display: block;
	font-size: 17px;
	position: relative;
	color: #686868;
}
.navbar .nav ul li a::before {
	content: '';
	display: block;
	width: 38px;
	height: 35px;
	margin: 0 auto;
	margin-bottom: 18px;
	background-repeat: no-repeat;
	background-position: center;
	filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .4;
}
.navbar .nav ul li:nth-child(1) a::before {
	background-image: url(../images/icon/icon-nav-01-active.png);
}
.navbar .nav ul li:nth-child(2) a::before {
	background-image: url(../images/icon/icon-nav-02-active.png);
}
.navbar .nav ul li:nth-child(3) a::before {
	background-image: url(../images/icon/icon-nav-03-active.png);
}
.navbar .nav ul li:nth-child(4) a::before {
	background-image: url(../images/icon/icon-nav-04-active.png);
}
.navbar .nav ul li:nth-child(5) a::before {
	background-image: url(../images/icon/icon-nav-05-active.png);
}
.navbar .nav ul li:nth-child(6) a::before {
	background-image: url(../images/icon/icon-nav-06-active.png);
}
.navbar .nav ul li:nth-child(7) a::before {
	background-image: url(../images/icon/icon-nav-07-active.png);
}
.navbar .nav ul .active a {
	font-weight: bold;
	color: var(--pm-c);
}
.navbar .nav ul .active a::before {
	filter: none !important;
	opacity: 1;
}
.navbar .nav ul li a:hover {
	font-weight: bold;
	color: var(--pm-c);
}
.navbar .nav ul li a:hover::before {
	filter: none !important;
	opacity: 1;
}

.navbar .nav-sub {
	width: 280px;
}
.navbar .nav-sub ul {
	padding-left: 35px;
}
.navbar .nav-sub ul li {
	width: 33.33%;
	float: left;
}
.navbar .nav-sub ul li a {
	margin: 6px 0;
	display: block;
	color: #666;
}


.part-title {}
.part-title .title {
	font-size: 18px;
	color: #333;
}
.part-title .more {
	color: #999;
	font-size: 14px;
}
.part-title .more::after {
	content: '+';
	color: var(--pm-c);
}

/*首页顶部推荐*/
.home-topRecom {
	border-top: 1px solid var(--pm-c) !important
}
.home-topRecom .item {
	width: 10%;
}
.home-topRecom .icon {
	width: 85px;
	height: 85px;
}
.home-topRecom .title {
	max-width: 85px;
	margin: 8px auto;
	font-size: 14px;
}
.home-topRecom .recom-type {
	background-color: #f6f9f8;
	padding: 10px;
}
.home-topRecom .recom-type ul {
	white-space:nowrap;
	overflow: hidden;
	margin-bottom: 12px;
}
.home-topRecom .recom-type ul:last-child {
	margin-bottom: 0;
}
.home-topRecom .recom-type ul li {
	display: inline-block;
	margin-right: 10px;
}
.home-topRecom .recom-type ul li span {
	color: var(--pm-c);
	border: 1px solid var(--pm-c);
	font-size: 14px;
	padding: 2px 6px;
	display: inline-block;
}
.home-topRecom .recom-type ul li a {
	padding-right: 12px;
	color: #777;
}
.home-topRecom .recom-type ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	width: 1px;
	height: 12px;
	background: #c2c2c2;
}
.home-topRecom .recom-type ul li:last-child {
	margin: 0;
}
.home-topRecom .recom-type ul li:last-child::after {
	display: none;
}

.home-grid {}
.home-atest .item {
	text-align: center;
	margin-bottom: 20px;
}
.home-atest .item .title {
	margin-bottom: 10px;
}
.home-atest .item .title a {
	font-weight: bold;
	font-size: 18px;
	color: var(--pm-c);
}
.home-atest .post-list {
	margin-top: 20px;
	border-top: 1px dashed var(--br-c);
}
.home-atest .post-list li {
	margin-top: 15px;
}
.home-atest .post-list li a {
	display: block;
	flex: 1;
	padding-left: 15px;
	font-size: 16px;
}
.home-atest .post-list li a::after {
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--pm-c);
}
.home-slide {}
.home-slide .uk-slideshow-items {
	min-height: 280px !important
}
.home-slide .cover {
	background: rgba(0, 0, 0, 0.6);
}
.home-slide .cover a,
.home-slide .cover span {
	max-width: 90%;
	font-size: 16px;
	display: block;
	padding: 12px;
	color: #fff;
}
.hot-search {}
.hot-search ul {
	    margin-left: -8px;
}
.hot-search ul >* {
    padding-left: 8px;
}
.hot-search ul .uk-grid-margin {
    margin-top: 8px;
}
.hot-search ul li {
	width: 25%;
	overflow: hidden;
}
.hot-search ul li a {
	display: block;
	padding: 15px 12px;
	background: #f7f7f7;
	font-size: 13px;
	color: #666;
	position: relative;
	
}
.hot-search ul li a span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.hot-search ul li:nth-child(-n+3) {
	width: 33.333%;
}
.hot-search ul li:nth-child(-n+3) span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hot-search ul li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top-width: 20px;
	border-top-style: solid;
	border-right-width: 20px;
	border-right-style: solid;
	border-right-color: transparent;
	transition: all .3s;
	border-top-color: #ffaf51;
}
.hot-search ul li a:hover::after {
	right: 0;
	border-top-width: 200px;
	border-right-width: 200px;
}
.hot-search ul li:nth-child(1) a::after {
	border-top-color: #ffaf51;
}
.hot-search ul li:nth-child(2) a::after {
	border-top-color: #0ec274;
}
.hot-search ul li:nth-child(3) a::after {
	border-top-color: #ff6738;
}
.hot-search ul li:nth-child(4) a::after {
	border-top-color: #38c9f8;
}
.hot-search ul li:nth-child(5) a::after {
	border-top-color: #fd7373;
}
.hot-search ul li:nth-child(6) a::after {
	border-top-color: #9486ff;
}
.hot-search ul li:nth-child(7) a::after {
	border-top-color: #31b9c2;
}
.hot-search .uk-slider-items {}
.hot-search .uk-slider-items>* {
	 padding-left: 8px;
}
.hot-search .thumb {
	height: 102px;
	background: #000;
}
.hot-search .cover {
	display: none;
	padding: 10px;
}
.hot-search .thumb:hover .cover {
	display: block;
}
.hot-search .thumb:hover img {
	opacity: 0.6;
}
.hot-search ul li a:hover span {
	z-index: 50;
	color: #fff;
	position: relative;
}
.hot-search ul li a:before {
    content: '+';
    position: absolute;
    top: 0;
    left: 2px;
    color: #fff;
    z-index: 10;
    line-height: 11px;
    font-size: 12px;
}


/*首页精选推荐*/
.home-jxRecom {
	background-image: url(../images/jxRecom-bg.png);
	background-repeat: repeat-x;
}
.home-jxRecom .part-title {
	height: 25px;
	background-image: url(../images/jxRecom-title.png);
	background-repeat: no-repeat;
	background-position: center;
}

.home-jxRecom .item {
	padding-bottom: 20px;
	margin-top: 20px;
	border-bottom: 1px dashed var(--br-c);
}
.home-jxRecom .item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: 0;
}
.home-jxRecom .title {
	font-size: 16px;
	margin-bottom: 5px;
}
.home-jxRecom .icon {
	width: 55px;
	height: 55px;
}


.home-downs {}
.home-downs .down-switch {}
.home-downs .down-switch .switch-menu {
	list-style: none;
	padding: 0;
	padding-right: 25px;
}
.home-downs .down-switch .switch-menu li {
	text-align: center;
	margin-bottom: 10px;
}
.home-downs .down-switch .switch-menu li::after {
	width: 7px;
	height: 7px;
	right: -32px;
	background: #fff;
	border: 3px solid var(--pm-c);
	border-radius: 50%;
	display: none;
}
.home-downs .down-switch .switch-menu .uk-active::after {
	display: block;
}
.home-downs .down-switch .switch-menu li span {
	display: block;
	width: 105px;
	line-height: 45px;
	cursor: pointer;
	background-color: #f7f7f7;
	position: relative;
}
	
.home-downs .down-switch .switch-menu li span::after {
	left:100%;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-left: 7px solid #effcf6;
	border-bottom: 5px solid transparent;
	display: none;
}
.home-downs .down-switch .switch-menu .uk-active span {
	background: #effcf6;
	color: var(--pm-c);
}
.home-downs .down-switch .switch-menu .uk-active span::after {
	display: block;
}
.home-downs .down-switch .switch-warp {
	margin-top: 0;
}
.home-downs .down-switch .switch-warp .item {
	width: 12.5%;
}
.home-downs .down-switch .switch-warp .icon {
	width: 70px;
	height: 70px;
}
.home-downs .down-switch .switch-warp .title {
	margin: 10px 0;
}
.home-downs .down-switch .switch-warp .title a {
	color: #666;
}
.home-downs .down-switch .switch-warp .down-btn {}
.home-downs .down-switch .switch-warp .down-btn a {
	display: inline-block;
	color: var(--pm-c);
	border: 1px solid var(--pm-c);
	padding: 3px 20px;
	font-size: 13px;
}
.home-downs .down-switch .switch-warp .down-btn:hover a {
	background-color: var(--pm-c);
	color: #fff;
}
.home-downs .down-switch .switch-warp >.uk-grid-margin {
    margin-top: 40px;
}

.switch-list {}
.switch-list .item {
	margin-top: 19px;
}
.switch-list .item .item-card {
	padding: 15px;
	display: none;
}
.switch-list .item .item-card .bg {
	opacity: .2;
}
.switch-list .item .item-card .title {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.switch-list .item .item-card .title a {
	font-size: 17px;
	color: #333;
}
.switch-list .item .item-card .desc {
	margin-top: 10px;
}

.switch-list .item .item-list {}
.switch-list .item .item-list a {
	display: block;
	flex: 1;
}
.switch-list .active .item-card {
	display: block;
}
.switch-list .active .item-list {
	display: none;
}


/*首页游戏推荐*/
.home-gameRecom {}
.home-gameRecom .recom-item {}
.home-gameRecom .recom-item .thumb {
	width: 135px;
	height: 190px;
}
.home-gameRecom .recom-item .title {
	padding: 12px;
}
.home-gameRecom .recom-item .title a {
	display: block;
	flex: 1;
	font-size: 16px;
}
.home-gameRecom .recom-item .desc {
	font-size: 14px;
	line-height: 28px;
}
.home-gameRecom .recom-item .score {
	border: 1px solid var(--pm-c);
	width: 90px;
	margin-left: 30px;
}
.home-gameRecom .recom-item .score b {
	font-size: 28px;
}
.home-gameRecom .recom-item .score .foot {
	padding: 5px;
	font-size: 13px;
}
.home-gameRecom .recom-item .data .hr {
	margin: 0 10px;
}
.home-gameRecom .recom-item .post-list li a {
	position: relative;
	padding-left: 15px;
}
.home-gameRecom .recom-item .post-list li a::after {
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--pm-c);
}


/*首页排行榜*/

.home-rank {}
.home-rank .rank-item {}
.home-rank .rank-item .rank-title {
	height: 35px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/rank-item-title-01.png);
}
.home-rank .rank-item-02 .rank-title {
	background-image: url(../images/rank-item-title-02.png);
}
.home-rank .rank-item-03 .rank-title {
	background-image: url(../images/rank-item-title-03.png);
}
.home-rank .rank-item-04 .rank-title {
	background-image: url(../images/rank-item-title-04.png);
}
.home-rank .rank-item .switch-list .item-card {
	padding: 0;
}
.home-rank .rank-item  .num {
	width: 22px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	background: #dcdcdc;
	color: #fff;
	border-radius: 50%;
	margin-right: 15px;
}
.home-rank .rank-item-01 .item:nth-child(-n+3) .num {
	background: var(--pm-c);
}
.home-rank .rank-item-02 .item:nth-child(-n+3) .num {
	background: #fbbf3d;
}
.home-rank .rank-item-03 .item:nth-child(-n+3) .num {
	background: #37beea;
}
.home-rank .rank-item-04 .item:nth-child(-n+3) .num {
	background: #fc7b7b;
}
.home-rank .rank-item .switch-list .item-title {
	display: block;
	font-size: 16px;
	flex: 1;
}
.home-rank .rank-item .switch-list .item-card .icon {
	width: 95px;
	height: 95px;
}
.home-rank .rank-item .switch-list .item-card ul {}
.home-rank .rank-item .switch-list .item-card ul li {
	margin-bottom: 5px;
	color: #666;
	font-size: 14px;
}
.home-rank .rank-item .switch-list .item-card .down-btn {
	margin-top: 15px;
}
.home-rank .rank-item .switch-list .item-card .down-btn a {
	display: inline-block;
	padding: 6px 20px;
	font-size: 14px;
}
.home-rank .rank-item-01 .item-card .down-btn a {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
}
.home-rank .rank-item-02 .item-card .down-btn a {
	color: #fbbf3d;
	border: 1px solid #fbbf3d
}
.home-rank .rank-item-03 .item-card .down-btn a {
	color: #37beea;
	border: 1px solid #37beea
}
.home-rank .rank-item-04 .item-card .down-btn a {
	color: #fc7b7b;
	border: 1px solid #fc7b7b
}
.home-rank .rank-item .switch-list .item-list i {
	display: inline-block;
	width: 12px;
	height: 13px;
	background-image: url(../images/icon/icon-arrow-dowm.png);
}
.home-rank .rank-item .switch-list .active .item-title {
	font-weight: bold;
}

/*首页图集*/
.home-images {}
.home-images .item {
	height: 310px;
}
.home-images .uk-grid-small {
    margin-left: -10px;
}
.home-images .uk-grid-small>* {
	padding-left: 10px;
}
.home-images .item .thumb {
	height: 150px;
	display: block;
	position: relative;
	margin-bottom: 10px;
}

/*首页视频*/
.home-video {}
.home-video .item {
	height: 150px;
	background: #000;
}
.home-video .item img {
	opacity: .6;
}
.home-video .item::after {
	display: inline-block;
	width: 65px;
	height: 52px;
    top: 50%;
	left: 50%;
    transform: translate(-50%,-50%);
	background-image: url(../images/icon/icon-video-btn.png);
	background-repeat: no-repeat;
}
.home-video .post-list li {
	margin-top: 18px;
}
.home-video .post-list li a {
	padding-left: 15px;
	display: block;
	flex: 1;
}
.home-video .post-list li a::after {
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--pm-c);
}
/*首页最近更新*/
.home-updates {}
.home-updates ul {}
.home-updates ul li {
	margin-bottom: 15px;
}
.home-updates ul li:last-child {
	margin-bottom: 0;
}
.home-updates ul li span {
	font-size: 14px;
	margin-left: 15px;
}
.home-updates ul li a {
	display: block;
	font-size: 14px;
	flex: 1;
	padding-left: 10px;
}

/*首页友情链接*/
.home-links {
	border-top: 1px solid var(--pm-c) !important;
}
.home-links a {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	margin-right: 10px;
	font-size: 12px;
	color: #999;
}
.home-links a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	display: inline-block;
	height: 10px;
	width: 1px;
	background: #aaa;
}
.home-links a:last-child::after {
	display: none;
	margin-right: 0;
	padding-right: 0;
}


/*列表页*/
.category {}

/*下载列表页*/
.category-download {}

/*推荐下载*/
.recom-download {
	margin: -5px;
	padding: 5px;
}
.recom-download .item {
	padding: 12px;
	position: relative;
}
.recom-download .item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 112px;
	height: 112px;
	background-size: 100%;
	margin: -5px;
	background-image: url(../images/recom-download-marker.png);
}
.recom-download .uk-slider-items>div:nth-child(1) .item::after {
	background-position: 0 -112px;
}
.recom-download .uk-slider-items>div:nth-child(2) .item::after {
	background-position: 0 -224px;
}
.recom-download .uk-slider-items>div:nth-child(3) .item::after {
	background-position: 0 -112px;
}
.recom-download .uk-slider-items>div:nth-child(5) .item::after {
	background-position: 0 -112px;
}
.recom-download .item .thumb {
	height: 260px;
}
.recom-download .item .item-foot {
	margin-top: 15px;
	margin-bottom: 5px;
}
.recom-download .item .title {
	display: block;
	font-weight: bold;
	flex: 1;
	font-size: 16px;
}

/*分类菜单*/
.category-menu {}
.category-menu ul {
	overflow: hidden;
	margin: -4px;
}
.category-menu ul li {
	display: inline-block;
	text-align: center;
	display: inline-block;
}
.category-menu ul li a {
	width: 110px;
	display: block;
	line-height: 45px;
	background-color: #f6f8f7;
	border-radius: 6px;
	margin: 4px;
	color: #666;
}
.category-menu ul li:hover a {
	background: var(--pm-c);
	color: #fff;
}
.category-menu ul .active a {
	background: var(--pm-c);
	color: #fff;
	font-size: 16px;
	margin: 0;
}
.category-menu ul .active h1 {
	margin: 0;
}

.category-download .download-warp {}
.category-download .download-warp .item {
	position: relative;
}
.category-download .download-warp .item:hover {
	border: 1px solid var(--pm-c) !important
}
.category-download .download-warp .icon {
	width: 90px;
	height: 90px;
}
.category-download .download-warp .title {
	font-size: 16px;
}
.category-download .download-warp .desc {
	margin-top: 15px;
	font-size: 14px;
}
.category-download .download-warp .down-btn {
	display: inline-block;
	width: 21px;
	height: 18px;
	background-image: url(../images/list-down-icon.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	margin: 15px
}
.category-download .download-warp .down-btn a {
	display: inline-block;
	width: 65px;
	height: 65px;
	text-align: center;
	line-height: 65px;
	background: #e6f9f1;
	border-radius: 33px;
	color: var(--pm-c);
	font-size: 16px;
	font-weight: bold;
}
.category-download .download-warp .item:hover .down-btn a {
	background: var(--pm-c);
	color: #fff;
}

/*资讯列表页*/
.category-news {}
.category-news .news-warp {}
.category-news .news-warp .item {
	margin: 20px 0;
}
.category-news .news-warp .item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.category-news .news-warp .item-main {
	flex: 1;
}
.category-news .news-warp .thumb {
	width: 185px;
	height: 125px;
}
.category-news .news-warp .title {
	font-size: 16px;
}
.category-news .news-warp .title a {
	display: block;
}
.category-news .news-warp .title span {
	border: 1px solid var(--pm-c);
	font-size: 12px;
	color: var(--pm-c);
	line-height: normal;
	padding: 2px 6px;
	margin-left: 10px;
}
.category-news .news-warp .icon-time {
	background-image: url(../images/icon/icon-time.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 20px;
}
.category-news .news-warp .desc {
	line-height: 30px;
	border-bottom: 1px dashed #ddd;
	padding-bottom: 20px;
}
.category-news .news-warp .item:hover .desc {
	border-bottom: 1px dashed var(--pm-c);
}
.category-news .news-warp .item:hover .title a {
	color: var(--pm-c);
}

/*专辑列表页*/

.category-zhuanji {}
.category-zhuanji .zhuanji-warp {}
.category-zhuanji .zhuanji-warp .item {
	border-top: 1px solid var(--pm-c) !important;
}
.category-zhuanji .zhuanji-warp .thumb {
	height: 142px;
	width: 200px;
	border-radius: 15px;
}
.category-zhuanji .zhuanji-warp .title {
	font-size: 22px;
	margin-bottom: 20px;
}
.category-zhuanji .zhuanji-warp .desc {
	line-height: 28px;
	margin: 15px 0;
}
.category-zhuanji .zhuanji-warp .info {}
.category-zhuanji .zhuanji-warp .info span {
	text-align: center;
	display: inline-block;
	line-height: 28px;
	background-color: #f0fafc;
	color: #29b6cf;
	font-size: 13px;
	padding: 0 15px;
	margin-right: 5px;
} 
.category-zhuanji .zhuanji-warp .info span:nth-child(2) {
	color: #ff8a4a;
	background-color: #fff7f2;
}
.category-zhuanji .zhuanji-warp .info span:nth-child(3) {
	color: #728ef7;
	background-color: #f5f7fe;
}
.category-zhuanji .zhuanji-warp .game-list {
	width: 420px;
}
.category-zhuanji .zhuanji-warp .game-list .icon {
	width: 60px;
	height: 60px;
	border-radius: 50% !important;
	border: 4px solid #fff;
	transition: all .2s;
}
.category-zhuanji .zhuanji-warp .game-list .icon:hover {
	transform: scale(1.4);
}
.category-zhuanji .zhuanji-warp .game-list .more {}
.category-zhuanji .zhuanji-warp .game-list .more a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/icon/icon-arrow-zhuanji.png);
	background-color: #f5f5f5;
	background-position: center;
	background-repeat: no-repeat;
	transition: all .3s;
}
.category-zhuanji .zhuanji-warp .game-list .more:hover a {
	background-color: var(--pm-c);
}
.category-zhuanji .zhuanji-warp .game-list .more:hover a {
	background-image: url(../images/icon/icon-arrow-zhuanji-w.png);
	background-color: var(--pm-c);
}
.zhuanji-warp .uk-grid>div .item {
	position: relative;
}
.zhuanji-warp .uk-grid>div .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 112px;
	height: 112px;
	background-size: 100%;
	margin: -6px;
	
}
.zhuanji-warp .uk-grid>div:nth-child(1) .item:after {
	background-image: url(../images/recom-download-marker.png);
	background-position: 0 -112px;
}
.zhuanji-warp .uk-grid>div:nth-child(2) .item:after {
	background-image: url(../images/recom-download-marker.png);
	background-position: 0 -224px;
}
.zhuanji-warp .uk-grid>div:nth-child(3) .item:after {
	background-image: url(../images/recom-download-marker.png);
}

/*横条推荐*/
.recomBar {
	height: 120px;
	padding-left: 90px;
	background-image: url(../images/recomBar-title.png);
	background-repeat: no-repeat;
	background-position: 20px;
}
.recomBar>div {
	width: 100%;
}
.recomBar .item {
	width: 10%;
	margin-right: 15px;
	text-align: center;
}
.recomBar .item .icon {
	width: 85px;
	height: 85px;
	margin-bottom: 10px;
}
.recomBar .uk-slider-items {}

/*礼包详情页*/
.category-gift {}
.category-gift .gift-warp {}
.category-gift .gift-warp .item {}
.category-gift .gift-warp .item:hover {
	border: 1px solid var(--pm-c) !important
}
.category-gift .gift-warp .title {
	margin-bottom: 10px;
}
.category-gift .gift-warp .title a {
	font-size: 16px;
	font-weight: bold;
}
.category-gift .gift-warp .item:hover .title a {
	color: var(--pm-c);
}
.category-gift .gift-warp .icon {
	width: 90px;
	height: 90px;
}
.category-gift .gift-warp .down-btn {}
.category-gift .gift-warp .down-btn a {
	display: inline-block;
	width: 65px;
	height: 65px;
	text-align: center;
	line-height: 65px;
	border-radius: 50%;
	border: 3px solid var(--pm-c);
	font-weight: bold;
	font-size: 16px;
	color: var(--pm-c);
}
.category-gift .gift-warp .item:hover .down-btn a {
	background: #e6f9f1;
}

/*图集列表页*/
.category-images {}
.category-images .thumb {
	background: #000;
	position: relative;
}
.category-images .thumb::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 48px;
	height: 42px;
	background-image: url(../images/icon/icon-video-btn.png);
	background-repeat: no-repeat;
	background-size: 100%;
	visibility: hidden;
}
.category-images .thumb:hover::after {
	    visibility: initial;
}
.category-images .thumb:hover img {
	opacity: .5;
}

/*文章页*/
.single {}
.single .single-head {}
.single .single-head h1 {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 30px;
}
.single .single-warp {
	padding: 25px;
}
.single .single-content {
	padding-top: 30px
}
.single .single-content p {
	text-indent: 2em;
	line-height: 36px;
}
.single .single-content p img {
	display: block;
	max-width: 86% !important;
	height: auto !important;
	margin: 0 auto;
}
.single .single-content h2,
.single .single-content h3 {
	position: relative;
	font-weight: bold;
	font-size: 16px;
	margin: 15px 0;
	color: var(--pm-c);
	padding-left: 30px;
	color: #333;
}
.single .single-content h2:before,
.single .single-content h3:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--pm-c);
}
.single .single-content strong {
	position: relative;
	font-weight: bold;
	font-size: 16px;
	margin: 15px 0;
	color: var(--pm-c);
	padding-left: 30px;
	color: #333;
}
.single .single-content strong:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--pm-c);
}
.single .single-content iframe {
	display: block;
	margin: 0 auto;
}
/*资讯文章页*/
.single-news {}
.single-news .single-head {
	padding-bottom: 35px;
	border-bottom: 1px dashed #ddd
}

/*下载文章页*/
.single-download {}
.single-download .single-head {}
.single-download .single-head h1 {
	font-size: 24px
}
.single-download .single-head .icon {
	width: 130px;
	height: 130px
}
.single-download .single-head .icon img {
	width: 100%;
	height: 100%;
}
.single-download .single-head .data {
	font-size: 16px;
	color:#333;
}
.single-download .single-head ul {
	max-width: 510px;
}
.single-download .single-head ul li {
	font-size: 16px;
	color: #333;
}
.single-download .single-head ul .uk-grid-margin {
	margin-top: 20px !important;
}

.single-download .single-head .head-rank {
	width: 180px;
	height: 217px;
	position: absolute;
	right: 40px;
	background-image: url(../images/head-game-rank.png);
}


.single-download .down-btn {}
.single-download .down-btn .none {
	filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%) !important;
	opacity: .2;
}
.single-download .down-btn .btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 207px;
	height: 60px;
	line-height: 60px;
	border-radius: 10px;
	font-size: 18px;
	cursor: pointer;
	margin-right: 20px;
	background-color: #ffb849;
	color: #fff;
}
.single-download .down-btn .btn a {
	color: #fff;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.single-download .down-btn .btn i {
	width: 30px;
	height: 26px;
	background-repeat: no-repeat;
	margin-right: 15px;
	background-image: url(../images/icon/icon-single-down-btn.png);
}

.single-download .down-btn .az i {
	height: 28px;
	background-image: url(../images/icon/icon-single-down-az.png);
}
.single-download .down-btn .ios i {
	height: 28px;
	background-image: url(../images/icon/icon-single-down-ios.png);
}
.single-download .down-btn .h5 i {
	height: 28px;
	background-image: url(../images/icon/icon-single-down-h5.png);
}

.single-download .down-btn .gift i {
	background-image: url(../images/icon/icon-single-down-gift.png);
}
.single-download .down-btn .gift span{
  cursor: pointer;
}
.single-download .down-btn .ewm {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	width: 99%;
	transform: translateY(-0px);
	text-align: center;
	box-shadow: 0px 0px 7px 0px #bcbcbc;
	z-index: 10
}
.single-download .down-btn .btn:hover .ewm {
	display: block;
}
.single-download .down-btn .ewm img {
	margin: 10px 0;
}
.single-download .down-btn .ewm>p>img{
	margin:0;
}
.single-download .down-btn .ewm p {
	color: #999 !important;
	font-size: 14px;
	margin-bottom: 15px;
	margin-top: 0;
	line-height: normal;
}
.single-title {
	font-size: 16px;
}
.single-title .bg {
	height: 10px;
	background-image: url(../images/swiper-slide-title.bg.png);
}
.download-slide .swiper-container {
	overflow: hidden;
	position: relative;
	margin: 20px 40px;
	padding: 30px 0;
}
.download-slide .swiper-slide {
	text-align: center;
}
.download-slide .swiper-container .thumb {
	background-color: #000;
}
.download-slide .swiper-container .thumb img {
	opacity: .8;
}
.download-slide .swiper-container .swiper-slide-active {
	z-index: 10;
}
.download-slide .swiper-container .swiper-slide-active .thumb {
	transform: scale(1.2);
}
.download-slide .swiper-container .swiper-slide-active .thumb img {
	opacity: 1;
}

.download-slide .swiper-wrapper {
	height: auto;
	padding-top: 20px;
}
.download-slide .swiper-button-prev,
.download-slide .swiper-button-next{
	transform: translate(0, -50%);
	display: inline-block;
	width: 28px;
	height: 49px;
	background-image: url(../images/icon/icon-download-slide-arrow.png);
}
.download-slide .swiper-button-next {
	transform: translate(0, -50%) rotate(180deg) 
}
.download-slide .swiper-button-prev::after,
.download-slide .swiper-button-next::after{
	display: none;
}
.link-keywords {
	color: var(--pm-c);
}
/*礼包文章页*/
.single-gift {}
.single-gift .gift-ewm {
	width: 130px;
	text-align: center;
}
.single-gift .gift-ewm img {
	width: 100%;
}
.single-gift .gift-ewm p {
	margin: 0;
	color: #999;
	font-size: 14px;
}
#modal-gift .uk-modal-dialog {
	background: transparent;
	width: auto;
}
.modal-gift {
	width: 290px;
	height: 270px;
	margin: 0 auto;
	background-image: url(../images/modal-gift-bg.png);
	background-repeat: no-repeat;
	overflow: hidden;
}
.modal-gift .gift-code {
	margin: 0 auto;
	margin-top: 130px;
	width: 215px;
	padding: 0 10px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	background-image: url(../images/modal-gift-code-bg.png);
}
.modal-gift .gift-btn {
	width: 180px;
	margin: 15px auto;
	background-color: #fcf066;
	line-height: 46px;
	border-radius: 20px;
	font-size: 18px;
	color: #de3f48;
	text-align: center;
	cursor: pointer;
}


/*文章页游戏推荐*/
.single .single-recom-game {
	background-color: #f1f5f4;
	position: relative;
}
.single .single-recom-game .recom-title {
	width: 175px;
	height: 36px;
	margin: 0 auto;
	margin-top: -9px;
	background-image: url(../images/single-recom-game-title.png);
	background-repeat: no-repeat;
}
.single .single-recom-game .icon {
	width: 100px;
	height: 100px;
}
.single .single-recom-game .title {
	font-size: 16px;
}
.single .single-recom-game .ewm {
	width: 105px;
}

/*文章页相关文章*/
.single .xg-article {}
.single .xg-article ul {
	margin-bottom: -15px;
}
.single .xg-article ul li {
	border-bottom: 1px dashed var(--br-c);
}
.single .xg-article ul li:hover {
	background-color: #edf4f1;
}
.single .xg-article ul li:last-child {
	border: 0 !important;
}
.single .xg-article ul li a  {
	display: block;
	flex: 1;
	padding: 15px;
	font-size: 16px;
}
.single .xg-article ul li a::after {
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--pm-c);
}
.single .xg-article ul li:last-child a {
	margin-bottom: 0;
}

.single .xg-article .gift-list a {
	padding-left: 25px;
	flex: unset;
	display: inline-block;
}
.single .xg-article .gift-list .desc {
	text-align: center;
	margin: 0 30px;
}
.single .xg-article .gift-list a::after {
	left: 0;
	width: 15px;
	height: 15px;
	background: transparent;
	background-image: url(../images/icon/icon-list-gift.png);
}

/*专辑文章页*/
.single-zhuanji {}
.single-zhuanji .zhuanji-head {
	border-top: 1px solid var(--pm-c);
}
.single-zhuanji .zhuanji-head .head-title {
	top: 12px;
	width: 460px;
	height: 52px;
	background-image: url(../images/zhuanji-head-title.png);
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
}
.single-zhuanji .zhuanji-head .head-title h1 {
	display: inline-block;
	width: 260px;
	height: 100%;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin: 0;
	line-height: 40px;
}
.single-zhuanji .zhuanji-head .thumb {
	height: 165px;
	width: 300px;
}
.single-zhuanji .zhuanji-head .desc {
	font-size: 15px;
	line-height: 32px;
	letter-spacing: 1px;
}
.single-zhuanji .zhuanji-head .info span {
	text-align: center;
	display: inline-block;
	line-height: 28px;
	background-color: #f0fafc;
	color: #29b6cf;
	font-size: 13px;
	padding: 0 15px;
	margin-right: 5px;
} 
.single-zhuanji .zhuanji-head .info span:nth-child(2) {
	color: #ff8a4a;
	background-color: #fff7f2;
}
.single-zhuanji .zhuanji-head .info span:nth-child(3) {
	color: #728ef7;
	background-color: #f5f7fe;
}

.single-zhuanji .zhuanji-head .xg-zhuanji {
	padding-top: 40px;
	color: #686868;
}
.single-zhuanji .zhuanji-head .xg-zhuanji a {
	display: inline-block;
	border: 1px solid #eee;
	padding: 5px 10px;
	font-size: 13px;
	color: #686868;
}
.single-zhuanji .zhuanji-head .xg-zhuanji a:hover {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
}

.single-zhuanji .zhuanji-warp {}
.single-zhuanji .zhuanji-warp .item {
}
.single-zhuanji .zhuanji-warp .item:hover {
	border: 1px solid var(--pm-c) !important;
}

.single-zhuanji .zhuanji-warp .item .icon {
	width: 90px;
	height: 90px;
}
.single-zhuanji .zhuanji-warp .item .title {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}
.single-zhuanji .zhuanji-warp .item .desc {
	line-height: 32px;
}
.single-zhuanji .zhuanji-warp .item .thumb {
	width: 360px;
}
.single-zhuanji .zhuanji-warp .item .thumb .thumb-item {
	height: 180px;
}
.single-zhuanji .zhuanji-warp .item .thumb .uk-grid-small {
	margin-left: 10px;
}
.single-zhuanji .zhuanji-warp .item .thumb .uk-grid-small>* {
    padding-left: 10px;
}
.single-zhuanji .zhuanji-warp .item .down-btn {}
.single-zhuanji .zhuanji-warp .item .down-btn a {
    display: block;
	text-align: center;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background: #e6f9f1;
    border-radius: 4px;
    color: var(--pm-c);
    font-size: 16px;
    font-weight: bold;
}
.single-zhuanji .zhuanji-warp .item:hover .down-btn a {
	background: var(--pm-c);
	color: #fff;
}

/*文章页相关下载*/
.xg-download {}
.xg-download .icon {
	width: 75px;
	height: 75px;
}
.xg-download .title {
	font-size: 16px;
}
.xg-download .down-btn a {
	display: inline-block;
	background: var(--pm-c);
	border-radius: 4px;
	padding: 4px 8px;
	color: #fff;
}
/*侧边栏*/
.side-timeAxis {}
.side-timeAxis .item {
	margin-bottom: 20px;
}
.side-timeAxis .item:last-child {
	margin-bottom: 0;
}
.side-timeAxis .item::after {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pm-c);
	left: -3px;
}
.side-timeAxis .item span {
	margin-left: 15px;
	font-size: 14px;
	color: #999;
}
.side-timeAxis .title {
	margin-bottom: 5px;
}
.side-timeAxis .thumb {
	width: 90px;
	height: 60px;
	margin: 0 10px;
}
.side-timeAxis .icon  {
	width: 60px;
	height: 60px;
	margin: 0 10px;
}

.side-timeAxis .desc {
	line-height: 30px;
}

.side-gamesList {}
.side-gamesList .item {
	margin-bottom: 20px;
}
.side-gamesList .icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.side-gamesList .down-btn a {
	display: inline-block;
	border: 1px solid var(--pm-c);
    border-radius: 4px;
    font-size: 14px;
    padding: 4px 10px;
    color: var(--pm-c);
}
.side-albums {}
.side-albums .uk-grid-small {
	margin-left: -12px;
}
.side-albums .uk-grid-small>* {
    padding-left: 12px;
}
.side-albums .thumb {
	height: 78px;
	margin-bottom: 5px;
}
.side-albums a {
	font-size: 14px;
	color: #666;
}
.side-albums ul {}
.side-albums ul li {
	margin-top: 15px;
}
.side-albums ul li a {
	font-size: 15px;
	color: #333;
	display: block;
	flex: 1;
	position: relative;
	padding-left: 15px;
}
.side-albums ul li a::after {
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--pm-c);
}

.side-rankList {}
.side-rankList .post-list {}
.side-rankList .post-list li {
	margin-top: 15px;
}
.side-rankList .post-list a {
	display: block;
	flex: 1;
}
.side-rankList .post-list .num {
	display: inline-block;
	width: 20px;
	background-color: #bfc7c2;
	text-align: center;
	list-style: 20px;
	color: #fff;
	margin-right: 10px;
}
.side-rankList .post-list li:nth-child(1) .num {
	background-color: #ff6767;
}
.side-rankList .post-list li:nth-child(2) .num {
	background-color: #ff894f;
}
.side-rankList .post-list li:nth-child(3) .num {
	background-color: #ffaf31;
}


/*单页面*/
.page {}
.page .page-menu {
	padding-bottom: 30px;
	padding-top: 10px;
	
}
.page .page-menu .item {
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}
.page .page-menu .active {
	position: relative;
}
.page .page-menu .active::after {
	content: '';
	position: absolute;
	left: 41%;
	transform: translateY(30px) translate(5px,-50%);
	width: 6px;
	height: 6px;
	background: #fff;
	border: 3px solid var(--pm-c);
	border-radius: 50%;
}
.page .page-menu .item a {
	position: relative;
	display: block;
	font-size: 16px;
	color: #666;
	line-height: 45px;
	padding: 0 20px;
	background-color: #f6f8f7;
	border-radius: 6px;
}
.page .page-menu .active a {
	background-color: var(--pm-c);
	color: #fff;
}
.page .page-menu .active a::after {
	bottom: -8px;
	display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--pm-c);
}
.page .page-content {
	padding: 40px 0;
	min-height: 520px;
}
.page .page-content p {
	text-indent: 2em;
	line-height: 30px;
	font-size: 16px;
}

/*网站地图页面*/
.page-map {}
.page-map .item {}
.page-map .item .title {
	font-size: 17px;
	color: #333;
}
.page-map .item .title b {
	padding-left: 20px;
}
.page-map .item .title::before {
	width: 8px;
	height: 8px;
	background-color: var(--pm-c);
}
.page-map .item ul {}
.page-map .item ul li {
	display: inline-block;
	width: 11.1111%;
	text-align: center;
}
.page-map .item ul li a {
	display: block;
	line-height: 42px;
	border-radius: 6px;
	border: 1px solid var(--br-c);
	font-size: 16px;
	color: #666;
}
.page-map .item ul li:hover a {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
}
.page-map .item .uk-grid-small {
    margin-left: -10px;
}
.page-map .item .uk-grid-small>* {
    padding-left: 10px;
}

/*搜索结果页面*/
.page-search .item {}
.page-search .item .title {
	font-size: 17px;
	color: #333;
}
.page-search .item .title b {
	padding-left: 20px;
}
.page-search .item .title::before {
	width: 8px;
	height: 8px;
	background-color: var(--pm-c);
}
.page-search .search-recom ul {}
.page-search .search-recom ul li {
	margin-bottom: 20px;
}
.page-search .search-recom ul li a {
	font-size: 16px;
}
.page-search .search-recom ul li span {
	font-size: 15px;
}
.page-search .search-recom ul li:nth-child(-n+3) a {
	position: relative;
}
.page-search .search-recom ul li:nth-child(-n+3) a::after {
	content: '热';
	display: inline-block;
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 18px;
	font-size: 12px;
	color: #fff;
	margin-left: 6px;
	background-color: #ff861b;
	border-radius: 2px;
}
.page-search .home-updates ul li span {
	margin-left: 0;
}
/*排行榜页面*/
.page-rank {}
.page-rank .rank-bg {
	background-image: url(../images/rank-bg.jpg);
	height: 300px;
	background-size: 100%;
}
.page-rank .rank-warp {
	padding: 0;
	border-radius: 20px;
	transform: translateY(-30px);
	position: relative;
	z-index: 10
}
.page-rank .rank-warp .rank-menu {}
.page-rank .rank-warp .rank-menu ul {}
.page-rank .rank-warp .rank-menu ul li {
	margin-right: 15px;
}
.page-rank .rank-warp .rank-menu ul li a {
	display: block;
	background-color: #f6f8f7;
	border-radius: 6px;
	line-height: 45px;
	padding: 0 30px;
	font-size: 16px;
	color: #666;
}
.page-rank .rank-warp .rank-menu ul .active a {
	background: var(--pm-c);
	color: #fff;
}
.page-rank .rank-warp .rank-menu ul li:hover a {
	background: var(--pm-c);
	color: #fff;
}
.page-rank .rank-warp .item {
	padding-left: 0;
}
.page-rank .rank-warp .item:hover {
	border: 1px solid var(--pm-c) !important
}
.page-rank .rank-warp .item .num {
	display: inline-block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	transform: translateX(-50%);
	color: #fff;
	background-color: #d9e0dd;
    border-radius: 50%;
	text-indent: 27px;
	font-size: 17px;
}
.page-rank .rank-warp .item:nth-child(-n+3) .num {
	background-color: var(--pm-c)
}
.page-rank .rank-warp .item .icon {
	width: 90px;
	height: 90px;
}
.page-rank .rank-warp .item .title {
	font-size: 16px;
}
.page-rank .rank-warp .item .down-btn {}
.page-rank .rank-warp .item .down-btn a {
    display: inline-block;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    background: #e6f9f1;
    border-radius: 33px;
    color: var(--pm-c);
    font-size: 16px;
    font-weight: bold;
}
.page-rank .rank-warp .item:hover .down-btn a {
	background: var(--pm-c);
	color: #fff;
}


/*网站底部*/
.footer {
	background: #333;
	color: #999;
	font-size: 14px;
}
.footer a {
	color: #999;
}
.footer .foot-nav {}
.footer .foot-nav a {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	margin-right: 10px;
	font-size: 12px;
	color: #999;
}
.footer .foot-nav a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	display: inline-block;
	height: 10px;
	width: 1px;
	background: #666;
}
.footer .foot-nav a:last-child::after {
	display: none;
	margin-right: 0;
	padding-right: 0;
}




.more-ab {}
.more-ab ul {}
.more-ab ul li {}
.more-ab ul li a {
	display: block;
	margin-left: 5px;
	margin-right: 10px;
}
.ab-news {}
.ab-news .item .thumb {
	display: block;
	width: 110px;
	height: 75px;
}


/*新增排行榜样式*/
.add-rank .page-rank .rank-bg {
    background: url('../images/add_rank_bg.png')no-repeat center;
    height: 300px;
}

.add-rank-list {
    width: 1200px;
    background-color: #ffffff;
    border-radius: 20px;
    border: solid 1px #eaf0ee;
    margin: 0 auto;
    transform: translateY(-27px);
    padding: 22px;
}

.add-rank-list ul li {
    border: solid 1px #eeeeee;
    display: flex;
    justify-content: space-between;
    height: 172px;
    margin-bottom: 28px;
}

.add-rank-list ul li .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f6f9f8;
    border: solid 1px #eeeeee;
    width: 326px;
    font-size: 14px;
    color: #888;
}

.add-rank-list ul li .left .name {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.add-rank-list ul li .right {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
    padding-left: 10px;
}

.add-rank-list ul li .right .img {
    height: 66px;
    width: 66px;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

.add-rank-list ul li .right .img:nth-last-child(-n+6):hover {
    transform: scale(1.4);
}

.add-rank-list ul li .right .more:hover {
    transform: scale(1.4);
    background: #0ec274 url('../images/rank_more_active.png')no-repeat center;
}

.add-rank-list ul li .right .img:nth-child(-n+3) {
    margin-left: 50px;
    margin-right: 0;
}

.add-rank-list ul li .right .img:nth-child(1)::after {
    position: absolute;
    left: -7px;
    bottom: -12px;
    width: 79px;
    height: 113px;
    content: '';
    background: url('../images/list_rank_1.png')no-repeat center;
}

.add-rank-list ul li .right .img:nth-child(2)::after {
    position: absolute;
    left: -7px;
    bottom: -12px;
    width: 79px;
    height: 113px;
    content: '';
    background: url('../images/list_rank_2.png')no-repeat center;
}

.add-rank-list ul li .right .img:nth-child(3)::after {
    position: absolute;
    left: -9px;
    bottom: -13px;
    width: 84px;
    height: 116px;
    content: '';
    background: url('../images/list_rank_3.png')no-repeat center;
}

.add-rank-list ul li .right .img:nth-child(3) {
    margin-right: 40px;
}

.add-rank-list ul li .right .img img {
    height: 66px;
    width: 66px;
    border-radius: 50%;
}


.add-rank-list ul li .right .more {
    width: 61px;
    height: 61px;
    border: solid 6px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5 url('../images/rank_more.png')no-repeat center;
}

.add-rank-show {
    transform: translateY(-27px);
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rank-show-left {
    background: #fff;
    width: 877px;
    border: solid 1px #eaf0ee;
}

.rank-show-right {
    width: 310px; 
}

.page-rank .rank-show-left .item .down-btn a {
    display: inline-block;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    background: #e6f9f1;
    border-radius: 33px;
    color: var(--pm-c);
    font-size: 16px;
    font-weight: bold;
}

.page-rank .rank-show-left .item:hover .down-btn a {
    background: var(--pm-c);
    color: #fff;
}

.page-rank .rank-show-left .item .num {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    transform: translateX(-50%);
    color: #fff;
    background-color: #d9e0dd;
    border-radius: 50%;
    text-indent: 27px;
    font-size: 17px;
    margin-left: -20px;
}

.page-rank .rank-show-left .item:nth-child(-n+3) .num {
    background-color: var(--pm-c)
}

.page-rank .rank-show-left .item:hover {
    border: 1px solid var(--pm-c) !important;
}

.center{
    width: 1200px;
    margin:0 auto;
    margin-top: -17px;
}

.pd20{
    padding:20px;
}

.side-rank-more ul {
    margin-left: -8px;
}
.side-rank-more ul >* {
padding-left: 8px;
}
.side-rank-more ul .uk-grid-margin {
margin-top: 8px;
}
.side-rank-more ul li {
width: 100%;
overflow: hidden;
}
.side-rank-more ul li a {
display: block;
padding: 12px 12px;
background: #f7f7f7;
font-size: 13px;
color: #666;
position: relative;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-align: center;
}
.side-rank-more ul li a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.side-rank-more ul li:nth-child(-n+3) {
width:100%;
}
.side-rank-more ul li:nth-child(-n+3) span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.side-rank-more ul li a::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-top-width: 20px;
border-top-style: solid;
border-right-width: 20px;
border-right-style: solid;
border-right-color: transparent;
transition: all .3s;
border-top-color: #ffaf51;
}
.side-rank-more ul li a:hover::after {
right: 0;
border-top-width: 200px;
border-right-width: 350px;
}
.side-rank-more ul li:nth-child(1) a::after {
border-top-color: #ffaf51;
}
.side-rank-more ul li:nth-child(2) a::after {
border-top-color: #0ec274;
}
.side-rank-more ul li:nth-child(3) a::after {
border-top-color: #ff6738;
}
.side-rank-more ul li:nth-child(4) a::after {
border-top-color: #38c9f8;
}
.side-rank-more ul li:nth-child(5) a::after {
border-top-color: #fd7373;
}
.side-rank-more ul li:nth-child(6) a::after {
border-top-color: #9486ff;
}
.side-rank-more ul li:nth-child(7) a::after {
border-top-color: #31b9c2;
}
.side-rank-more .uk-slider-items {}
.side-rank-more .uk-slider-items>* {
 padding-left: 8px;
}
.side-rank-more .thumb {
height: 102px;
background: #000;
}
.side-rank-more .cover {
display: none;
padding: 10px;
}
.side-rank-more .thumb:hover .cover {
display: block;
}
.side-rank-more .thumb:hover img {
opacity: 0.6;
}
.side-rank-more ul li a:hover span {
z-index: 50;
color: #fff;
position: relative;
}
.side-rank-more ul li a:before {
content: '+';
position: absolute;
top: 0;
left: 2px;
color: #fff;
z-index: 10;
line-height: 11px;
font-size: 12px;
}

.side-rank-div{
    height: 165px;
    background: url('../images/rank_more_bg.png')no-repeat center;
    overflow: hidden;
    margin-top: 15px;
}

.side-rank-div .item{
    display: flex;
    justify-content:space-around;
    margin-top: 42px;
}

.side-rank-div .bg{
	height: 145px;
    margin:10px;
    border-radius: 10px;
    background:rgba(255,255,255,.57);
    overflow: hidden;
}

.side-rank-div .title{
    font-size: 16px;
    color:#333;
    font-weight: bold;
    margin-left: 22px;
    margin-top: 11px;
}

.side-rank-div .img{
    width: 44px;
	height: 44px;
    border-radius: 50%;
    position: relative;
}

.side-rank-div .img img{
    width: 44px;
	height: 44px;
    border-radius: 50%;
}

.side-rank-div .img::after{
    content: '';
    position: absolute;
    left: -5px;
    bottom: -8px;
    width: 53px;
    height: 76px;
}

.side-rank-div .img:nth-child(1)::after{
    background: url('../images/show_rank_1.png')no-repeat center;
}

.side-rank-div .img:nth-child(2)::after{
    background: url('../images/show_rank_2.png')no-repeat center;
}

.side-rank-div .img:nth-child(3)::after{
    background: url('../images/show_rank_3.png')no-repeat center;
}

.add-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:15px 0;
}

.add-list li:last-child{
    margin-bottom: 0;
}

.add-list li .yd{
    width: 6px;
	height: 6px;
	background-color: #0dc576;
}

.add-list li  .name{
    font-size: 16px;
    color:#333;
    flex:1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin:0 15px;
}

.add-list li  .time{
    font-size: 14px;
    color:#888;
}

.side-scope-commont .item{
    margin-top: 15px;
}

.side-scope-commont .item .name{
    height: 44px;
	background-color: #f7f7f7;
    line-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    color:#333;
    padding:0 15px;
    display: block;
}

.side-scope-commont .bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.side-scope-commont .bottom .img{
    width: 120px;
	height: 140px;
    flex-shrink: 0;
}

.side-scope-commont .bottom .img img{
    width: 120px;
	height: 140px;
}

.side-scope-commont .bottom .info{
    margin-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 140px;
}

.side-scope-commont .bottom .info .t4{
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    margin-bottom: 0;
    font-size: 14px;
    color:#999;
    line-height: 24px;
}

.side-scope-commont .bottom .info .scope{
    margin:0;
    width: 132px;
	height: 29px;
    line-height: 29px;
	background-color: #0dc576;
	border-radius: 6px;
	border: solid 1px #0dc576;
    display: flex;
    justify-content: space-between;
}

.side-scope-commont .bottom .info .scope span:first-child{
    width:77px;
    text-align: center;
    font-size: 14px;
    color:#fff;

}

.side-scope-commont .bottom .info .scope span:last-child{
    width:77px;
    text-align: center;
    font-size: 14px;
    background:#fff;
    flex:1;
    border-radius:0 6px 6px 0;
    color:#0dc576;
    font-size: 20px;
    font-weight: bold;
}

.add-rank-top{
    position: relative;
}

.add-rank-top h1{
    text-align: center;
    margin-top: 25px;
    font-size: 24px;
    color:#333;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-rank-top time{
    display: block;
    text-align: center;
    font-size: 14px;
    color:#999;
}

.add-rank-top::before{
    content: '';
    width: 290px;
	height: 20px;
    background: url('../images/add_rank_h1.png')no-repeat center;
    position: absolute;
    left:23px;
    top:28px;
}


.add-rank-top::after{
    content: '';
    width: 290px;
	height: 20px;
    background: url('../images/add_rank_h1.png')no-repeat center;
    position: absolute;
    right:23px;
    top:28px;
}

.page-rank .rank-show-left .item{
    margin-bottom: 30px !important;
}

.rank-show-right .side-gamesList .item{
    margin-bottom: 15px;
}

/*新增样式 2023-06-09*/

.home-gl {}
.home-gl .thumb {
	height:150px;
}
.home-gl .title {
	font-size: 16px
}
.home-gl .btn {
	display: inline-block;
	padding: 3px 9px;
	background-color: var(--pm-c);
	color: #fff;
	font-size: 13px;
}

.home-album {}
.home-album .album-warp {
	width: 915px
}
.home-album .album-warp .album-top {}
.home-album .album-warp .album-top .album-thumb {
	width: 279px;
	height: 176px;
}
.home-album .album-warp .album-top .title {
	font-size: 22px;
	font-weight: bold;
}
.home-album .album-warp .album-top .title span {
	font-size: 15px;
	font-weight: normal;
}
.home-album .album-warp .album-top .album-desc {
	font-size: 14px;
	line-height: 30px;
}
.home-album .album-warp .album-top .album-btn {}
.home-album .album-warp .album-top .album-btn span {
	width: 132px;
	display: inline-block;
	line-height: 46px;
	border: solid 1px var(--pm-c);
	text-align: center;
	color: var(--pm-c);
}
.home-album .album-warp .album-top .album-btn a {
	display: block;
	color: var(--pm-c);
}
.home-album .album-warp .album-games {}
.home-album .album-warp .album-games .item {
	width:12.5%
}
.home-album .album-more {}
.home-album .album-more .more-title {
	background-color: #f7f7f7;
	font-size: 16px;
	line-height: 50px;
	font-weight: bold;
	color: #333;
	font-size:15px
}
.home-album .album-more ul {}
.home-album .album-more ul li {
	margin: 10px 0
}
.home-album .album-more ul li a {
	font-size: 16px;
	color: #666;
}
.home-album .album-more .btn {
	display: block;
	background-color: #f7f7f7;
	height: 50px;
	background-image: url(../images/home-album-more.png);
	background-repeat: no-repeat;
	background-position: center;
}
.home-info {
	height: 240px;
	background-image: url(../images/home-info-bg.png);
}
.home-info .part-title b {
	color: #fff;
}
.home-info .part-title .more {
	color: #fff;
}
.home-info .desc {
	line-height: 30px;
	color: #999;
}
.home-info .title {
	padding: 0 20px;
	font-weight: bold;
	font-size: 16px
}
.home-info .title:after {
	width: 15px;
	height: 15px;
	background-image: url(../images/home-info-title.png);
	background-repeat: no-repeat;
	right: 0
}
.home-info .title:before {
	width: 15px;
	height: 15px;
	background-image: url(../images/home-info-title.png);
	background-repeat: no-repeat;
	transform: rotate(180deg) translate(0,50%);
	left: 0
}

.single-head .gift-rank {
	width: 180px;
	height: 220px;
	background-image: url(../images/gift-rank.png);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	margin: 0 60px;
}


.new-download {
	padding-bottom: 5px
}
.new-download .item {
	padding: 30px;
	position: relative;
}
.new-download .item .new {
	position: absolute;
	top:0;
	left:0;
	background-image: linear-gradient(90deg,
		#fbde1a 0%, 
		#fda234 100%), 
	linear-gradient(
		#88c463, 
		#88c463);
	background-blend-mode: normal, 
		normal;
	border-radius: 20px;
	border: solid 3px #fff;
	padding: 2px 12px;
	color: #fff;
	margin: 15px;
	z-index: 10;
	font-weight: bold;
}
.new-download .item .title {
	font-weight: bold;
	font-size: 16px
}
.new-download .item .icon {
	width: 120px;
	height: 120px;
}
.new-download .item .btn {
	display: inline-block;
	border: solid 1px var(--pm-c);
	width: 83px;
	line-height: 40px;
	border-radius: 6px;
	color: var(--pm-c);
}


@media (max-width: 760px) {
	.uk-padding-small {
		padding: 15px;
	}
	.w245,
	.w420 {
		width: 100%;
	}
	.part-title .more {
		margin-right: 5px;
	}
	.head {
		height: 60px;
		padding: 15px;
	}
	.head .logo a {
		height: 32px;
	}
	/*移动端导航条*/
	.navbar .nav {
		padding: 15px 0;
	}
	.navbar .nav ul {
		overflow-x: scroll;
		white-space:nowrap;
		padding-bottom: 6px;
	}
	.navbar .nav ul li {
		margin-right: 25px;
	}
	.navbar .nav ul li a {
		font-size: 15px;
	}
	.navbar .nav ul li a::before {
		width: 22px;
		height: 22px;
		background-size: 100%;
	}
	.navbar .nav ul li a::before {
		margin-bottom: 8px;
	}
	::-webkit-scrollbar{
		height:6px;
	}
	::-webkit-scrollbar-track{
		background-color:#fff;
	}
	.pagination {
		margin: 30px 0 20px 0;
		text-align: center;
	}

	/*移动端搜索*/
	.head .search {
		max-width: 220px;
	}
	.head .search form {
		height: 32px;
		margin-bottom: 0;
	}
	.head .search form button {
		height: 100%;
	}
	
	/*移动端首页顶部推荐*/
	.home-topRecom .uk-grid-medium {
		margin-left: -15px;
	}
	.home-topRecom  .uk-grid-medium>* {
	    padding-left: 15px;
	}
	.home-topRecom .item {
		width: 25%;
	}
	.home-topRecom .icon {
		width: 100%;
		height: 65px;
	}
	.home-topRecom .title {
		margin: 5px auto;
	}
	.home-grid {
		display: block;
	}
	/*移动端首页轮播图*/
	.home-slide .uk-slideshow-items {
		min-height: 200px !important;
	}
	.home-slide .cover span {
		display: block;
		font-size: 15px;
		max-width: 80%;
	}
	.hot-search ul li:nth-child(-n+4) {
		width: 50%;
	}
	.hot-search ul li {
		width: 33.33%;
	}
	.hot-search ul li a span {
		-webkit-line-clamp: 1;
	}
	/*移动端首页精选推荐*/
	.home-jxRecom {
		margin-top: 10px;
	}
	.home-grid .w245 {
		margin: 0 !important;
	}
	.home-jxRecom .down-btn {}
	.home-jxRecom .down-btn a {
		display: inline-block;
		background: var(--pm-c);
		color: #fff;
		border-radius: 20px;
		font-size: 13px;
		padding: 4px 12px;
	}
	/*移动端首页下载*/
	.home-downs {
		display: block;
	}
	.home-downs .down-switch {
		display: block;
	}
	.home-downs .down-switch .switch-menu {
		border: 0 !important;
		overflow-x: scroll;
		white-space:nowrap;
		margin-right: 0 !important;
		padding-right: 0 !important
	}
	.home-downs .down-switch .switch-menu li {
		display: inline-block;
		margin-right: 5px;
	}
	.home-downs .down-switch .switch-menu li span {
	    display: block;
	    width: auto;
	    line-height: 40px;
		padding: 0 15px;
	    cursor: pointer;
	    background-color: #f7f7f7;
	    position: relative;
		font-size: 14px;
	}
	.home-downs .down-switch .switch-warp {
		margin-top: 15px;
	}
	.home-downs .down-switch .uk-grid-small>* {
	    padding-left: 10px;
	}
	.home-downs .down-switch .uk-grid-small {
		margin-left: -10px;
	}
	.home-downs .down-switch .switch-warp .item {
		width: 25%;
	}
	.home-downs .down-switch .switch-warp .down-btn {
		display: none
	}
	.home-downs .down-switch .switch-warp >.uk-grid-margin {
	    margin-top: 10px;
	}
	.home-downs .w245 {
		margin-left: 0 !important;
		margin-top: 15px;
	}
	
	/*移动端首页高分推荐*/
	.home-gameRecom .recom-item .thumb {
		width: 100px;
		height: 140px;
	}
	.home-gameRecom .recom-item .title {
		padding: 8px;
	}
	.home-gameRecom .recom-item .title a {
	    display: block;
	    flex: 1;
	    font-size: 15px;
	}
	.home-gameRecom .recom-item .desc {
		-webkit-line-clamp: 2;
	}
	.home-gameRecom .recom-item .uk-margin {
		margin: 10px 0 !important
	}
	
	/*移动端首页图集*/
	.home-images {
		display: block !important
	}
	.home-video {
		margin-top: 15px;
		margin-left: 0 !important
	}
	
	/*移动端列表页*/
	.recom-download .uk-grid-small {
		margin-left: -15px;
	}
	.recom-download .uk-grid-small>* {
		padding-left: 15px;
	}
	.recom-download .item::after {
		width: 80px;
		height: 80px;
		background-size: 100%;
	}
	.recom-download .item .thumb {
		height: 150px;
	}
	.recom-download .uk-slider-items>div:nth-child(1) .item::after {
		background-position: 0 -80px;
	}
	.recom-download .uk-slider-items>div:nth-child(2) .item::after {
		background-position: 0 -160px;
	}
	.recom-download .uk-slider-items>div:nth-child(3) .item::after {
		background-position: 0 -80px;
	}
	.recom-download .uk-slider-items>div:nth-child(5) .item::after {
		background-position: 0 -160px;
	}
	.recom-download .item .item-foot {
		margin-top: 10px;
		margin-bottom: 0px;
	}
	.category-download .download-warp .icon {
		width: 85px;
		height: 85px;
	}
	.category-download .download-warp .down-btn {
		display: none;
	}
	
	.recom-download .item .title {
		font-size: 15px;
	}
	
	.category-menu ul {
		white-space: nowrap;
		overflow-x: scroll;
	}
	.category-menu ul .active a {
		font-size: 14px;
	}
	.category-menu ul li a {
		width: 90px;
		font-size: 14px;
		line-height: 40px;
	}
	.category-gift .gift-warp .item .uk-margin-left {
		margin-left: 10px !important;
	}
	.category-gift .gift-warp .icon {
		width: 58px;
		height: 58px;
	}
	.category-gift .gift-warp .down-btn a {
	    width: 50px;
	    height: 50px;
	    line-height: 50px;
	}
	.category-news .news-warp .title {
		margin-bottom: 30px;
	}
	.category-news .news-warp .item .thumb {
		width: 120px;
		height: 80px;
	}
	.recomBar {
		padding: 0;
		padding-left: 60px !important;
		background-position: 15px;
		background-size: 40px;
	}
	.recomBar .item {
		width: 20%;
		margin-right: 15px;
	}
	.recomBar .item .icon {
		width: 60px;
		height: 60px;
	}
	.recomBar .item .title a {
		font-size: 14px;
	}
	.category-zhuanji .zhuanji-warp .title {
		font-size: 18px;
	}
	.page .page-menu {
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	
	.page .page-menu .item a {
	    font-size: 14px;
	    line-height: 40px;
	    padding: 0 15px;
	}
	.page-map .item ul li {
		width: 33.333%;
	}
	.page-rank .rank-bg {
		height: 200px;
		overflow: hidden;
	}
	.page-rank .rank-warp .rank-menu ul {
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	.page-rank .rank-warp .rank-menu ul li a {
	    line-height: 36px;
	    padding: 0 15px;
	    font-size: 14px;
	}
	.page-rank .rank-warp .item .icon {
		width: 50px;
		height: 50px;
	}
	.page-rank .rank-warp .item .uk-margin-left {
		margin-left: 10px !important;
	}
	.page-rank .rank-warp .item .down-btn a {
	    display: inline-block;
	    width: 50px;
	    height: 50px;
	    line-height: 50px;
	    font-size: 15px;
	}
	.single-download .single-head h1 {
		font-size: 17px;
	}
	.single .single-warp {
		padding: 15px;
	}
	.single-download .single-head .time {
		font-size: 13px;
	}
	.single-download .single-head .icon {
		margin: 0 auto;
		width: 80px;
		height: 80px;
	}
	.single-download .single-head .data {
		margin-left: 15px !important;
	}
	.single-download .single-head ul li:first-child {
		margin-top: 0 !important;
	}
	.single-download .single-head ul li {
		font-size: 13px;
		margin-top: 10px;
	}
	.single-download .single-head .score {
	    width: 58px;
	    height: 58px;
	    border: solid 2px var(--pm-c);
	    border-radius: 50%;
	    text-align: center;
	    line-height: 38px;
	    color: var(--pm-c);
		font-size: 12px;
	}
	.single-download .single-head .score b {
	    display: block;
	    font-size: 18px;
	    line-height: 0;
	}
	.single-download .single-head .uk-grid-medium>* {
	    padding-left: 30px;
	}
	
	.single-download .down-btn {
		display: block;
	}
	.single-download .down-btn .btn {
		width: 100%;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
	.single-download .down-btn .btn i {
		transform: scale(.65);
		margin-right: 5px
	}
	.single-download .down-btn .ewm {
		display: none !important;
	}
	.download-slide .swiper-container {
		padding: 20px 0;
		margin: 0;
	}
	.single .xg-article ul li {
	}
	.single .xg-article .gift-list a {
		display: block;
		flex: 1;
		white-space: nowrap;
		overflow: hidden;
	}
	.sidebar {
		display: none;
	}
	.single .single-head h1 {
		font-size: 17px;
	}
	.single-news .single-head span {
		margin-right: 10px !important;
	}
	.single .single-content p img {
		max-width: 100%;
	}
	.category-news .news-warp .desc {
		display: none;
	}
	.single .single-recom-game .icon {
		width: 65px;
		height: 65px;
	}
	.single .single-recom-game .down-btn {
		margin-left: 15px;
	}
	.single .single-recom-game .down-btn a {
	    display: inline-block;
	    color: var(--pm-c);
	    border: 1px solid var(--pm-c);
	    padding: 3px 20px;
	    font-size: 13px;
	}
	.single-download .down-btn .btn:hover{
		background:var(--pm-c) ;
	}
	.single-download .down-btn .btn:hover i{
		background-image: url(../images/icon/icon-single-down-btn.png);
	}
	.single-download .down-btn .btn a:hover{

	}
	.single-zhuanji {
		margin-top: 20px;
	}
	.single-zhuanji .zhuanji-head >.uk-flex {
		display: block;
	}
	.single-zhuanji .zhuanji-head .xg-zhuanji {
		display: none;
	}
	.single-zhuanji .zhuanji-head .thumb {
		width: 100%;
		margin-top: 40px;
	}
	.single-zhuanji .zhuanji-head >.uk-flex >.uk-flex-1 {
		margin: 0 !important;
	}
	.single-zhuanji .zhuanji-head >.uk-flex >.uk-flex-1 .info {
		text-align: center;
	}
	.single-zhuanji .zhuanji-warp .item .thumb {
		display: none;
	}
	.single-zhuanji .zhuanji-warp .item .num {
		width: 35px;
		height: 35px;
		line-height: 35px;
		text-indent: 20px;
	}
	.single-zhuanji .zhuanji-warp .item .icon {
	    width: 80px;
	    height: 80px;
		margin-right: 10px !important;
	}

	.single-zhuanji .zhuanji-warp .item ul {
		width: 100%
	}
	.single-zhuanji .zhuanji-warp .item ul li {
		width: 100%;
		font-size: 13px;
	}
	.single-zhuanji .zhuanji-warp .item .title {
		margin-bottom: 0 !important;
	}
	.single-zhuanji .zhuanji-warp .item .down-btn {
		margin: 0 10px;
	}
	.more-ab ul li {
		width: 100%;
	}
	.ab-news .item {
		width: 100%;
	}
	
	
	/*新排行榜自适应*/
	.add-rank-show {
		display: block;
		width: 100%;
	}
	.add-rank .page-rank .rank-bg {
		background-image: url(https://m.zhaojsdown.com/themes/default/common_cms/mobile/assets/images/add_rank_bg.png);
		background-size:100%;
		background-repeat: no-repeat;
		background-position: top;
		height: 175px;
	}
	.add-rank-top h1 {
		padding:0 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.rank-show-left,.rank-show-right {
		width: 100%;
	}
	.page-rank .center {
		width: 100%;
	}
	.page-rank .rank-show-left .item .icon {
		width: 70px;
		height: 70px
	}
	.page-rank .rank-show-left .item {
		display: block;
	}
	.page-rank .rank-show-left .item .num {
		position: absolute;
	}
	.page-rank .rank-show-left .item .title {
		text-align: center;
		margin-top: 15px;
	}
	.page-rank .rank-show-left .item .down-btn a {
		margin-top: 15px;
		display: block;
		width: auto;
		height: 36px;
		line-height: 36px;
	}
	.page-rank .rank-show-left .item .uk-flex-1 {
		margin: 0 !important
	}
	.rank-bg .crumbs,.rank-bg .crumbs a {
		color: #fff!important;
	}
}


.hide {
	display: none !important;
}

#aq-model {
	position: fixed;
	top: 0;
	left:-100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(/themes/default/404.png) no-repeat center;
}


#qrcode-ios img ,
#qrcode-az img {
	width: 120px;
	height: 120px;
	margin: 10px auto;
}