/*
* @Author: 叶
* @Description: 公共样式文件
*/

/*颜色变量*/
:root {
	--pm-c: #fb561c;
	--dm-c: #fdeaea;
	--bg-c: #f7f7f7;
	--br-c: #eeeeee;
}

/*颜色类*/

.c-fff {
	color: #fff !important;
}

.c-pm {
	color: var(--pm-c);
}

.c-333 {
	color: #303133;
}

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

.bg-pm {
	background-color: var(--pm-c);
}

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

/* 禁用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);
}

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


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

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

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

/*共用内边距*/
.p-a-5 {
	padding: 5px;
}

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

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

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

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

/*自定义通知弹窗样式*/
.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 {
	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;
}

.item .star {
	background-image: url('../image/icon-star-bg.png');
	background-size: auto 100%;
}

.item .star:before {
	content: '';
	display: block;
	background-image: url('../image/icon-star.png');
	background-size: auto 100%;
}


/*面包屑导航*/
.crumbs {
	font-size: 12px;
	padding: 10px;
	color: #999;
	background-color: #f8f8f8;
}

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

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

.home-latest {}

.home-latest .item {
	border-bottom: 1px dashed var(--br-c);
}

.home-latest .item .title {
	font-weight: bold;
}

.home-latest .item .title a {
	font-size: 18px;
	color: var(--pm-c);
}

.home-latest .item p {
	margin-top: 10px;
	color: #888;
}

.home-latest ul {}

.home-latest ul li {
	margin-top: 15px;
}

.home-latest ul li em {
	font-style: normal;
	font-size: 12px;
	padding: 2px 4px;
	border-radius: 2px;
	background-color: #fef1ed;
	margin-right: 10px;
	color: var(--pm-c);
}

.single {}

.single-news {}

.single-news .single-header {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.single-news .single-header h1 {
	font-size: 17px;
	line-height: 26px;
	text-align: center;
}

.single-news .single-header .info {}

.single-news .single-header .info span {
	margin-right: 15px;
	color: #909399;
}

.single-news .single-header .info .cat {
	background-color: var(--pm-c);
	color: #fff;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 13px;
}

.single .single-content {}

.single .single-content h3,
.single .single-content h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0;
	border-left: 5px solid #fb561c;
	padding-left: 7px;
}

.single .single-content p {
	text-indent: 2em;
	line-height: 24px;
	display: inline-block;
	margin: 10px 0;
}

.single .single-content iframe {
	width: 100%;
	text-indent: -2em;
	display: block;
	margin: 0 auto;
}

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

.single-apps {}

.single-apps .top-bg {
	z-index: 1;
}

.single-apps .single-header {
	padding-bottom: 28px;
}

.single-apps .single-header .crumbs {
	padding-top: 0;
	padding-left: 0;
	z-index: 100;
	position: relative;
	background-color: transparent !important;
	border: 0 !important;
	color: #fff;
}

.single-apps .single-header .crumbs>* {
	color: #fff;
}

.single-apps .single-header .icon {
	width: 84px;
	height: 84px;
	border-radius: 12px;
	margin-right: 20px;
}

.single-apps .single-header h1 {
	font-size: 16px;
	color: #333;
	font-weight: bold;
	margin: 0;
	margin-bottom: 4px;
}

.single-apps .single-header .info {
	color: #fff;
	margin-top: 2px;
	display: inline-block;
	margin-right: 1%;
	width: 48%;
}

.single-apps .single-header .info-zs {
	display: inline-block;
}

.single-apps .single-header .info-zs img {
	margin-top: -1px;
}

.single-apps .single-header .info-date {
	display: block;
}

.single-apps .single-header::after {
	display: inline-block;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, .6), rgba(255, 255, 255, 1))
}

.single-apps .single-header .downbtn {}

.single-apps .single-header .downbtn .btn {
	margin-bottom: 12px;
}

.single-apps .single-header .downbtn .btn:last-child {
	margin-bottom: 0px;
}

.single-apps .single-header .downbtn .btn,
.single-apps .single-header .downbtn .ajax-btn {
	padding: 10px 8px;
	border-radius: 4px;
	text-align: center;
	display: block;
	color: #fff;
	background-color: var(--pm-c);
	position: relative;
	background-image: linear-gradient(0deg,
			var(--pm-c) 0%,
			#ff984b 100%),
		linear-gradient(var(--pm-c),
			var(--pm-c));
	background-blend-mode: normal,
		normal;
}

.single-apps .single-header .downbtn .zwbtn,
.single-apps .single-header .downbtn .lqbtn {
	background-image: linear-gradient(0deg,
			#2690f2 0%,
			#4bc2ff 100%),
		linear-gradient(var(--pm-c),
			var(--pm-c));
	background-blend-mode: normal,
		normal;
}

.single-apps .single-header .downbtn .btn img {
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: -2px;
}

.single-apps .single-header .recom-star {
	width: 100px;
	height: 55px;
	background-image: url('../image/single-recom-star.png');
	background-size: 100%;
}

.single-apps .single-slide {}

.single-apps .single-slide .item {}

.single-album {}

.single-album .album-top {
	padding: 15px;
}

.single-album .album-top .album-title {
	position: relative;
	padding: 0 30px 0 20px;
	display: inline-block;
	max-width: 90%;
}

.single-album .album-top .album-title:before,
.single-album .album-top .album-title:after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 22px;
	height: 10px;
	top: 0;
	background-size: 100%;
	margin-top: 5px;
	background-size: 12px;
	background-repeat: no-repeat;
}

.single-album .album-top .album-title:before {
	left: 0;
	background-image: url('../image/single-album-head-bg-left.png');
}

.single-album .album-top .album-title:after {
	right: 0;
	background-image: url('../image/single-album-head-bg-right.png');
}

.single-album .album-top .album-title h1 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px
}

.single-album .album-top .album-info {
	margin-bottom: 35px
}

.single-album .album-top .album-info span {
	border: 1px solid #dcdcdc;
	display: inline-block;
	padding: 2px 8px;
	font-size: 13px;
}

.single-album .album-top .album-recom {
	position: relative;
	box-shadow: 0px 0px 21px 0px rgba(224, 224, 224, 0.75);
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;
	padding-top: 30px;
}

.single-album .album-top .album-recom:after {
	content: '';
	display: inline-block;
	width: 152px;
	height: 30px;
	background-image: url('../image/album-title-recom.png');
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -20px);
}

.single-album .album-top .album-recom .icon {
	width: 65px;
	height: 65px;
}

.single-album .album-top .album-recom .info {
	margin: 2px 0
}

.single-album .album-top .album-recom .btn {
	padding: 6px;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	background-color: var(--pm-c);
	position: relative;
}



.single-album .album-top {}

.single-album .album-top .top-warp {
	margin: 15px;
	padding: 30px 25px;
	border-radius: 15px;
}

.single-album .album-top .top-warp::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 18px;
	height: 16px;
	background-image: url('../image/single-album-desc-yh.png');
	background-size: 100%;
	background-repeat: no-repeat;
	margin: 10px;
	z-index: 10;
}

.single-album .album-top .top-warp::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	display: inline-block;
	width: 18px;
	height: 16px;
	background-image: url('../image/single-album-desc-yh.png');
	background-size: 100%;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	margin: 10px;
	z-index: 10;
}

.single-album .album-top .top-warp>div {
	position: relative;
	z-index: 10;
}

.single-album .album-top .top-warp .album-title h1 {
	font-size: 17px;
	font-weight: bold;
	margin: 0;
	color: #fff;
}

.single-album .album-top .top-warp .album-title b {
	font-size: 16px;
}

.single-album .album-top .top-warp .album-desc {
	color: #fff;
}

.single-album .album-top .top-warp .album-bg {
	filter: blur(10px);
	opacity: .8;
}

.single-album .album-top ul {}

.single-album .album-top ul li {
	display: inline-block;
	color: var(--pm-c);
	margin-right: 10px;
}

.single-album .album-top ul li a {
	display: block;
	border-radius: 20px;
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	padding: 3px 9px;
	font-size: 12px;
}

.single-album .album-top ul li a:hover {
	color: #fff;
	background-color: var(--pm-c);
}

.side-recom {
	background-image: url('../image/side-recom-bg-2.png');
	background-repeat: repeat-y;
	background-size: 100%;
	height: 280px;
	position: relative;
}

.side-recom::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../image/side-recom-bg-1.png');
	background-repeat: no-repeat;
	background-size: 100%;
}

.side-recom::before {
	content: '';
	position: absolute;
	bottom: -5px;
	width: 100%;
	height: 100%;
	background-image: url('../image/side-recom-bg-3.png');
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 100%;
}

.side-recom .recom-warp {
	padding: 50px 25px;
	position: relative;
	z-index: 100;
}

.side-recom .recom-warp .icon {
	width: 86px;
	height: 86px;
}

.side-recom .recom-warp .title {
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 15px;
}

.side-recom .recom-warp .title a {
	color: #333;
}

.side-recom .recom-warp ul {}

.side-recom .recom-warp ul li {
	color: #999;
	font-size: 15px;
	margin: 5px 0;
}

.side-recom .recom-warp .desc {
	line-height: 28px;
}

.side-recom .recom-warp .btn {
	display: inline-block;
	position: relative;
	z-index: 100;
	width: 130px;
	height: 58px;
}

.side-gl {}

.side-gl .gl-card {}

.side-gl .gl-card .item {}

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

.side-gl .gl-card .item .title {
	font-size: 16px;
	font-weight: bold;
}

.side-gl .gl-card .item .title a {
	color: #333;
}

.side-gl .gl-card .item .title span {
	background-color: var(--pm-c);
	margin-right: 5px;
	color: #fff;
	font-size: 13px;
	padding: 3px 6px;
	border-radius: 3px;
}

.side-gl .gl-card .item .desc {
	margin: 10px 0;
	line-height: 24px;
	font-size: 15px;
	color: #999;
}

.side-gl .gl-card .item .time {
	padding-left: 20px;
	font-size: 15px;
	color: #999;
	background-image: url(../image/icon-time.png);
	background-repeat: no-repeat;
	background-position: center left;
}

.side-gl .gl-card .item .more {}

.side-gl ul li a {
	padding-left: 20px;
}

.side-gl ul li a::before {
	display: inline-block;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #fb561c;
}

.side-rank {}

.side-rank .item {
	border-bottom: 1px dashed var(--br-c);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.side-rank .item .icon {
	margin-right: 15px;
	width: 60px;
	height: 60px;
}

.side-rank .item .title {
	font-size: 15px;
}

.side-rank .item .num {
	margin-right: 10px;
	text-align: center;
	width: 30px;
	height: 22px;
	background-color: #eee;
	border-radius: 0px 10px 10px 0px;
	color: #fff;
}

.side-rank .item:nth-child(-n+3) .num {
	background-color: #fb561c;
}

.side-rank .item .info {
	font-size: 14px;
}

.side-rank .item .btn {
	display: inline-block;
	width: 20px;
	height: 15px;
	background-size: 100%;
	background-image: url('../image/page-arrow.png');
}

.side-rank .item .down {
	margin-left: 15px;
}

.side-rank .item .down a {
	background-color: #fb561c;
	font-size: 13px;
	display: block;
	padding: 4px 8px;
	color: #fff;
	border-radius: 4px;
}

.side-moreimg {}

.side-moreimg .item {}

.side-moreimg .item .thumb {
	height: 102px;
}

.side-recomgames .item {}

.side-recomgames .item .icon {
	width: 65px;
	height: 65px;
	margin-bottom: 10px;
}



/*分页*/
.pagination {
	margin: 20px 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
}


.topbar {
	background-color: #f5f5f5;
	border-bottom: 1px solid #e5e5e5;
	font-size: 12px;
	color: #999;
}

.topbar ul {
	margin: 0;
	padding: 0;
}

.topbar ul li {
	display: inline-block;
	margin-left: 20px;
}

.topbar ul li a {
	display: block;
	padding: 4px 0;
	color: #999;
}

.head {}

.head .logo {}

.head .logo a {
	display: inline-block;
	height: 20px;
}

.head .logo a img {
	height: 100%;
}

.navbar {
	height: 42px;
	background-image: url('../image/img-navbar-bg.png');
}

.navbar ul {
	white-space: nowrap;
	overflow-x: scroll;
	margin: 0 20px;
}

.navbar ul li {
	display: inline-block;
	position: relative;
	margin-right: 30px;
}

.navbar ul li a {
	font-size: 13px;
	color: #fff;
	display: flex;
	align-items: center;
	line-height: 42px;
}

.navbar ul .active a {
	position: relative;
}

.navbar ul li a::before {
	content: '';
	display: none;
	width: 12px;
	height: 12px;
	transform: translateY(1px);
	background-size: 100%;
	background-repeat: no-repeat;
	margin-right: 5px;
}

.navbar ul .active a::before {
	display: block;
	background-image: url('../image/nav-active-bg.png');
	image-rendering: -moz-crisp-edges;
	/* Firefox */
	image-rendering: -o-crisp-edges;
	/* Opera */
	image-rendering: -webkit-optimize-contrast;
	/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	/* IE (non-standard property) */
}

.module-title {}

.module-title .title {
	color: #333;
	font-size: 17px;
	padding-left: 30px;
}

.module-title .title::before {
	width: 20px;
	height: 16px;
	left: 0;
	background-image: url('../image/module-title-bg.png');
}

.module-title .more {
	display: block;
	height: 20px;
	line-height: 18px;
	background-color: var(--pm-c);
	color: #fff;
	border-radius: 3px;
	font-size: 13px;
	padding: 0 6px;
}

.module {
	padding: 15px;
	background-color: #fff;
}

body {
	max-width: 750px;
	margin: 0 auto;
}

.logo {
	flex: 1;
}

.logo a {
	display: inline-block;
	height: 20px;
}

.logo img {
	height: 100%;
}

.search {
	position: relative;
	width: 150px;
	height: 30px;
}

.search input {
	width: 100%;
	height: 100%;
	border: 1px solid var(--br-c);
	border-radius: 20px;
	font-size: 11px;
	text-indent: 1em;
}

.search button {
	background-color: transparent;
	border: 0;
	width: 17px;
	height: 17px;
	background-image: url('../image/icon-search.png');
	background-size: 100%;
	margin: 0 10px;
}

.home-slide {}

.home-slide .uk-slideshow-items {
	min-height: 180px !important
}

.home-slide .uk-slideshow-nav {
	position: absolute;
	bottom: 10px;
	width: 100%;
}

.home-slide .uk-slideshow-nav li {
	margin: 0 3px;
	padding: 0;
}

.home-slide .uk-slideshow-nav a {
	background: #fff;
	border: 0;
	width: 6px;
	height: 6px;
}

.home-slide .uk-slideshow-nav .uk-active {}

.home-slide .uk-slideshow-nav .uk-active a {
	background: var(--pm-c);
}

.home-hotgames {}

.home-hotgames .icon {
	width: 65px;
	height: 65px;
}

.home-hotgames .title {
	margin: 6px 0;
	text-align: center;
}

.home-hotgames .btn {
	text-align: center;
}

.home-hotgames .btn a {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid var(--br-c);
	color: #909399;
}


.home-apps {}

.home-apps .item {
	border-bottom: 1px dashed var(--br-c);
	padding: 15px 0;
}

.home-apps .item:last-child {
	border: 0;
	padding-bottom: 0;
}

.home-apps .item .icon {
	margin-right: 10px;
	border-radius: 50%;
	border: 1px solid var(--br-c);
	padding: 4px;
}

.home-apps .item .icon a {
	display: block;
	border-radius: 50%;
	width: 55px;
	height: 55px;
}

.home-apps .item .title {
	font-size: 16px;
}

.home-apps .item .platform {
	margin-top: 10px;
	font-size: 15px;
	color: #888;
}

.home-apps .item .platform i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
}

.home-apps .item .platform .az {
	background-image: url('../image/icon-az.png');
}

.home-apps .item .platform .ios {
	background-image: url('../image/icon-ios.png');
}

.home-apps .item .btn {
	margin-left: 15px;
}

.home-apps .item .btn a {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	border-radius: 4px;
	font-size: 14px;
	padding: 3px 12px;
	display: inline-block;
}

.home-apps .item .btn:hover a {
	background-color: var(--pm-c);
	color: #fff;
}


.home-news {}

.home-news>.title {
	height: 75px;
	background-image: url('../image/home-news-title-bg.png');
	background-repeat: no-repeat;
}

.home-news .news-warp {
	border-left: 1px dashed var(--pm-c);
}

.home-news .news-warp .item {
	position: relative;
}

.home-news .news-warp .item::after {
	content: '';
	display: inline-block;
	position: absolute;
	left: -5px;
	top: 2px;
	transform: rotate(45deg);
	width: 9px;
	height: 9px;
	background-color: #fb561c;
	background-image: url('../image/home-news-after-bg.png');
}

.home-news .news-warp .num {
	font-size: 18px;
	color: var(--pm-c);
	font-weight: bold;
	margin: 0 15px;
}

.home-news .news-warp .title a {
	font-size: 16;
	color: #333;
}

.home-news .news-warp .text {
	font-size: 14px;
	margin: 10px 0;
	color: #888;
	line-height: 25px;
}

.home-news .news-warp .thumb {
	width: 65px;
	height: 42px;
	margin-right: 10px;
}


.home-video {}

.home-video .item {}

.home-video .item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 10px;
	width: 32px;
	height: 35px;
	background-image: url('../image/home-video-mark.png');
}

.home-video .item .thumb {
	height: 85px;
}

.home-video .item .title {
	padding: 10px;
	text-align: center;
}


.home-rank {}

.home-rank {
	background-repeat: no-repeat;
	background-position: center top;
	min-height: 20px;
	width: 100%;
}

.home-rank {
	background-image: url('../image/rank-01-title.png');
}


.home-rank {
	padding-top: 30px;
}

.home-rank .item {
	margin-top: 25px;
}

.home-rank .item .num {
	text-align: center;
	color: #fff;
	width: 20px;
	background-color: #dedede;
	margin-right: 15px;
	border-radius: 4px;
}

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

.home-rank .item-card {}

.home-rank .item-card .num {
	height: 80px;
	line-height: 80px;
}

.home-rank .item-card .icon {
	width: 70px;
	height: 70px;
	margin-right: 15px;
}

.home-rank .item-card .title {
	margin-bottom: 23px;
}

.home-rank .item-card .title a {
	color: #333;
	font-size: 17px;
}

.home-rank .item-card .info {
	font-size: 14px;
	color: #888;
}

.home-rank .item-card .btn a {
	color: var(--pm-c);
	border: 1px solid var(--pm-c);
	font-size: 15px;
	padding: 6px 20px;
	border-radius: 4px;
}

.home-rank .active .item-list {}

.home-rank .item-list {}

.home-rank .item-list a {
	color: #333;
}

.home-rank .item-list .num {
	height: 21px;
	line-height: 21px;
}

.home-rank .item-list span {
	margin-left: 40px;
	color: #888;
}

.home-links {}

.home-links li {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 5px;
}

.home-links li a {
	font-size: 12px;
}



.categories {
	padding-bottom: 20px;
}

.categories-menu {}

.categories-menu .uk-grid-small {
	margin-left: -10px;
}

.categories-menu .uk-grid-small>.uk-grid-margin {
	margin-top: 10px;

}

.categories-menu .uk-grid-small>* {
	padding-left: 10px;
}

.categories-menu .item {}

.categories-menu .item a {
	display: block;
	padding: 10px;
}

.categories-menu .item:hover a {
	background-color: var(--pm-c);
	border: 1px solid #fff;
}

.categories-menu .item:hover .title,
.categories-menu .item:hover .count span,
.categories-menu .item:hover .count {
	color: #fff;
}

.categories-menu .item .count {
	font-size: 13px;
	margin-top: 5px;
}

.categories-menu .item .count span {
	margin-right: 5px;
}

.categories-apps {}

.categories-apps .item {
	border-bottom: 1px dashed var(--br-c);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.categories-apps .item .title {
	margin-bottom: 5px;
	font-size: 16px;
}

.categories-apps .item .title a {
	color: #333;
}

.categories-apps .item .icon {
	width: 70px;
	height: 70px;
	margin-right: 10px;
}

.categories-apps .item .info li {
	margin-top: 5px;
}

.categories-apps .item .down .btn {
	border: 1px solid var(--pm-c);
	border-radius: 4px;
	padding: 6px 18px;
	color: var(--pm-c);
	padding-left: 30px;
}

.categories-apps .item .down .btn:before {
	display: inline-block;
	left: 14px;
	width: 11px;
	line-height: normal;
	height: 13px;
	background-image: url('../image/apps-down-btn.png');
	background-size: 100%;
	background-repeat: no-repeat;
}

.categories-apps .item .down .star {
	height: 14px;
	width: 75px;
	margin-bottom: 12px;
}

.categories-apps .item .down .star:before {
	height: 14px;

}

.categories-apps .item .down .star-2:before {
	width: 16px;
}

.categories-news {}

.categories-news .item {
	border-bottom: 1px dashed #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.categories-news .item .title {
	margin-bottom: 5px;
}

.categories-news .item .title a {
	font-size: 15px;
	color: #333;
}

.categories-news .item .thumb {
	width: 110px;
	height: 70px;
	margin-right: 10px;
}

.categories-news .item .desc {
	font-size: 13px;
}

.categories-news .item .info {
	font-size: 14px;
	color: #999;
}

.categories-news .item .info>.name {
	padding-left: 20px;
}

.categories-news .item .info>.name::before {
	display: inline-block;
	left: 0;
	width: 15px;
	height: 15px;
	background-image: url('../image/icon-sitename.png');
	background-repeat: no-repeat;
}

.categories-news .item .info>i {
	padding-left: 25px;
	background-repeat: no-repeat;
	margin-left: 30px;
	background-position: 0 5px;
	font-style: normal;
}

.categories-news .item .info>i::after {
	display: inline-block;
	left: 0;
	width: 13px;
	height: 13px;
}

.categories-news .item .info>.time {
	background-image: url('../image/icon-time.png');
}

.categories-news .item .info>.see {
	background-image: url('../image/icon-see.png');
}

.categories-gift {}

.categories-gift .recom-gift {}

.categories-gift .recom-gift .item {
	padding: 10px;
	background-color: #f8f9fa;
	border: solid 1px #eeeeee;
}

.categories-gift .recom-gift .item .icon {
	width: 60px;
	height: 60px;
	margin-right: 10px;
}

.categories-gift .recom-gift .item .progress progress {
	margin: 0;
	margin-right: 5px;
	height: 5px;
}

.categories-gift .recom-gift .item .progress progress::-webkit-progress-bar {
	background-color: #eee;
}

.categories-gift .recom-gift .item .progress progress::-webkit-progress-value {
	background: var(--pm-c);
}

.categories-gift .gift-warp {}

.categories-gift .gift-warp .item {}

.categories-gift .gift-warp .item .icon {
	margin-right: 10px;
	border-radius: 50%;
	border: 1px solid var(--br-c);
	padding: 4px;
}

.categories-gift .gift-warp .item .icon a {
	display: block;
	border-radius: 50%;
	width: 55px;
	height: 55px;
}

.categories-gift .gift-warp .item {
	border-bottom: 1px dashed var(--br-c);
	padding-bottom: 17px;
}

.categories-gift .gift-warp .item .title {
	margin-bottom: 10px;
}

.categories-gift .gift-warp .item .title a {
	font-size: 15px;
}

.categories-gift .gift-warp .item .info {
	font-size: 15px;
}

.categories-gift .gift-warp .item .btn {
	margin-left: 15px;
}

.categories-gift .gift-warp .item .btn a {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	border-radius: 4px;
	font-size: 14px;
	padding: 3px 12px;
	display: inline-block;
}

.categories-gift .gift-warp .item .btn:hover a {
	background-color: var(--pm-c);
	color: #fff;
}


.categories-album {}

.categories-list {
	padding-top: 10px;
}

.categories-album .item {
	padding: 10px;
}

.categories-album .item .title {
	background-image: url('../image/page-arrow.png');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 15px;
}

.categories-album .item .title a {
	color: #333;
	font-size: 15px;
}

.categories-album .item .icon {
	width: 65px;
	height: 65px;
}

.categories-album .item .btn {
	padding: 6px 8px;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	background-color: var(--pm-c);
	position: relative;
}


.single {}



.page {}

.page .page-nav {}

.page .page-nav a {
	display: block;
	border: 1px solid var(--br-c);
	line-height: 36px;
	text-indent: 15px;
}

.page .page-nav a::after {
	right: 10px;
	display: inline-block;
	width: 12px;
	height: 10px;
	background-size: 100%;
	background-image: url('../image/page-arrow.png');
	-webkit-filter: grayscale(1);
	/* Chrome, Safari, Opera */
	filter: grayscale(1);
	opacity: .6;
}

.page .page-nav .active a::after {
	filter: none;
	opacity: 1;
}

.page .page-nav .active a {
	color: var(--pm-c);
}

.page .page-content {
	min-height: 500px;
}

.page .page-content p {
	text-indent: 2em;
	line-height: 26px;
}

.page {}

.page-rank {}

.page-rank .rank-card {}

.page-rank .rank-card span {
	background-color: #ffffff;
	border: solid 1px #fb561c;
	display: block;
	text-align: center;
	letter-spacing: 2px;
	color: #fb561c;
	padding: 10px 0;
}

.page-rank .rank-warp {
	/* padding-top: 40px; */
	/* background-repeat: no-repeat; */
	/* background-size: 100%; */
	/* background-image: url(../image/rank-01-title.png); */
}

.page-rank .rank-warp .item {
	border-bottom: 1px dashed #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.page-rank .rank-warp .item .icon {
	width: 70px;
	height: 70px;
	margin-right: 10px;
}

.page-rank .rank-warp .item .title {}

.page-rank .rank-warp .item .title a {
	font-size: 16px;
	color: #303133;
}

.page-rank .rank-warp .item .title span {
	display: inline-block;
	overflow: hidden;
	font-size: 13px;
	line-height: 17px;
	text-indent: 5px;
	width: 53px;
	color: #fff;
	height: 17px;
	background-image: url('../image/rank-mark-bg.png');
	background-repeat: no-repeat;
	margin-left: 10px;
}

.page-rank .rank-warp .item .info {
	margin: 5px 0;
}

.page-rank .rank-warp .item .btn {}

.page-rank .rank-warp .item .btn>* {
	background-color: var(--pm-c);
	color: #fff;
	padding: 4px 16px;
	border-radius: 6px;
}

.sy-rank .rank-warp .item .btn>* {
	color: var(--pm-c);
	background-color: #fff;
	border: 1px solid var(--pm-c);
	border-radius: 4px;
}

.page-rank .rank-warp .item:nth-child(-n+3) .title span {
	background-image: url('../image/rank-mark.png');
}


.page-sitemap {}

.page-sitemap .item {
	width: 100%;
}

.page-sitemap .item .title {
	display: block;
	color: #303133;
	font-size: 17px;
	background-image: url('../image/page-title.png');
	background-repeat: repeat-x;
	background-position: 0 10px;
}

.page-sitemap .item .title b {
	background-color: #fff;
	padding: 3px 0;
	padding-left: 20px;
	padding-right: 10px;
}

.page-sitemap .item .title b:before {
	left: 0;
	top: 55%;
	display: inline-block;
	width: 12px;
	height: 12px;
	background-size: 80%;
	background-image: url('../image/page-title-bg.png');
	background-repeat: no-repeat;
}

.page-sitemap .item ul {}

.page-sitemap .item ul li {
	display: inline-block;
	margin-bottom: 10px;
}

.page-error {
	padding: 10% 0;
}

.page-error .go-home {
	margin-top: 80px;
}

.page-error .go-home a {
	font-size: 15px;
	display: inline-block;
	border: 1px solid var(--br-c);
	padding: 10px 30px;
}

.page-error .go-home a:hover {
	background-color: var(--pm-c);
	color: #fff;
}



.footer {
	padding: 30px 15px;
	background: #333;
	color: #999;
}

.footer a {
	color: #999;
}

.footer ul {}

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

.footer ul li a {
	padding-right: 15px;
	margin-right: 10px;
	color: #999;
}

.footer ul li a::after {
	right: 0;
	display: inline-block;
	width: 1px;
	height: 10px;
	background: #999;
}

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

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

.show-slide-warp {
	height: 300px;
}

.show-slide {
	max-width: 500px;
	height: 260px;
	margin: 0 auto;
}

.show-slide .uk-slideshow-items {}

.show-slide ul {}

.show-slide ul li {}

.show-slide ul li img {
	height: 100%;
	width: 100%;
}

.slide-nav {
	margin-bottom: 100px;
	margin-top: 10px;
}

.slide-nav ul li {
	height: 60px;
	overflow: hidden;
}

.slide-nav ul li img {
	height: 100%;
	opacity: .6;
}

.slide-nav ul .uk-active img {
	opacity: 1;
}

.show-slide .slide-dot {
	width: 66px;
	padding: 20px;
	border-radius: 50%;
	background-color: #f5f5f5;
	line-height: 50px;
	text-align: center;
}

.hide {
	display: none !important;
}

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

.is_ios,
.is_az {
	display: none;
}

/* 新增样式 */
/* 游戏礼包 */
.single-gift {}

.single-gift .item {
	border: solid 1px #eeeeee;
	margin-top: 14px;
	padding: 12px;
}

.single-gift .item .icon {
	padding: 0;
	border: none;
	border-radius: 10px;
	width: 55px;
	height: 55px;
}

.single-gift .item .icon a {
	border-radius: 10px;
}

.single-gift .item .title {
	font-weight: bold;
	letter-spacing: 1px;
	color: #333333;
}

.single-gift .item .btn a {
	border: 1px solid var(--pm-c);
	background-color: var(--pm-c);
	color: #fff;
	padding: 3px 10px;
}

.single-gift .item:last-child {
	border: solid 1px #eeeeee;
	padding-bottom: 12px;
}

/* 手游专辑 */
.sy-album {
	border: solid 1px #dcdcdc;
}

.sy-album .album-box {
	overflow: hidden;
	padding-right: 10px;
	background-color: #f8f8f8;
	margin-top: -0.5px;
	margin-left: -1px;
}

.sy-album .thumb {
	width: 92px;
	height: 70px;
	margin-right: 12px;
}

.sy-album .title {
	font-size: 14px;
	/* font-weight: bold; */
	letter-spacing: 1px;
	color: #333333;
	margin-bottom: 10px;
}

.sy-album .desc {
	font-size: 12px;
	letter-spacing: 0px;
	color: #888888;
}

.sy-album .item .icon {
	width: 50px;
	height: 50px;
	overflow: hidden;
}

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

.sy-album .item .title {
	color: #565656;
}

.single-info {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 10px;
}



.single-info .item>p {
	text-align: center;
	letter-spacing: 0px;
	color: #9cb5c0;
	margin: 0px;
}

.single-info .xz-num {
	text-align: center;
	letter-spacing: 0px;
	color: #7596a5;
	transform: translateY(-5px);
	font-weight: bolder;
}

.single-info .rank-icon {
	width: 120px;
	height: 75px;
	background: url(../image/rank.png) no-repeat center;
	text-align: center;
	background-size: contain;
}

.single-info .rank-icon p {
	font-size: 10px;
	letter-spacing: 0px;
	color: #8caab8;
	margin-bottom: 0px;
	padding-top: 20px;
}

.single-info .rank-icon span {
    transform: translateX(-5px);
    letter-spacing: 0px;
    color: #7596a5;
    font-weight: bold;
    display: inline-block;
    margin-top: 18px;
    font-size: 24px;
}
.single-info .star {
	height: 14px;
	width: 78px;
	margin-bottom: 10px;
	background-size: auto 100%;
}
.single-info .star:before,
.info-zs .star:before {
	height: 14px;
	background-size: auto 100%;
}

.single-info .star-5:before,
.info-zs .star-5:before {
	width: 75px;
}

.single-info .star-4:before,
.info-zs .star-4:before {
	width: 60px;
}

.single-info .star-3:before,
.info-zs .star-3:before {
	width: 45px;
}

.single-info .star-2:before,
.info-zs .star-2:before {
	width: 30px;
}

.single-info .star-1:before,
.info-zs .star-1:before {
	width: 16px;
}

.info-zs .star {
	height: 14px;
	width: 75px;
	display: inline-block;
}

.single-header-news .tishi {
	border-radius: 4px;
	display: inline-block;
	padding: 0 5px;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 1px;
	color: #ffffff;
	vertical-align: middle;
	margin-left: 5px;
	transform: translateY(-3px)
}

.single-header-news .tishi-pg {
	background-color: #3da3ea;
}

.single-header-news .tishi-az {
	background-color: #60bf26;
}

.categories-album-info {
	margin-top: 6px;
}

.categories-album-info span {
	background-color: #f7f7f7;
	letter-spacing: 1px;
	color: #999999;
	margin-right: 5px;
	padding: 2px 5px;
	font-size: 12px;
}