diff --git a/frontend/src/pages/Matches.tsx b/frontend/src/pages/Matches.tsx
index b826585..a53a518 100644
--- a/frontend/src/pages/Matches.tsx
+++ b/frontend/src/pages/Matches.tsx
@@ -578,16 +578,16 @@ export default function Matches() {
{st.label}
- {/* 主队 + 比分 + 客队:移动端单行居中,桌面端 grid 分列 */}
-
+ {/* 主队 + 比分 + 客队:移动端 grid 三列(严格居中),桌面端 grid 分列 */}
+
{/* 主队(右对齐) */}
-
+
{homeName}
- {/* 比分 / VS */}
-
+ {/* 比分 / VS(严格居中) */}
+
{m.home_goals !== null && m.away_goals !== null ? (
{m.home_goals}:{m.away_goals}
@@ -603,7 +603,7 @@ export default function Matches() {
{/* 客队(左对齐) */}
-
+
{awayName}