feat(player): 统一移动端主题样式并优化多页面视觉一致性

将玩家端组件与核心页面全面切换为统一主题变量,优化卡片、按钮、弹窗、列表和盘口相关模块的视觉表现,并补充多语言文案以匹配新的交互与布局风格。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-16 15:55:28 +08:00
parent 4a93fcfce0
commit d2c0b575b7
51 changed files with 1539 additions and 1212 deletions

View File

@@ -158,7 +158,7 @@ const pullIndicatorStyle = () => ({
align-items: center;
gap: 12px;
text-align: center;
color: #6B7280;
color: var(--text-muted);
padding: 56px 20px;
font-weight: 600;
font-size: 14px;
@@ -179,8 +179,8 @@ const pullIndicatorStyle = () => ({
font-size: 13px;
padding: 6px 10px;
border: none;
border-bottom: 1px solid #E5E7EB;
background: #FFFFFF;
border-bottom: 1px solid var(--border);
background: var(--bg-card);
cursor: pointer;
}
@@ -189,7 +189,7 @@ const pullIndicatorStyle = () => ({
}
.tx-row:active {
background: #F5F7FA;
background: var(--bg-hover);
}
.tx-main {
@@ -208,7 +208,7 @@ const pullIndicatorStyle = () => ({
.tx-summary {
font-size: 11px;
color: #6B7280;
color: var(--text-muted);
font-weight: 600;
white-space: nowrap;
overflow: hidden;
@@ -222,11 +222,11 @@ const pullIndicatorStyle = () => ({
margin-top: 3px;
}
.tx-type { font-weight: 700; color: #1A1A2E; }
.pos { color: #003D6B; font-weight: 800; font-size: 14px; }
.neg { color: #DC2626; font-weight: 700; }
.tx-time { font-size: 11px; color: #6B7280; }
.tx-arrow { font-size: 16px; color: #6B7280; font-weight: 700; line-height: 1; }
.tx-type { font-weight: 700; color: var(--text); }
.pos { color: var(--accent-light); font-weight: 800; font-size: 14px; }
.neg { color: var(--danger); font-weight: 700; }
.tx-time { font-size: 11px; color: var(--text-muted); }
.tx-arrow { font-size: 16px; color: var(--text-muted); font-weight: 700; line-height: 1; }
.top-bar {
display: flex;
@@ -237,13 +237,13 @@ const pullIndicatorStyle = () => ({
}
.top-bar .more-link.secondary {
color: #005B9F;
color: var(--accent);
}
.more-link {
background: none;
border: none;
color: #003D6B;
color: var(--primary);
font-size: 12px;
font-weight: 600;
padding: 2px 6px;
@@ -256,5 +256,5 @@ const pullIndicatorStyle = () => ({
opacity: 1;
}
.empty { text-align: center; color: #6B7280; padding: 28px 14px; font-weight: 600; }
.empty { text-align: center; color: var(--text-muted); padding: 28px 14px; font-weight: 600; }
</style>