.showmessage{
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	opacity:0;
	transition:all 0.3s;
	background-color:rgba(0,0,0,0.2);
	z-index:-1;
}
.showmessage.selected{
	opacity:1;
	z-index:9999;
}
.showmessage .message-box{
	width:350px;
	background-color:#fff;
	border-radius:4px;
	padding:20px;
	box-sizing:border-box;
	transform:scale(0.5);
	opacity:0;
	transition:transform 0.3s, opacity 0.3s;
	transition-delay:0.3s;
	box-shadow:0 0 20px 0 rgba(0,0,0,0.4);
	margin:20px;
}
.showmessage .message-box.selected{
	transform:scale(1);
	opacity:1;
}
.showmessage .message-box .message-type{
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    border-radius: 50px;
    background-color: #2474cb;
    transform: rotate(180deg);
}
.showmessage .message-box .message-txt{
	margin:30px 0 20px;
}
.showmessage .message-box .message-line{
	width:100%;
	border-bottom:1px solid #f0f0f0;
	margin-bottom:20px;
	display:none;
}
.showmessage .message-box .message-button{
    width:100px;
	height:35px;
	line-height:35px;
	text-align:center;
    border-radius: 4px;
    background-color: #2474cb;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}