From e5a8cd9b196305a9bf066417d31902acb024fbf7 Mon Sep 17 00:00:00 2001 From: KQL Date: Thu, 4 Dec 2025 18:59:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DUI=E6=96=87=E5=AD=97?= =?UTF-8?q?=E6=A8=AA=E5=90=91=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98=EF=BC=8C?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E7=BA=B5=E5=90=91=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 uiLayer.style.display 从 'flex' 改为 'block' - 确保标题和副标题垂直堆叠显示 - 修复用户反馈的文字左右排列问题 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 547f98d..c1055d8 100644 --- a/js/main.js +++ b/js/main.js @@ -124,7 +124,7 @@ class App { this.mapInterface.style.opacity = '0'; // 重置UI层和提示文字的状态 - this.uiLayer.style.display = 'flex'; + this.uiLayer.style.display = 'block'; this.hint.style.display = 'block'; // 不设置 opacity,让GSAP的 fromTo() 控制