feat(player): 全站 UI 主题重构与布局优化 — 从暗金奢华风格迁移至 Pinnacle 风格蓝白专业主题

一、全局主题重构(52 文件)
  - 设计体系从深色/金色奢华调性全面迁移至 Pinnacle 风格的清爽专业调性
  - 主色:深海蓝 #003D6B,辅色:橙色 #F8971F / #E8870A(赔率强调色)
  - 背景从纯黑/深灰改为白色/浅灰 (#F5F7FA, #E8EDF2)
  - 更新 CSS 变量设计令牌体系:--primary, --border, --text-muted, --bg-body, --bg-hover, --radius-sm 等
  - styles.css 全量重写,所有组件 scoped CSS 同步适配

二、紧凑布局优化
  - 首页:BannerCarousel 轮播高度缩减 (clamp 148→120px),MatchBetCard 内边距/间距/字号全面收紧
  - 首页:赛事卡片 padding 14px→10px,队旗尺寸 72×48→56×38,VS 区域缩小
  - 个人中心:钱包横幅宽高比 2/1→1.75/1,设置单元格 min-height 48→42px
  - 钱包页:交易行 padding/字号收紧,金额字号 15→14px
  - MainLayout:顶栏高度 50→48px,底部导航间距微调

三、对比度与可读性增强
  - 赛事详情/投注页背景从透明加深至 #E8EDF2
  - 所有卡片边框从 #E5E7EB 加深至 #CBD5E1,阴影强度提升
  - 盘口选择面板背景 #F5F7FA→#EDF0F4,增加 border-top 分隔线
  - 赔率颜色从 #F8971F 加深至 #E8870A,选中态 border-width 加粗至 2px
  - 标签字号增大并加粗 (font-weight: 600),颜色从 #6B7280 加深至 #4B5563

四、首页快捷入口 & 个人中心网格布局
  - 首页新增 4 宫格快捷入口(投注/充值/账单/活动),彩色图标区分功能
  - 个人中心重构为「4 宫格快捷操作 + 列表」结构:钱包/充值/返水/记录
  - 移除原个人中心金色入口列表项,精简设置列表为修改资料/投注规则/语言

五、顶部导航栏重设计
  - Logo 从 img 标签替换为内联 SVG 纯文字:THE(灰) + BET(深蓝) + 365(橙)
  - 客服按钮改为纯图标圆形按钮 (32×32px),增加竖线分隔符
  - Chip 高度 34→32px,间距 8→6px
  - 底部导航激活态指示条加粗至 2.5px,左右缩进从 22% 调至 18%

六、SVG Favicon
  - 新增纯路径 SVG favicon(无 <text> 元素,确保浏览器 favicon 沙箱兼容)
  - 深蓝圆角方块 + 白色 "B" 字母路径 + 橙色圆点 + 白色 "365" 数字路径
  - index.html 更新 favicon 引用为 /favicon.svg

🤖 Generated with [Qoder][https://qoder.com]
This commit is contained in:
2026-06-16 12:24:41 +08:00
parent 06d85953ba
commit 4a93fcfce0
52 changed files with 1605 additions and 1519 deletions

View File

@@ -130,30 +130,32 @@ const liveScoreText = computed(() => {
<style scoped>
.match-card {
position: relative;
background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
border: 1px solid rgba(140, 140, 140, 0.35);
border-radius: 6px;
padding: 10px 8px 10px;
background: #FFFFFF;
border: 1px solid #E5E7EB;
border-radius: 8px;
padding: 8px 6px 8px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
gap: 6px;
min-width: 0;
overflow: hidden;
cursor: pointer;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
transition: transform 0.15s, box-shadow 0.15s;
}
.match-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(100, 100, 100, 0.08) 0%, transparent 50%, rgba(80, 80, 80, 0.05) 100%);
background: linear-gradient(135deg, rgba(0, 61, 107, 0.02) 0%, transparent 50%, rgba(0, 91, 159, 0.02) 100%);
pointer-events: none;
z-index: 0;
}
.match-card--phase {
/* inherits base dark style */
opacity: 0.95;
}
.teams-row {
@@ -170,9 +172,9 @@ const liveScoreText = computed(() => {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
gap: 4px;
min-width: 0;
transform: translateY(8px);
transform: translateY(6px);
}
.team-name {
@@ -180,32 +182,31 @@ const liveScoreText = computed(() => {
display: flex;
align-items: center;
justify-content: center;
font-size: 17px;
font-weight: 900;
color: #fff;
font-size: 14px;
font-weight: 700;
color: #1A1A2E;
line-height: 1.2;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
word-break: break-word;
text-align: center;
padding: 0 6px;
padding: 0 4px;
align-self: stretch;
}
.match-card--phase .team-name {
color: #d8d8d8;
color: #4B5563;
}
.team-flag {
width: 72px;
height: 48px;
width: 56px;
height: 38px;
object-fit: cover;
border-radius: 3px;
display: block;
}
.team-flag.flag-logo {
width: 48px;
height: 48px;
width: 38px;
height: 38px;
object-fit: contain;
}
@@ -215,37 +216,33 @@ const liveScoreText = computed(() => {
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
min-width: 56px;
gap: 3px;
min-width: 48px;
}
.kickoff {
font-size: 13px;
font-weight: 700;
color: #fff;
font-size: 12px;
font-weight: 600;
color: #1A1A2E;
line-height: 1.15;
white-space: normal;
text-align: center;
max-width: 96px;
max-width: 80px;
overflow-wrap: anywhere;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.live-score {
font-size: 20px;
font-size: 18px;
font-weight: 900;
color: #fff;
color: #003D6B;
line-height: 1;
letter-spacing: 0.04em;
}
.vs {
font-size: 22px;
font-size: 18px;
font-weight: 900;
color: #fff;
letter-spacing: 0.08em;
color: #003D6B;
line-height: 1;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}
.status-tag {
@@ -254,49 +251,48 @@ const liveScoreText = computed(() => {
right: 0;
z-index: 3;
font-size: 10px;
font-weight: 800;
padding: 3px 10px;
font-weight: 700;
padding: 2px 8px;
border-radius: 0 6px 0 8px;
line-height: 1.3;
white-space: nowrap;
letter-spacing: 0.02em;
}
.status-tag--open {
background: linear-gradient(135deg, #e8c84a, #d4a017);
color: #1a1a1a;
box-shadow: 0 2px 6px rgba(212, 160, 23, 0.4);
background: #FEF3C7;
color: #92400E;
border-bottom: 1px solid #FDE68A;
border-left: 1px solid #FDE68A;
}
.status-tag--settled {
background: linear-gradient(180deg, #2a2a3a 0%, #1a1a28 100%);
color: #8a9ab8;
border-bottom: 1px solid rgba(120, 140, 180, 0.3);
border-left: 1px solid rgba(120, 140, 180, 0.3);
background: #E8EDF2;
color: #4B5563;
border-bottom: 1px solid #D1D5DB;
border-left: 1px solid #D1D5DB;
}
.status-tag--pending {
background: linear-gradient(180deg, #3a3a2a 0%, #28251a 100%);
color: #c8a84e;
border-bottom: 1px solid rgba(200, 168, 78, 0.3);
border-left: 1px solid rgba(200, 168, 78, 0.3);
background: #FEF3C7;
color: #D97706;
border-bottom: 1px solid #FDE68A;
border-left: 1px solid #FDE68A;
}
.bet-btn {
position: relative;
z-index: 2;
width: auto;
min-width: 80px;
padding: 5px 24px;
min-width: 72px;
padding: 4px 20px;
border-radius: 6px;
font-size: 13px;
letter-spacing: 0.04em;
font-size: 12px;
line-height: 1.2;
}
.bet-btn--view {
background: #1a1a1a;
border: 1px solid #444;
color: #aaa;
background: #F5F7FA;
border: 1px solid #E5E7EB;
color: #6B7280;
}
</style>