export function createPanel() { const panel = document.createElement("div"); panel.style.cssText = ` position: fixed; bottom: 24px; right: 24px; z-index: 999999; background: white; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.15); padding: 10px; width: 220px; font-size: 14px; `; panel.innerHTML = `
支持语音 / 回车文字指令
`; document.body.appendChild(panel); return panel; }