| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <style>
- :root {
- --bg-primary: #0A1A2F;
- --bg-secondary: #10264A;
- --card-bg-from: #17294A;
- --card-bg-to: #101F3B;
- --card-border: rgba(255,255,255,0.07);
- --card-radius: 14px;
- --text-primary: #F5F8FC;
- --text-secondary: rgba(235,243,255,0.72);
- --accent-1: #FF8C42;
- --accent-2: #5AB0FF;
- --accent-3: #FF6B9D;
- --accent-4: #10B981;
- --five-earth: #FF8C42;
- --five-fire: #FF6B9D;
- --five-metal: #6366F1;
- --five-wood: #10B981;
- --five-water: #F59E0B;
- --grid-dot-color: #FFFFFF;
- --grid-dot-opacity: 0.04;
- --grid-size: 44px;
- --font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
- --display-font: 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
- }
- body {
- width: 1280px; height: 720px; overflow: hidden;
- background: var(--bg-primary);
- font-family: var(--font-family);
- position: relative;
- margin: 0; padding: 0;
- color: var(--text-primary);
- }
- /* Background Decoration */
- .grid-overlay {
- position: absolute; inset: 0;
- background-image: radial-gradient(var(--grid-dot-color) 1px, transparent 1px);
- background-size: var(--grid-size) var(--grid-size);
- opacity: var(--grid-dot-opacity);
- z-index: 0;
- pointer-events: none;
- }
- .hero-image-container {
- position: absolute; right: 0; top: 0; width: 60%; height: 100%;
- z-index: 1;
- overflow: hidden;
- }
- .hero-image-container img {
- width: 100%; height: 100%; object-fit: cover;
- }
- .hero-mask {
- position: absolute; inset: 0;
- background: linear-gradient(to right, var(--bg-primary) 0%, transparent 30%);
- z-index: 2;
- }
- /* Section Layout */
- .section-content {
- position: absolute; left: 80px; top: 180px; width: 600px;
- z-index: 10;
- }
- .section-title {
- font-family: var(--display-font);
- font-size: 64px; font-weight: 900; line-height: 1.1;
- margin: 0 0 32px 0;
- letter-spacing: -0.02em;
- }
- .section-title span {
- color: var(--accent-1);
- }
- .anchor-card {
- data-card-id="c1";
- background: linear-gradient(135deg, var(--card-bg-from), var(--card-bg-to));
- border: 1px solid var(--card-border);
- border-radius: var(--card-radius);
- padding: 32px;
- box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
- transform: translateY(0);
- position: relative;
- }
- .card-headline {
- font-size: 24px; font-weight: 700; color: var(--text-primary);
- margin: 0 0 16px 0;
- display: flex; align-items: center; gap: 12px;
- }
- .headline-bar {
- width: 4px; height: 24px; background: var(--accent-1); border-radius: 2px;
- display: inline-block;
- }
- .card-body {
- font-size: 18px; line-height: 1.6; color: var(--text-secondary);
- margin: 0;
- }
- .slide-footer {
- position: absolute; bottom: 30px; left: 40px; right: 40px; height: 20px;
- display: flex; justify-content: space-between; align-items: center; z-index: 10;
- }
- .footer-section { font-size: 10px; color: var(--text-secondary); opacity: 0.5; letter-spacing: 1px; text-transform: uppercase; }
- .footer-page { font-size: 10px; color: var(--text-secondary); opacity: 0.5; font-variant-numeric: tabular-nums; }
- </style>
- </head>
- <body>
- <div class="grid-overlay" data-decoration-layer="background" aria-hidden="true"></div>
-
- <div class="hero-image-container" data-decoration-layer="background" aria-hidden="true">
- <img src="../images/slide_15_0.png" alt="五行五维能量体系">
- <div class="hero-mask"></div>
- </div>
- <div class="section-content">
- <h1 class="section-title">PART 04<br><span>需求与设计</span></h1>
-
- <div class="anchor-card" data-card-id="c1">
- <div class="card-headline"><span class="headline-bar" aria-hidden="true"></span>五维能量体系:测得到 · 评得准 · 做得到</div>
- <p class="card-body">
- 基于 WHO 三维健康观与"健康中国"四维健康观演进,结合中国五行智慧,项目自研"身·智·富·行·心"五维能量体系,将理论测评与日常行为激励打通
- </p>
- </div>
- </div>
- <footer class="slide-footer">
- <span class="footer-section">PART 04 — 需求与设计</span>
- <span class="footer-page">15 / 28</span>
- </footer>
- </body>
- </html>
|