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

@@ -55,7 +55,7 @@ function continueBrowsing() {
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.35);
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}
@@ -64,11 +64,11 @@ function continueBrowsing() {
position: relative;
width: 90%;
max-width: 360px;
background: #FFFFFF;
border: 1px solid #E5E7EB;
background: var(--bg-card-elevated);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px 24px 24px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}
.close-btn {
@@ -77,7 +77,7 @@ function continueBrowsing() {
right: 14px;
background: none;
border: none;
color: #6B7280;
color: var(--text-muted);
font-size: 18px;
cursor: pointer;
padding: 4px;
@@ -85,20 +85,20 @@ function continueBrowsing() {
}
.close-btn:hover {
color: #1A1A2E;
color: var(--text);
}
.login-title {
font-size: 18px;
font-weight: 800;
color: #003D6B;
color: var(--primary);
margin: 0 0 6px;
text-align: center;
}
.login-hint {
font-size: 12px;
color: #6B7280;
color: var(--text-muted);
text-align: center;
margin: 0 0 24px;
}
@@ -113,7 +113,7 @@ function continueBrowsing() {
padding: 12px;
border-radius: 8px;
border: none;
background: #003D6B;
background: var(--gradient-primary);
color: #FFFFFF;
font-size: 15px;
font-weight: 800;
@@ -129,9 +129,9 @@ function continueBrowsing() {
.login-secondary {
padding: 10px;
border-radius: 8px;
border: 1px solid #E5E7EB;
border: 1px solid var(--border);
background: transparent;
color: #6B7280;
color: var(--text-muted);
font-size: 14px;
font-weight: 600;
cursor: pointer;
@@ -140,8 +140,8 @@ function continueBrowsing() {
}
.login-secondary:active {
color: #1A1A2E;
border-color: #003D6B;
color: var(--text);
border-color: var(--primary);
}
.fade-enter-active,