slide-19.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. "><head>
  4. <meta charset="UTF-8">
  5. <style>
  6. :root {
  7. --bg-primary: #0A1A2F;
  8. --bg-secondary: #10264A;
  9. --card-bg-from: #17294A;
  10. --card-bg-to: #101F3B;
  11. --card-border: rgba(255,255,255,0.07);
  12. --card-radius: 14px;
  13. --text-primary: #F5F8FC;
  14. --text-secondary: rgba(235,243,255,0.72);
  15. --accent-1: #FF8C42;
  16. --accent-2: #5AB0FF;
  17. --accent-3: #FF6B9D;
  18. --accent-4: #10B981;
  19. --five-earth: #FF8C42;
  20. --five-fire: #FF6B9D;
  21. --five-metal: #6366F1;
  22. --five-wood: #10B981;
  23. --five-water: #F59E0B;
  24. --grid-dot-color: #FFFFFF;
  25. --grid-dot-opacity: 0.04;
  26. --grid-size: 44px;
  27. --font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  28. --display-font: 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  29. }
  30. body {
  31. width: 1280px; height: 720px; overflow: hidden;
  32. background: var(--bg-primary);
  33. font-family: var(--font-family);
  34. position: relative;
  35. margin: 0; padding: 0;
  36. color: var(--text-primary);
  37. }
  38. .grid-background {
  39. position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  40. background-image: radial-gradient(var(--grid-dot-color) 1px, transparent 1px);
  41. background-size: var(--grid-size) var(--grid-size);
  42. opacity: var(--grid-dot-opacity);
  43. z-index: 0;
  44. pointer-events: none;
  45. }
  46. .slide-footer {
  47. position: absolute; bottom: 12px; left: 40px; right: 40px; height: 20px;
  48. display: flex; justify-content: space-between; align-items: center; z-index: 10;
  49. }
  50. .footer-section { font-size: 10px; color: var(--text-secondary); opacity: 0.5; letter-spacing: 1px; }
  51. .footer-page { font-size: 10px; color: var(--text-secondary); opacity: 0.5; }
  52. .section-container {
  53. position: relative; width: 100%; height: 100%;
  54. display: flex; align-items: center; z-index: 2;
  55. }
  56. .content-half {
  57. width: 50%; height: 100%;
  58. display: flex; flex-direction: column; justify-content: center;
  59. padding-left: 80px; box-sizing: border-box;
  60. }
  61. .hero-image-half {
  62. width: 50%; height: 100%;
  63. position: relative; overflow: hidden;
  64. }
  65. .hero-image {
  66. width: 100%; height: 100%; object-fit: cover;
  67. }
  68. .image-mask {
  69. position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  70. background: linear-gradient(to right, var(--bg-primary) 0%, transparent 20%);
  71. z-index: 1;
  72. }
  73. .section-title {
  74. font-family: var(--display-font);
  75. font-size: 72px; font-weight: 900; line-height: 1.1;
  76. margin: 0 0 32px 0; letter-spacing: -0.03em;
  77. color: var(--text-primary);
  78. }
  79. .title-accent {
  80. color: var(--accent-1);
  81. }
  82. .section-lead {
  83. font-size: 22px; line-height: 1.6;
  84. color: var(--text-secondary);
  85. max-width: 540px;
  86. border-left: 4px solid var(--accent-1);
  87. padding-left: 24px;
  88. }
  89. .card-elevated {
  90. background: linear-gradient(135deg, var(--card-bg-from), var(--card-bg-to));
  91. border: 1px solid var(--card-border);
  92. border-radius: var(--card-radius);
  93. padding: 32px;
  94. box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  95. position: relative;
  96. }
  97. .card-headline {
  98. font-size: 24px; font-weight: 700; margin-bottom: 16px;
  99. color: var(--text-primary);
  100. }
  101. .card-body {
  102. font-size: 16px; line-height: 1.8; color: var(--text-secondary);
  103. }
  104. </style>
  105. </head>
  106. <body>
  107. <div class="grid-background" data-decoration-layer="background" aria-hidden="true"></div>
  108. <div class="section-container">
  109. <div class="content-half">
  110. <h1 class="section-title">PART 05<br><span class="title-accent">技术壁垒</span></h1>
  111. <div class="card-elevated" data-card-id="c1">
  112. <div class="card-headline">四重壁垒:算法 · 数据 · 网络效应 · AI 能力栈</div>
  113. <div class="card-body">
  114. 自研五维相生溯源算法、长周期行为数据护城河、三方网络效应、自研 AI 健康教练智能体——构成竞争对手难以复制的复合技术纵深
  115. </div>
  116. </div>
  117. </div>
  118. <div class="hero-image-half">
  119. <img src="../images/slide_19_0.png" class="hero-image" alt="技术与数据壁垒意象">
  120. <div class="image-mask" data-decoration-layer="background" aria-hidden="true"></div>
  121. </div>
  122. </div>
  123. <footer class="slide-footer">
  124. <span class="footer-section">PART 05 &mdash; 技术壁垒</span>
  125. <span class="footer-page">19 / 28</span>
  126. </footer>
  127. </body>
  128. </html>