<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.notice-wrap {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 250px;
	z-index: 9999;
}

* html .notice-wrap {
	position: absolute;		
}
 
.notice-item {
	background: #333;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	color: #fff;
	padding:12px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

.notice-item-close {
	position: absolute;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	right: 6px;
	top: 6px;
	cursor: pointer;
}
.notice-item.error{
	background: #900;
}
.notice-item.success{
	background: #090;
}
.notice-item p{
	color: #fff;
}</pre></body></html>