送金币弹窗:确认发放按钮颜色改为蓝底白字渐变

This commit is contained in:
2026-03-12 17:34:24 +08:00
parent 6400cb51ca
commit aa7a389ab2
@@ -1142,9 +1142,9 @@
{{-- 操作按钮 --}}
<div style="display:flex; justify-content:center; gap:10px; margin-bottom:20px;">
<button x-on:click="send()"
style="background:#d97706; color:#fff; border:none; border-radius:8px;
style="background:linear-gradient(135deg, #3b82f6, #2563eb); color:#fff; border:none; border-radius:8px;
padding:8px 20px; font-size:13px; font-weight:bold; cursor:pointer;
box-shadow:0 4px 12px rgba(0,0,0,0.25); transition:transform .12s, opacity .12s;"
box-shadow:0 4px 12px rgba(37,99,235,0.4); transition:transform .12s, opacity .12s;"
:style="(sending || !amount) ? 'opacity:.5; cursor:not-allowed; box-shadow:none;' : ''"
:disabled="sending || !amount"
onmouseover="if(!this.disabled) this.style.transform='translateY(-2px)'"