| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <!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; top: 0; left: 0; width: 100%; height: 100%;
- 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;
- }
- .slide-footer {
- position: absolute; bottom: 12px; 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; }
- .footer-page { font-size: 10px; color: var(--text-secondary); opacity: 0.5; }
- /* Section Layout */
- .section-container {
- position: relative; width: 100%; height: 100%;
- display: flex; align-items: center; z-index: 2;
- }
- .content-half {
- width: 50%; height: 100%;
- display: flex; flex-direction: column; justify-content: center;
- padding-left: 80px; box-sizing: border-box;
- }
- .hero-image-half {
- width: 50%; height: 100%;
- position: relative; overflow: hidden;
- }
- .hero-image-half img {
- width: 100%; height: 100%; object-fit: cover;
- }
- .image-mask {
- position: absolute; top: 0; left: 0; width: 100%; height: 100%;
- background: linear-gradient(to right, var(--bg-primary) 0%, transparent 20%);
- }
- .section-title {
- font-family: var(--display-font);
- font-size: 64px; font-weight: 900; line-height: 1.1;
- margin: 0 0 24px 0; letter-spacing: -0.03em;
- color: var(--text-primary);
- }
- .section-title span {
- color: var(--accent-1);
- }
- .anchor-card {
- 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);
- max-width: 540px;
- position: relative;
- }
- .anchor-card-bar {
- position: absolute; top: 0; left: 0; width: 4px; height: 100%;
- background: var(--accent-1); border-radius: 4px 0 0 4px;
- }
- .card-headline {
- font-size: 24px; font-weight: 700; margin-bottom: 16px;
- color: var(--text-primary);
- }
- .card-body {
- font-size: 18px; line-height: 1.6; color: var(--text-secondary);
- }
- </style>
- </head>
- <body>
- <div class="grid-overlay" data-decoration-layer="background" aria-hidden="true"></div>
-
- <div class="section-container">
- <div class="content-half">
- <h1 class="section-title">Part 06<br><span>应用成效</span></h1>
- <div class="anchor-card" data-card-id="c1">
- <div class="anchor-card-bar" data-decoration-layer="page-accent" aria-hidden="true"></div>
- <div class="card-headline">从真实案例到生产级系统</div>
- <div class="card-body">
- 135 页专业报告压缩为 3 页行动方案的真实闭环、双培强基工程"国家队"级学术底座、15 大模块生产运行——用事实说话
- </div>
- </div>
- </div>
- <div class="hero-image-half">
- <img src="../images/slide_23_0.png" alt="成果证书与上升曲线">
- <div class="image-mask" data-decoration-layer="background" aria-hidden="true"></div>
- </div>
- </div>
- <footer class="slide-footer">
- <span class="footer-section">PART 06 — 应用成效</span>
- <span class="footer-page">23 / 28</span>
- </footer>
- </body>
- </html>
|