.message .button {
	line-height: 30px;
	text-align: center;
	font-family: "microsoft yahei";
	color: white;
	font-size: .875em;
	cursor: pointer;
	padding: 0 20px;
	border-radius: 5px;
	margin: 15px 15px 0 0;
	display: inline-block;
	float: none;
	outline: none;
}

.message span {
	font-size: 1.5em;
	font-family: "microsoft yahei";
}

.message em {
	font-style: normal;
	font-weight: normal;
	font-size: .875em;
	color: #999;
	display: block;
}

.message.error {
	background-color: #fff9f8;
	border: 1px #fdc9c3 solid;
	padding-left: 80px;
}

.message .wrap {
	margin: 0 auto;
	padding: 30px 0;
	text-align:center;
	line-height:30px;
}

.message .wrap:before {
	content: " ";
	display: inline-block;
	width: 52px;
	height: 52px;
	position:relative;
	vertical-align:middle;
	margin-right: 20px;
}

.message.error .wrap:before {
	background:
		
		no-repeat right top;
}

.message.error span {
	color: #f97474;
}

.message.error .button {
	background-color: #f97474;
}

.message.error .button:hover {
	background-color: #dc483a;
}

.message.success {
	background-color: #f8f4f2;
	border: 1px #dfc5c1 solid;
	margin-bottom: 20px;
}

.message.success .wrap:before {
	background:
		
		no-repeat right top;
}

.message.success span {
	color: #dc483a;
}

.message.success .button {
	background-color: #dc483a;
}

.message.success .button:hover {
	background-color: #f97474;
}

.message.warn {
	background-color: #fffee0;
	border: 1px #e7e371 solid;
	padding-left: 80px;
}

.message.warn .wrap:before {
	background:
		
		no-repeat right top;
}

.message.warn span {
	color: #ff7900;
}

.message.warn .button {
	background-color: #f5a300;
}

.message.warn .button:hover {
	background-color: #f97474;
}

@media screen and (max-width: 720px) {
	.message .button {
		text-align: center;
		color: white;
		padding: 0 20px;
		margin-top: 10px;
		display: inline-block;
		float: none;
		width: auto;
		height: 40px;
		line-height: 40px;
		outline: none;
	}
	.message.error,.message.success,.message.warn {
		background-color: #fff;
		border: 0;
		padding: 20px;
		padding-top: 50px;
	}
	.message .wrap {
		padding: 0;
	}
	.message span {
		font-size: 1em;
	}
	.message .wrap:before {
		height: 100px;
	}
}