st.parentNode) toast.remove(); }, 2000); } // 微信复制 const wechatBtn = document.getElementById('wechatCopyBtn'); if (wechatBtn) { wechatBtn.addEventListener('click', async function(e) { e.preventDefault(); try { await navigator.clipboard.writeText(WECHAT_ID); showMessage('✅ 微信号Runner350已复制'); } catch (err) { const textarea = document.createElement('textarea'); textarea.value = WECHAT_ID; document.body.appendChild(textarea); textarea.select(); document.execCommand('copy'); document.body.removeChild(textarea); showMessage('✅ 微信号Runner350已复制'); } }); } // 一键拨号 const phoneBtn = document.getElementById('phoneCallBtn'); if (phoneBtn) { phoneBtn.addEventListener('click', function(e) { e.preventDefault(); window.location.href = `tel:15553020099`; }); } })();