66 lines
2.1 KiB
HTML
66 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="zh-Hant">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>2026 世界盃專業投注研究台 | 比賽總表</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body data-page="matches">
|
|
<header>
|
|
<div class="top-nav">
|
|
<a href="index.html" class="nav-brand">2026FIFA Betting Ops</a>
|
|
<a href="index.html">總覽</a>
|
|
<a href="analysis.html">賽事分析</a>
|
|
<a href="matches.html">比賽總表</a>
|
|
<a href="professional-dashboard.html">專業儀表</a>
|
|
<a href="upsets.html">爆冷觀察</a>
|
|
<a href="quantitative.html">量化模型</a>
|
|
<a href="sources.html">外部台帳</a>
|
|
<a href="portfolio.html">投注紀錄</a>
|
|
</div>
|
|
<div class="page">
|
|
<div class="hero">
|
|
<h1>比賽總表</h1>
|
|
<p>逐場顯示推薦、爆冷、新聞、賽果前兆與風險分層。</p>
|
|
</div>
|
|
<div class="actions">
|
|
<button id="btnRefresh">更新賠率與新聞</button>
|
|
<button id="btnAnalyze">重算策略</button>
|
|
<label>
|
|
市場:
|
|
<select id="marketFilter">
|
|
<option value="all">全部</option>
|
|
<option value="h2h">1X2</option>
|
|
<option value="totals">大/小</option>
|
|
<option value="btts">BTTS</option>
|
|
<option value="spreads">讓球</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
<div id="status" class="status"></div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="page">
|
|
<section>
|
|
<h2>賽事總覽(逐場)</h2>
|
|
<div id="summaryCards" class="grid"></div>
|
|
</section>
|
|
|
|
<section>
|
|
<div id="matchContainer"></div>
|
|
</section>
|
|
|
|
<section>
|
|
<article class="card">
|
|
<h3>賽程密度</h3>
|
|
<div id="scheduleDensityChart" class="mini-chart"></div>
|
|
</article>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|