/**********移动版页面**********/

@charset"utf-8";

/*全局导航*/
nav{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 10rem;
	height: 50px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 -1px 2px rgba(0,0,0,0.25);
	z-index: 1;    
}
.m-nav{overflow: hidden;}
.m-navs{
	float: left;
	text-align: center;
	width: 2.5rem;
}
.m-navs a{
	display: block;
	width: 80px;
	height: 50px;
	padding-top: 30px;
	font-size: 10px;
	background: url("images/nav-normal.png") no-repeat;
	background-size: 100%;
	margin: 0 auto;
}
.m-navs a.active{
	background: url("images/nav-active.png") no-repeat;
	background-size: 100%;
}
.m-navs a,.m-navs a:hover,.m-navs a:visited,.m-navs a:active{color: #000;}
.m-navs:nth-child(1) a{background-position: center 0;}
.m-navs:nth-child(2) a{background-position: center 33%;}
.m-navs:nth-child(3) a{background-position: center 68%;}
.m-navs:nth-child(4) a{background-position: center 100%;}

/*固定头部*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 10rem;
	height: 40px;
	background-color: #15A5FE;
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	overflow: hidden;
	z-index: 1;
}
header a,header span{
	display: block;
	float: left;
}
header span.logo{
	width: 2.5rem;
	height: 40px;
	background: url("images/logo.png") center center no-repeat;
	background-size: 85px;
	text-indent: -999999px;
}
header a.search{
	width: 6rem;
	height: 30px;
	margin: 5px 0;
	font-size: 12px;
	color: #FFF;
	background: rgba(255,255,255,0.5) url("images/search.png") left center no-repeat;
	background-size: 25px;
	line-height: 30px;
	padding: 0 0.1rem 0 25px;
	border-radius: 4px;
}
header a.message{
	width: 1.5rem;
	height: 40px;
	background: url("images/message-wait.png") center center no-repeat;
	background-size: 60px;
}
header a.message.active{
	background-image: url("images/message-active.png");
}

/*回到顶部按钮*/
.top{
	position: fixed;
	bottom: 80px;
	right: 10px;
	height: 50px;
	width: 50px;
	background: #FFF url("images/top.png") center center no-repeat;
	background-size: 50%;
	border-radius: 50%;
	box-shadow: 0 0 1px rgba(0,0,0,0.25);
	text-indent: -999999px;
    cursor:pointer;
}

/*内部容器模块*/
.section{
	background-color: #FFF;
	box-shadow: 0 0 1px rgba(0,0,0,0.5);
	overflow: hidden;
	margin-bottom: 0.13rem;
}