/* Aurora Admin NotificationPro 样式 — 对齐 组件7.txt NotificationPro:右上角通知,标题+描述+图标,可关闭 */ .aa-notification-wrap { position: fixed; top: 16px; right: 16px; z-index: 3000; width: 320px; display: flex; flex-direction: column; gap: 10px; pointer-events: none; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); } .aa-notification { pointer-events: auto; background: #fff; border: 1px solid #E8ECF1; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); padding: 14px 16px; display: flex; gap: 10px; } .aa-notification-icon { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; color: #fff; font-size: 12px; text-align: center; line-height: 18px; margin-top: 2px; } .aa-notification.is-success .aa-notification-icon { background: #2E7D0A; } .aa-notification.is-error .aa-notification-icon { background: #CF1322; } .aa-notification.is-warning .aa-notification-icon { background: #8C5A00; } .aa-notification.is-info .aa-notification-icon { background: #2F54EB; } .aa-notification-body { flex: 1; } .aa-notification-title { font-size: 14px; font-weight: 500; color: #1F2329; } .aa-notification-desc { font-size: 13px; color: #6E6E6E; margin-top: 4px; line-height: 1.5; } .aa-notification-close { color: #6E6E6E; cursor: pointer; font-size: 14px; line-height: 1; }