礼盒开箱
点击礼盒,开启你的专属惊喜
本次已开箱 0 剩余 3
🎁
奖品名称
恭喜获得
选好你要开的礼盒,点击按钮开始!
🎉
恭喜中奖!
您获得了 iPhone 15 Pro
function mobileSwitchTab(tab) { var left = document.getElementById('panel-left'); var right = document.getElementById('panel-right'); document.querySelectorAll('.mobile-tab').forEach(function(b){b.classList.remove('active');}); var btn = document.getElementById('tab-' + tab); if (btn) btn.classList.add('active'); if (tab === 'config') { if (left) left.classList.toggle('expanded'); if (right) right.classList.remove('expanded'); } else if (tab === 'data') { if (right) right.classList.toggle('expanded'); if (left) left.classList.remove('expanded'); } else { if (left) left.classList.remove('expanded'); if (right) right.classList.remove('expanded'); } } function toggleSound() { var on = GameSound.toggle(); var icon = document.getElementById('sound-icon'); if (icon) icon.textContent = on ? '🔊' : '🔇'; }