﻿/* Toast容器样式 */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}
/* Toast基本样式 */
.toast {
    min-width: 250px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #333;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Toast显示状态 */
.toast.show {
    opacity: 1;
}

/* Toast不同类型的样式 */
.toast.success {
    background-color: #4CAF50;
}

.toast.error {
    background-color: #F44336;
}

.toast.warning {
    background-color: #FF9800;
}

.toast.info {
    background-color: #2196F3;
}

/* Toast关闭按钮 */
.toast-close {
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
}