﻿/* CSS Document */
/*
编写者：享健丽科技
时间：2025年9月11日
*/


/* 弹窗样式 - 极简版 */
.alert-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3a3a3a;
    color:#ddd;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 80%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.alert-toast.show {
    opacity: 1;
}
