/* 提示框容器样式 */
.dz-alert-container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    width: 80%;
    max-width: 600px;
}

.dz-alert-fade-in {
    animation: dzFadeIn 0.3s ease-out forwards;
}

@keyframes dzFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dz-alert-fade-out {
    animation: dzFadeOut 0.3s ease-in forwards;
}

@keyframes dzFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.dz-alert {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    border: none;
}

.dz-alert .fa {
    font-size: 1.25rem;
    margin-right: 1rem;
}

.dz-alert p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.dz-alert-primary {
    background-color: #0d6efd;
    color: white;
}

.dz-alert-secondary {
    background-color: #6c757d;
    color: white;
}

.dz-alert-success {
    background-color: #198754;
    color: white;
}

.dz-alert-danger {
    background-color: #dc3545;
    color: white;
}

.dz-alert-warning {
    background-color: #ffc107;
    color: #333;
}
