/* 弹窗基础样式 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 让弹窗居中 */
    padding: 15px 25px;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    text-align: center;
    z-index: 1000;
    opacity: 0.9; /* 设置透明度 */
    transition: opacity 0.5s ease-in-out;
}

/* 成功样式 */
.toast.success {
    background-color: rgba(0, 128, 0, 0.8); /* 绿色，透明度 0.8 */
}

/* 失败样式 */
.toast.error {
    background-color: rgba(255, 0, 0, 0.8); /* 红色，透明度 0.8 */
}
