:root {
	--pm-c: #24C072;
	--br-c: #DCDCDC;
}

/*隐藏类*/
.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;
}

/*应用信息样式*/
#app_info {
	margin: 20px 0
}

#app_info li {
	display: inline-block;
	width: 33.33%;

}

#app_info li b {
	cursor: pointer;
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 520px;
	margin: auto;
	margin-top: 100px;
	border-radius: 8px;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

#app_info_cover .app_info_body {
	padding: 20px;
	height: 320px;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: #5CA8F6;
	line-height: 48px;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#app_info li {
		width: 100%;
		margin-top: 10px;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: 16px;
		line-height: 42px;
	}
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/* 解决IOS默认滑动很卡的情况 */
	-webkit-overflow-scrolling: touch;
}

/*修改UIKIT框架自带样式*/
body,
html {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
	background: #F7F7F7;
}

.bg-f {
	background-color: #ffffff;
}

.uk-container {
	box-sizing: border-box;
	padding: 0px;
}

.w400 {
	width: 400px;
}

a,
a:hover {
	text-decoration: none;
}

ol,
ul,
p {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*图片高清*/
img {
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	object-fit: cover;
}

/*边框样式*/
.b-a {
	border: 1px solid var(--br-c) !important;
}

.b-b {
	border-bottom: 1px solid var(--br-c) !important;
}

.b-t {
	border-top: 1px solid var(--br-c) !important;
}

.b-l {
	border-left: 1px solid var(--br-c) !important;
}

.b-r {
	border-right: 1px solid var(--br-c) !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: 1px dashed var(--br-c) !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: 1px dashed var(--br-c) !important;
}

/* 内边距  */
.p-a-0 {
	padding: 0px;
}

.p-a-5 {
	padding: 5px;
}

.p-a-10 {
	padding: 10px;
}

.p-a-15 {
	padding: 15px;
}

.p-a-20 {
	padding: 20px;
}

.p-a-25 {
	padding: 25px;
}

.p-a-30 {
	padding: 30px;
}

/* 内上边距 */
.p-t-0 {
	padding-top: 0px !important;
}

.p-t-5 {
	padding-top: 5px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-15 {
	padding-top: 15px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-30 {
	padding-top: 30px;
}

/* 内下边距 */
.p-b-0 {
	padding-bottom: 0px !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-b-30 {
	padding-bottom: 30px !important;
}

/* 内右边距 */
.p-r-0 {
	padding-right: 0px;
}

.p-r-5 {
	padding-right: 5px;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-15 {
	padding-right: 15px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

/* 内左边距 */
.p-l-0 {
	padding-left: 0px;
}

.p-l-5 {
	padding-left: 5px;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-15 {
	padding-left: 15px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-l-30 {
	padding-left: 30px;
}

/*圆角样式*/
.b-r-4 {
	border-radius: 4px !important;
}

.b-r-6 {
	border-radius: 6px !important;
}

.b-r-8 {
	border-radius: 8px !important;
}

.b-r-10 {
	border-radius: 10px !important;
}

.b-r-12 {
	border-radius: 12px !important;
}

.b-r-24 {
	border-radius: 24px !important;
}

/* 上外边距 */
.m-t-0 {
	margin-top: 0px !important;
}

.m-t-5 {
	margin-top: 5px !important;
}

.m-t-10 {
	margin-top: 10px !important;
}

.m-t-15 {
	margin-top: 15px !important;
}

.m-t-20 {
	margin-top: 20px !important;
}

.m-t-25 {
	margin-top: 25px !important;
}

.m-t-30 {
	margin-top: 30px !important;
}

/* 下外边距 */
.m-b-0 {
	margin-bottom: 0px !important;
}

.m-b-5 {
	margin-bottom: 5px !important;
}

.m-b-10 {
	margin-bottom: 10px !important;
}

.m-b-15 {
	margin-bottom: 15px !important;
}

.m-b-20 {
	margin-bottom: 20px !important;
}

.m-b-25 {
	margin-bottom: 25px !important;
}

.m-b-30 {
	margin-bottom: 30px !important;
}

/* 左外边距 */
.m-l-0 {
	margin-left: 0px !important;
}

.m-l-5 {
	margin-left: 5px !important;
}

.m-l-10 {
	margin-left: 10px !important;
}

.m-l-15 {
	margin-left: 15px !important;
}

.m-l-20 {
	margin-left: 20px !important;
}

.m-l-25 {
	margin-left: 25px !important;
}

.m-l-30 {
	margin-left: 30px !important;
}

/* 右外边距 */
.m-r-0 {
	margin-right: 0px !important;
}

.m-r-5 {
	margin-right: 5px !important;
}

.m-r-10 {
	margin-right: 10px !important;
}

.m-r-15 {
	margin-right: 15px !important;
}

.m-r-20 {
	margin-right: 20px !important;
}

.m-r-30 {
	margin-right: 30px !important;
}

/* 溢出2行省略号 */
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
	position: relative;
}

.before-middle::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
	position: relative;
}

.after-middle::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.after-center {
	position: relative;
}

.after-center::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

/* 分页 */
.pagination {
	margin: 60px 0 40px 0;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	margin: 5px;
	font-size: 13px;
	border: 1px solid var(--br-c);
	color: #999999;
	background: #fff;
}

.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 a {
	display: inline-block;
	color: #999999;
}

.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
	border: 1px solid var(--pm-c) !important;
}

/* 评分 */
.star {
	height: 15px;
	width: 80px;
	display: inline-block;
	background: url(../images/icon-star-bg.png) repeat-x 15px / contain;
	vertical-align: text-top;
}

.star:before {
	content: "";
	display: block;
	background: url(../images/icon-star.png) repeat-x 15px / contain;
	height: 15px;
}

.star-1:before {
	width: 16px;
}

.star-2:before {
	width: 30px;
}

.star-3:before {
	width: 48px;
}

.star-4:before {
	width: 64px;
}

.star-5:before {
	width: 80px;
}

.star1 {
	height: 22px;
	width: 110px;
	display: inline-block;
	background: url(../images/icon-star-bg1.png) repeat-x 22px / contain;
	vertical-align: sub;
}

.star1:before {
	content: "";
	display: block;
	background: url(../images/icon-star1.png) repeat-x 22px / contain;
	height: 22px;
}

.star1-1:before {
	width: 22px;
}

.star1-2:before {
	width: 44px;
}

.star1-3:before {
	width: 66px;
}

.star1-4:before {
	width: 88px;
}

.star1-5:before {
	width: 110px;
}

/*面包屑导航*/
.crumbs {
	font-size: 12px;
	color: #999999;
}

.crumbs a {
	display: inline-block;
	position: relative;
	font-size: 12px;
	color: #999999;
}

.crumbs a::after {
	content: ">";
}

/* 平台 安卓 苹果 图标显示 */
.platform i {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
}

.platform .az_ {
	background-image: url(../images/az_.png);
	margin-right: 5px;
}

.platform .az {
	background-image: url(../images/az.png);
	margin-right: 5px;
}

.platform .ios_ {
	background-image: url(../images/ios_.png);
}

.platform .ios {
	background-image: url(../images/ios.png);
}

/* 公共标题 */
.module-title {
	position: relative;
	border-bottom: 1px solid #F3F3F3;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.module-title .title {
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	letter-spacing: 2px;
	padding-left: 19px;
}

.module-title .more {
	display: block;
	font-size: 12px;
	color: #999999;
}

.module-title .title::before {
	display: inline-block;
	width: 6px;
	height: 22px;
	border-radius: 3px;
	background-color: var(--pm-c);
	left: 0;
}

/*默认图标尺寸*/
.item .icon {
	margin: 0 auto;
	overflow: hidden;
}

.item .icon img {
	width: 100%;
	height: 100%;
}

/* 默认缩略图尺寸 */
.item .thumb img {
	width: 100%;
	height: 100%;
}

.item:hover .title,
.list:hover .title,
ul li:hover .title {
	color: var(--pm-c);
}

/* 默认的一些文字大小和颜色 */
.info {
	flex: 1;
	overflow: hidden;
}

.info .title {
	font-size: 16px;
	color: #333;
	display: block;
}

.info .title:hover {
	olor: var(--pm-c);
}

.info .text {
	font-size: 14px;
	color: #666;
}

.info .time {
	font-size: 14px;
	color: #999;
}

.title {
	display: block;
	font-size: 16px;
	color: #333333;
}

.text {
	font-size: 14px;
	color: #666;
}

/* list 样式 */
.list-container li {
	margin-bottom: 16px;
}

.list-container li .title {
	padding-left: 12px;
	font-size: 16px;
	color: #333333;
}

.list-container li .title::before {
	display: inline-block;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--pm-c);
}

.list-container li .time {
	font-size: 14px;
	color: #999999;
	margin-left: 5px;
}

.list-container li .dot {
	display: block;
	width: 14px;
	height: 14px;
}

.list-container li .dot_ {
	display: block;
	width: 14px;
	height: 14px;
}

.list-container li .tag {
	font-size: 14px;
	color: var(--pm-c);
}

/* 公共头部样式 */
.header {
	height: 146px;
	position: relative;
	background-color: #ffffff;
}

.header-top {
	width: 100%;
	height: 90px;
	overflow: hidden;
	align-items: center;
}

.header .logo {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	flex: 1;
}

.header .search {
	width: 374px;
	height: 42px;
	border: solid 1px var(--pm-c);
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
}

.header .search .search_input {
	height: 100%;
	border: none;
	outline: medium;
	vertical-align: top;
	width: 281px;
	height: 46px;
	line-height: 46px;
	color: #999999;
	font-size: 14px;
	background-color: #ffffff;
	text-indent: 10px;
}

.search-input:-webkit-input-placeholder {
	color: #999999;
}

.search-input:-moz-input-placeholder {
	color: #999999;
}

.search-input:-ms-input-placeholder {
	color: #999999;
}

.header .search .search-btn {
	width: 70px;
	height: 38px;
	line-height: 34px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	border: none;
	float: right;
	cursor: pointer;
	background-color: var(--pm-c);
	border: solid 2px #ffffff;
	margin-right: 2px;
}

.header .nav {
	overflow: hidden;
	height: 56px;
	line-height: 56px;
	background: var(--pm-c);
}

.header .nav li {
	height: 56px;
	line-height: 56px;
	margin-right: 34px;
	text-align: center;
	padding: 0 24px;
	box-sizing: border-box;
}

.header .nav li a {
	display: block;
	font-size: 17px;
	color: #FFFFFF;
}

.header .nav li.active {
	background-color: #14A85E;
}

.header .nav li.active a {
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
}

/* 公共尾部样式 */
.footer {
	background-color: #333;
	padding: 50px 0;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.footer ul {
	margin-bottom: 20px;
	justify-content: center;
	align-items: center;
}

.footer ul li {
	line-height: 1;
	padding: 0 10px;
	border-left: 1px solid #999;
	letter-spacing: 1px;
}

.footer ul li a {
	font-size: 14px;
	color: #999999;
}

.footer ul li:first-child {
	border-left: 0;
}

.footer p {
	margin-top: 10px;
}

.footer a {
	font-size: 14px;
	color: #999999;
}

/* 内容区域 */
.main {}

/* 首页样式结束 */

/* 手游列表 */
.game-warp .item {
	position: relative;
	padding: 17px 19px;
	background: #F7F7F7;
}

.game-warp .item .icon {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.game-warp .item .down {
	display: inline-block;
	width: 111px;
	height: 47px;
	line-height: 47px;
	border-radius: 6px;
	border: 1px solid #E5E5E5;
	font-size: 16px;
	color: #333333;
	text-align: center;
}

.game-warp .item .info {
	margin-left: 18px;
}

.game-warp .item .title {
	font-weight: bold;
	font-size: 16px;
	color: #333333;
	margin-bottom: 12px;
	max-width: 200px;
}
.game-warp .item .tag{
	display: inline-block;
	width: 76px;
	height: 23px;
	line-height: 23px;
	font-size: 14px;
	color: #FFFFFF;
	background: url('../images/tag_bg.png') no-repeat right/contain;
  background-size: 76px 23px;
	padding-left: 6px;
	box-sizing: border-box;
	margin-left: 10px;
	font-weight: 400;
}
.game-warp .item .type {
	font-size: 14px;
	color: #888888;
}

.game-warp .item .type span {
	font-size: 14px;
	color: #888888;
}

.game-warp .item:hover{
	background: #EBFDF4;
}
	
.game-warp .item:hover .title{
	color: var(--pm-c);
}
.game-warp .item:hover .down{
	background: var(--pm-c);
	color: #FFFFFF;
}
/* 手游详情 */
.single-game .single-header {
	border: solid 1px #EEEEEE;
	padding: 25px 42px 37px 32px;
}

.single-game .single-header .icon {
	width: 120px;
	height: 120px;
	border-radius: 15px;
	overflow: hidden;
}

.single-game .single-header .single-title h1 {
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 24px;
}

.single-game .single-header .single-info {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	margin-left: 22px;
}

.single-game .single-header .single-info p {
	font-size: 16px;
	color: #888888;
	width: 33%;
	margin-bottom: 15px;
}

.single-game .single-images {
	position: relative;
	padding-left: 50px;
	padding-right: 55px;
}

.single-game .single-images .item {
	width: 223px;
	height: 397px;
}

.single-game .single-images .item img {
	width: 100%;
	height: 100%;
}

.single-game .single-images .uk-slider-nav {
	display: flex;
	position: absolute;
	bottom: 0;
	width: 87%;
	height: 8px;
	background: #F0F0F0;
	z-index: 10;
	transition: al .3s;
}

.single-game .single-images .uk-slider-nav li {
	flex: 1;
}

.single-game .single-images .uk-slider-nav a {
	display: block;
	height: 8px;
	width: 100%;
}

.single-game .single-images .uk-slider-nav .uk-active a {
	display: block;
	background: #ccc;
	border-radius: 20px;
}

.single-images .slider-btn {
	width: 45px;
	height: 38px;
	color: #B7B7B7;
	margin: 0;
}

/* 列表页公共样式 */

/* 详情页公共样式 */
.single .single-content iframe {
	display: block;
	margin: 0 auto;
	width: 520px;
	height: 320px;
}

.single .single-content p {
	font-size: 16px;
	color: #444444;
	text-indent: 2em;
	line-height: 36px;
}

.single .single-content p img {
	max-width: 68%;
	margin: 10px auto;
	display: block;
}

.single .single-content h2,
.single .single-content h3 {
	display: inline-block;
	min-width: 91px;
	height: 32px;
	line-height: 32px;
	background: var(--pm-c);
	font-size: 16px;
	color: #FFFFFF;
	padding: 0 12px;
	box-sizing: border-box;
	border-radius: 6px;
	position: relative;
}
.single .single-content h2::after,
.single .single-content h3::after{
	display: block;
	content: '';
	width: 9px;
	height: 10px;
	background: url('../images/single_h2_icon.png') no-repeat center/contain;
  position: absolute;
	top: 12px;
	right: -8px;
}
/* 详情下载按钮 */
.single .down-btn .btn {
	position: relative;
	display: block;
	font-size: 16px;
	color: #fff;
	border-radius: 6px;
	padding: 16px 34px;
	cursor: pointer;
}

.single .down-btn .pc,
.single .down-btn .az {
	background: #349CCD;
}

.single .down-btn .sy,
.single .down-btn .ios,
.single .down-btn .mob,
.single .down-btn .xz {
	background: var(--pm-c);
}

.single .down-btn .lb {
	background: var(--pm-c);
}

.single .down-btn .btn:hover .qrcode {
	display: block;
}

.single .down-btn .btn:hover a {
	color: #fff !important;
}

.single .down-btn .btn .qrcode {
	display: none;
	background-color: #fff;
	z-index: 999;
	position: absolute;
	right: 5%;
	top: 120%;
	border-radius: 10px;
	padding: 5px;
	font-size: 12px;
	text-align: center;
	border: 1px solid var(--pm-c);
}

.single .down-btn .btn .qrcode img {
	width: 120px;
	height: 120px;
}

.single .down-btn .btn a,
.single .down-btn .btn span {
	position: relative;
	font-size: 16px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: center left;
}

.single .down-btn .none {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(1);
	opacity: .4;
	border: none;
}

/* 侧边栏 */
.sidebar {
	margin-left: 20px;
	width: 340px;
}
/* 热门攻略 */
.side-hot-gl .item{
	position: relative;
	height: 230px;
}
.side-hot-gl  .item .thumb{
	width: 340px;
	height: 230px;
}
.side-hot-gl .item .title{
	width: 100%;
	height: 36px;
	line-height: 36px;
	background: rgba(0,0,0,0.5);
	position: absolute;
	bottom: 0;
	left: 0px;
	font-size: 15px;
	color: #FFFFFF;
	padding: 0 10px;
	box-sizing: border-box;
	text-align: center;
}
/* 下载排行 */
.side-game-rank .item:last-child{
	margin-bottom: 0 !important;
}
.side-game-rank .item .order{
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	background: #FFCC73;
	border-radius: 4px;
	margin-bottom:20px;
}

.side-game-rank .item:nth-child(1) .order{
	background: #FF6B31;
}
.side-game-rank .item:nth-child(2) .order{
	background: #FF9445;
}
.side-game-rank .item:nth-child(3) .order{
	background: #FFC731;
}
.side-game-rank .item-list{
	flex: 1;
	position: relative;
	overflow: hidden;
	border-bottom: 1px dashed var(--br-c);
	padding-bottom:20px;
}
.side-game-rank .item .icon{
	width: 62px;
	height: 62px;
	border-radius: 10px;
	overflow: hidden;
}

.side-game-rank .item .title{
	font-size: 16px;
	color: #333333;
}
.side-game-rank .item .type{
	font-size: 14px;
	color: #888888;
	margin-top: 8px;
}
.side-game-rank .item .down{
	width: 65px;
	height: 36px;
	line-height: 36px;
	border-radius: 6px;
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	font-size: 14px;
	text-align: center;
}
/* 热游推荐 */
.bottom-game-tj .item{
	text-align: center;
}
.bottom-game-tj .item .icon{
	width: 98px;
	height: 98px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.bottom-game-tj .item .title{
	font-size: 16px;
	color: #333333;
	text-align: center;
	margin-top: 15px;
}
.bottom-game-tj .item .type{
	display: block;
	font-size: 14px;
	color: #999999;
	margin: 15px 0;
}
.bottom-game-tj .item .down{
	display: block;
	width: 71px;
	height: 30px;
	line-height: 30px;
	border-radius: 6px;
	border: 1px solid var(--pm-c);
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	margin: 0 auto;
}