.info {
    background: #f5f7fa;
    color: #909399;
    border: 1px solid #909399;
    box-sizing: border-box;
}
.success {
    background: #f0f9eb;
    color: #67c23a;
    border: 1px solid #67c23a;
    box-sizing: border-box;
}
.error {
    background: #fef0f0;
    color:#f56c6c ;
    border: 1px solid #f56c6c;
    box-sizing: border-box;
}
.message {
    position: fixed;
    top: 50px;
    height: 40px;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 1rem;
    text-align: center;
    line-height: 40px;
    min-width: 150px;
    max-width: 650px;
    transform: translateX(-50%);
    left: 50%;
    border-radius: 500px;
    box-shadow: 4px 4px 50px -20px #00000080;
    animation: scroll .15s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
    z-index: 999999999;
}

@keyframes scroll {
    0% {
        top: 0;
        opacity: 0;
    }
    100% {
       top: 50px;
        opacity: .7;
    }
}