/**
 * SEAS 前台提示样式。
 * 仅在“启用前台显示”开启时加载，用于站长自测提交状态。
 */

.seas-front-notice {
	margin: 12px 0;
	padding: 10px 14px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #f6f7f7;
	color: #3c434a;
	font-size: 14px;
	line-height: 1.6;
	opacity: 1;
	transition: opacity 0.5s ease;
}

/* JS 达到设定时长后添加此类，实现淡出 */
.seas-front-notice.seas-fade-out {
	opacity: 0;
}

.seas-front-notice-item + .seas-front-notice-item {
	margin-top: 4px;
}

.seas-status-success {
	color: #007017;
}

.seas-status-fail,
.seas-status-not_configured {
	color: #8a1f1f;
}

.seas-status-wait {
	color: #996800;
}

.seas-status-info,
.seas-status-disabled {
	color: #1e5aa8;
}
