$toast-height:46px;
$toast-lineheight:25px;
.ct-toast {
    position: fixed;
    height: $toast-height;
    top: 0;
    left: 50%;
    max-width: 500px;
    overflow: hidden;
    margin:auto;
    background-color: $info-bg;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #fff;
    transition: .5s ease-out;
    font-size: 14px;
    border-radius: 0 0 3px 3px;
    padding: 10px 15px;  
    z-index: 2500;
    &.ct-toast__primary {
        background-color:$primary-bg; 
    }
    &.ct-toast__success {
        background-color:$success-bg;
    }
    &.ct-toast__warning {
        background-color:$warning-bg;
    }
    &.ct-toast__danger { 
        background-color:$error-bg; 
    }
    &.ct-toast__bottom {
        top: auto; 
        bottom:0; 
        border-radius: 3px 3px 0 0; 
    }
    .ct-toast-inner {    
        display: inline-block; 
        white-space: nowrap;
        text-overflow: ellipsis;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    .icon-close {
        font-size: 13px;
        margin-left: 10px;
        color: #fff;
    }

} 
// 顶部弹出
.bounceTop-enter-active, .bounceTop-leave-active,.bounceBottom-enter-active, .bounceBottom-leave-active {
    transition: all 0.5s;
  }
.bounceTop-enter-to,.bounceBottom-enter-to {
    transform: translate3d(0,0,0);
}
.bounceTop-enter,.bounceTop-leave-to {
    transform: translate3d(0,-48px,0);
}
//底部弹出
.bounceBottom-enter,.bounceBottom-leave-to {
    transform: translate3d(0,48px,0);
}