/* 提醒框 */
.alert {
	width:200px;position: fixed;top: 180px;left:50%;margin-left: -100px;background: rgba(40,40,40,.75);text-align: center;border-radius: 5px;color: #fff;
    z-index: 1000;line-height: 24px;
}
.alert .close {
    float: right;
    height: auto;margin: 0 0 auto auto;opacity: .4;
}
.alert .close:hover {
	color: #000;
}
button.close {
  padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}
.close {
    display: inline-block;
    text-align: center;
    width: 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.alert-info {
	background-color: #0e90d2;
    border-color: #BCE8F1;
}
.alert-error {
	border-color: #eed3d7;
	background-color: #FF6666;
}
.alert-success {
    background-color: #5eb95e;
    border-color: #eed3d7;
}

.alert-content{
	padding: 20px;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 24px;
}
