/*弹窗框最外层遮罩层*/
#msgbox{
	position: fixed;
    overflow: visible;
    z-index: 1001;
    width: 100%;
    height: 100%;
    top: 0;
    /*opacity: 0.4;*/ 
    background: rgba(204,204,204,0.4);
    filter: Alpha(opacity=40);
}
/*弹窗样式*/
.msgmodal{
	background: #fff;
	width: 420px;
	height: 230px;
	border: 1px solid #E8E7E4;
	border-radius: 5px;
	position: fixed;
	top: 25%;
	left: 37%;
	box-shadow: 0 2px 3px #aaa;
}
/*弹窗标题*/
.titleh5{
	width: 100%;
	border-bottom: 1px solid #E8E7E4;
	height: 40px;
	padding: 5px 15px;
	line-height:35px;
}
.titleh5 a:hover{
	text-decoration: none;
}
.titletext{
	text-align: left;
	float: left;
	font-size: 15px;
	font-weight: bold;
	color: #51514E;
}
/*关闭按钮*/
.closemsg{
	float: right;
	color: #aaa;
	cursor: pointer;
	font-size: 18px;
}
/*弹窗显示内容*/
.msgcont{
	width: 100%;
	height:150px ;
    border-bottom:1px solid #E8E7E4;
    text-align: center;
}
.contentmsg{
	background-color: #fff;
	font-size: 13px;
	padding:20px 0px; 
	text-align:left;
	width: 245px;
	color: #797671;
}
/*弹窗图标*/
.msgicon{
	padding:0px 0px 0px 50px;
}
/*弹窗底部*/
.msgbottom{
	width: 100%;
	height: 40px;
	text-align: right;
	line-height: 40px;
	padding: 0 10px;
}
/*确定按钮*/
.msgbottom .btnconfirmb{
	background: #008BD0;
	color: #fff;
	padding: 3px 10px;
	text-align: center;
	border: 1px solid #008BD0;
	border-radius: 3px;
	margin-left: 5px;
	cursor: pointer;
	text-decoration: none;
}
/*取消按钮*/
.msgbottom .btncancel{
	background: #fff;
	color: #51514E;
	padding: 4px 10px;
	text-align: center;
	border: 1px solid #E8E7E4;
	border-radius: 3px;
	margin-left: 5px;
	cursor: pointer;
	text-decoration: none;
}
.msgbottom a:hover{
	text-decoration: none;
}
