/* ======================================
           右下角提示卡片（新增 - 适配本站风格）
           ====================================== */
.toast-notice {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /*border: 1px solid rgba(212, 168, 168, 0.4);*/
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 8px 30px rgba(212, 168, 168, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.toast-notice.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-success .toast-icon {
    color: #67c23a;
    background: rgba(103, 194, 58, 0.1);
}

.toast-warning .toast-icon {
    color: #e6a23c;
    background: rgba(230, 162, 60, 0.1);
}

.toast-error .toast-icon {
    color: #f56c6c;
    background: rgba(245, 108, 108, 0.1);
}

.toast-info .toast-icon {
    color: #409eff;
    background: rgba(64, 158, 255, 0.1);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 15px;
    color: #7d6a6a;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: 'Ma Shan Zheng', cursive;
}

.toast-message {
    font-size: 14px;
    color: #a89696;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .toast-notice {
        right: 15px;
        bottom: 15px;
        max-width: 260px;
        padding: 12px 15px;
    }
}

@media (max-width: 992px) {
    .toast-notice {
        right: 20px;
        bottom: 20px;
        max-width: 280px;
        padding: 15px 18px;
    }

}


