/* 修改所有toast的背景色和文字颜色 */
.toast {
    background-color: #4CAF50 !important;
    color: white !important;
    width: auto!important; /* 修改宽度 */
}

/* 修改成功提示的样式 */
.toast-success {
    background-color: #4CAF50 !important;
}

/* 修改错误提示的样式 */
.toast-error {
    background-color: #f44336 !important;
}

/* 修改警告提示的样式 */
.toast-warning {
    background-color: #ff9800 !important;
}

/* 修改信息提示的样式 */
.toast-info {
    background-color: #2196F3 !important;
}

/* 修改toast标题样式 */
.toast-title {
    font-weight: bold;
    font-size: 16px;
}

/* 修改toast消息内容样式 */
.toast-message {
    font-size: 14px;
    line-height: 1.4;
}

/* 修改关闭按钮样式 */
.toast-close-button {
    color: white;
    opacity: 0.8;
    font-size: 20px;
}


