@charset "utf-8";
/* CSS reset */
*, *:before, *:after{box-sizing:border-box}
body,div,p,a,table,textarea,form,input,img,ul,li,dl,dt,dd{margin:0;padding:0;list-style:none;}
body,th,td,button,input,select,textarea{text-align: left;font-family:"Microsoft Yahei","Hiragino Sans GB","Helvetica Neue",Helvetica,tahoma,arial,Verdana,sans-serif,"WenQuanYi Micro Hei","\5B8B\4F53"; font-size:1.6rem;color: #333;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-webkit-appearance:none;}
body{font-size: 1.6rem;min-width:320px;overflow-x:hidden;overflow-y:scroll; width:100%; height:100%; background:#fff;}
input,button{font-size:1rem}

header{
	float:left;
	width:100%;
	overflow:hidden;
	line-height:2rem;
	text-align:center;
}
header .title{
	float:left;
	text-align:left;
	width:80%;
	margin:0.4rem 0 0 0.8rem;
	font-size:1.5rem;
	color:#208ec6;
	font-weight:normal;
}

header .back-home{
	float:right;
	width:50px;
	height:50px;
	padding:13px;
	box-sizing:border-box;
	cursor:pointer;
	position:absolute;
	right:0;
}

header .back-home svg{
	float:left;
	width:24px;
	height:24px;
	margin:0;
	padding:0;
}

#menu{
	float:left;
	width:100%;
	padding:10px;
	box-sizing:border-box;
}
#menu li{
	width:100%;
	float:left;
	clear:both;
	padding:5px 10px;
	margin:0 0 10px 0;
	font-size:1.2rem;
	/*
	border:#d8d8d8 1px solid;
	border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
	border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
	*/
	border-bottom:#d8d8d8 1px solid;
	overflow:hidden;
	box-sizing:border-box;
	cursor:pointer;
	list-style:none;
}


#content{
	float:left;
	width:100%;
	height:100%;
	padding:10px;
	box-sizing:border-box;
	font-size:14px;
	line-height:22px;
	color:#444;
}

#content a{
	color:#208ec6;
}

#content .hr{
	clear:both;
	float:left;
	margin:20px 0 20px 0;
	height:1px;
	width:100%;
	overflow:hidden;
	background:#d8d8d8;
}


#content .dashed{
	clear:both;
	float:left;
	margin:20px 0 20px 0;
	height:1px;
	width:100%;
	overflow:hidden;
	background:#fff;
	border-bottom:#d8d8d8 1px dashed;
}

#content > img,#content > ul > img{
	max-width:480px;
	margin:10px 0;
}
@media screen and (max-width: 480px) {
	#content > img,#content > ul > img{
		max-width:100%;
		margin:10px 0;
	}
}

#content p{
	padding:10px 0 10px 0;
}

#content p img,#content ul li img{
	/* height:16px; */
	max-height:32px;
}

#content ul{
	padding:5px 0 5px 0;
}


#content h2{
	color:#000;
	font-size:22px;
	line-height:28px;
	font-weight:normal;
	padding:0;
	margin:20px 0 5px 0;
}

#content h3{
	color:#444;
	font-size:16px;
	line-height:28px;
	font-weight:bold;
	padding:0;
	margin:20px 0 5px 0;
}

#content ul li{
	list-style:disc;
	list-style-position:outside;
	padding:3px 0 0 5px;
	margin-left:20px;
}

#content .decimal > li{
	list-style:decimal;
}

#content ul li ul li{
	list-style:circle;
}

.gotop{
	position:fixed;
	right:20px;
	bottom:20px;
	width:50px;
	height:50px;
	background:#000;
	border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
	border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
	overflow:hidden;
	padding:13px;
	box-sizing:border-box;
	cursor:pointer;
	background:rgba(0,0,0,0.5);
	filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr=#55000000, endColorstr=#55000000);
	display:none;
}
.gotop svg{
	float:left;
	width:24px;
	height:24px;
}