// 聊天室右下角 Toast 通知组件,提供 window.chatToast.show 兼容入口。 /** * 淡出并移除 Toast 卡片。 * * @param {HTMLElement} card * @returns {void} */ function dismissToast(card) { card.style.opacity = "0"; window.setTimeout(() => card.remove(), 400); } /** * 创建右下角 Toast 通知 API。 * * @param {HTMLElement} container * @returns {{show: Function}} */ function createChatToast(container) { return { /** * 显示一条 Toast 通知卡片。 * * @param {object} options * @param {string} options.title 标题文字 * @param {string} options.message 内容 HTML * @param {string} [options.icon] 左侧 Emoji * @param {string} [options.color] 强调色 * @param {number} [options.duration] 自动消失毫秒,0 表示不自动消失 * @param {object|null} [options.action] 操作按钮 { label, onClick } * @returns {void} */ show({ title, message, icon = "💬", color = "#336699", duration = 6000, action = null, }) { const card = document.createElement("div"); card.style.cssText = ` background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 8px 32px rgba(0,0,0,.18); min-width:260px; max-width:320px; font-size:13px; color:#374151; line-height:1.6; pointer-events:all; animation:toastSlideIn .3s ease; opacity:1; transition:opacity .4s; `; const actionHtml = action ? `