/* 顶部导行条 */
.topBar{
	height:45px;
	background:#666;
	display:flex;
	justify-content:space-between;
	align-items:center;
	position: sticky;
	top:0px;
	z-index:999;
}
.topBar .left{
	position:relative;
	z-index:991;
	padding-left:10px;
	display:flex;
	align-items:center;
	cursor:pointer;
	text-decoration:none;
	color:#fff;
}
.topBar .left .icon{
	margin-right:5px;
}
.topBar .left .icon img{
	display:block;
	max-height:18px;
}

.topBar .center{
	position:absolute;
	text-align:center;
	width:100%;
	z-index:990;
	color:#fff;
	font-size:15px;
}

/* 底部导行 */
.nav{
	position: fixed;
	width:100%;
	max-width:760px;
	bottom:0px;
}
.navList{
	height:50px;
	background:#00a0e9;
	display:flex;
	z-index:9999;
	position:relative;
}
.navList .item{
	width:100%;
	display:block;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:15px;
	line-height:15px;
}
.navList .item .icon{
	margin-right:3px;
}
.navList .item .icon img{
	max-height:18px;
	display:block;
}
.navList .item.on{
	background:#0399dd;
}

/* 列表 */
.list .item{
	border-bottom:1px solid #fafafa;
}

.msg-title{
	color:#999;
	border-bottom:1px solid #eee;
	margin-bottom:10px;
	padding-bottom:10px;
}
.msg-content{
	padding:15px;
	max-height:80%;
	word-wrap:break-word;
	word-break:normal; 
	word-break:break-all; 
}
.msg-close{
	position:absolute;
	bottom:10px;
	width:100%;
	box-sizing:border-box;
	padding:10px;
}
.msg-close .van-button--round{
	background:#fafafa;
}