/*404遮罩样式*/
#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{}
#app_info li {
	display: inline-block;
	width: 33.33%;
	color:#333;
	font-size: 13px;
	margin: 10px 0;
}
#app_info li b {
	cursor: pointer;
	color:#333;
	font-size: 13px;
	font-weight: normal;
}
#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: var(--pm-c);
	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_body p {
    margin: 10px 0;
    line-height: 28px;
    font-size: 13px;
	color:#333;
}
#app_info_cover .app_info_body b {
	font-size: 13px;
}
#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: var(--pm-c);
	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%;
	}
	#app_info_cover .app_info_main {
		width: 98%;
	}
	#app_info_cover .app_info_close {
		font-size :16px;
		line-height: 42px;
	}
}

.pages,.pageWrap {
    padding: 1rem 0;
    -webkit-justify-content: space-around;
    display: -webkit-flex;
}
.pages a.a1 {
    display: block;
    width: 4rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    font-size: .32rem;
    color: #333;
    border-radius: 0.06rem;
    background: #fff;
    margin: 3px;
}
.pages a {
    display: none;
}
.pages span {
    width: 4rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    font-size: .38rem;
    color: #333;
    border-radius: 0.06rem;
    display: block;
    border-color: #f9602c;
    background: #FD4B4B;
}
.down_btn {
    height: 60px;
    background: #40aae2;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: #fff;
    margin-bottom: 5px;
    display: none;
    border-radius: 10px;
    box-shadow: 3px 4px 3px 0px #000;
    animation: shareCodeBtnAn 0.5s ease-in-out infinite alternate;
}
.down_btn a {
    color: #fff;
    display: block;
}

@keyframes shareCodeBtnAn {
    from {
        transform: scale(0.93);
    }

    to {
        transform: scale(1);
    }
}