slide-11.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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;
  32. height: 720px;
  33. overflow: hidden;
  34. background: var(--bg-primary);
  35. font-family: var(--font-family);
  36. position: relative;
  37. margin: 0;
  38. color: var(--text-primary);
  39. }
  40. /* Background Decoration */
  41. .grid-overlay {
  42. position: absolute;
  43. inset: 0;
  44. background-image: radial-gradient(var(--grid-dot-color) 1px, transparent 1px);
  45. background-size: var(--grid-size) var(--grid-size);
  46. opacity: var(--grid-dot-opacity);
  47. z-index: 0;
  48. pointer-events: none;
  49. }
  50. .hero-image-container {
  51. position: absolute;
  52. right: 0;
  53. top: 0;
  54. width: 60%;
  55. height: 100%;
  56. z-index: 1;
  57. overflow: hidden;
  58. }
  59. .hero-image {
  60. width: 100%;
  61. height: 100%;
  62. object-fit: cover;
  63. opacity: 0.7;
  64. }
  65. .image-mask {
  66. position: absolute;
  67. inset: 0;
  68. background: linear-gradient(to right, var(--bg-primary) 0%, transparent 30%);
  69. z-index: 2;
  70. }
  71. /* Content */
  72. .content-area {
  73. position: absolute;
  74. left: 40px;
  75. top: 0;
  76. bottom: 0;
  77. width: 600px;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: center;
  81. z-index: 10;
  82. }
  83. .section-title-group {
  84. margin-bottom: 40px;
  85. }
  86. .part-label {
  87. font-size: 14px;
  88. font-weight: 700;
  89. color: var(--accent-1);
  90. letter-spacing: 4px;
  91. text-transform: uppercase;
  92. margin-bottom: 12px;
  93. display: block;
  94. }
  95. .main-title {
  96. font-family: var(--display-font);
  97. font-size: 72px;
  98. font-weight: 900;
  99. line-height: 1.1;
  100. margin: 0;
  101. letter-spacing: -0.03em;
  102. }
  103. .title-underline {
  104. width: 80px;
  105. height: 6px;
  106. background: var(--accent-1);
  107. margin-top: 24px;
  108. border-radius: 3px;
  109. }
  110. .anchor-card {
  111. margin-top: 48px;
  112. padding: 32px;
  113. background: linear-gradient(135deg, var(--card-bg-from), var(--card-bg-to));
  114. border: 1px solid var(--card-border);
  115. border-radius: var(--card-radius);
  116. box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  117. position: relative;
  118. max-width: 520px;
  119. }
  120. .anchor-headline {
  121. font-family: var(--display-font);
  122. font-size: 28px;
  123. font-weight: 800;
  124. color: var(--text-primary);
  125. margin-bottom: 16px;
  126. line-height: 1.3;
  127. }
  128. .anchor-body {
  129. font-size: 18px;
  130. line-height: 1.6;
  131. color: var(--text-secondary);
  132. }
  133. /* Footer */
  134. .slide-footer {
  135. position: absolute;
  136. bottom: 24px;
  137. left: 40px;
  138. right: 40px;
  139. height: 20px;
  140. display: flex;
  141. justify-content: space-between;
  142. align-items: center;
  143. z-index: 10;
  144. }
  145. .footer-section {
  146. font-size: 10px;
  147. color: var(--text-secondary);
  148. opacity: 0.5;
  149. letter-spacing: 1px;
  150. }
  151. .footer-page {
  152. font-size: 10px;
  153. color: var(--text-secondary);
  154. opacity: 0.5;
  155. }
  156. </style>
  157. </head>
  158. <body>
  159. <div class="grid-overlay" data-decoration-layer="background" aria-hidden="true"></div>
  160. <div class="hero-image-container" data-decoration-layer="background" aria-hidden="true">
  161. <img src="../images/slide_11_0.png" class="hero-image" alt="Market Scale">
  162. <div class="image-mask"></div>
  163. </div>
  164. <div class="content-area">
  165. <div class="section-title-group">
  166. <span class="part-label">PART 03</span>
  167. <h1 class="main-title">市场容量</h1>
  168. <div class="title-underline"></div>
  169. </div>
  170. <div class="anchor-card" data-card-id="c1">
  171. <div class="anchor-headline">4.5 万亿赛道 · 渗透率不足 3% · 97% 待开拓</div>
  172. <div class="anchor-body">
  173. 中国家庭教育消费市场 4.5 万亿元,家庭教育服务平台渗透率不足 3%——高增长细分 + 极低渗透率 = 巨大的平台化机会
  174. </div>
  175. </div>
  176. </div>
  177. <footer class="slide-footer">
  178. <span class="footer-section">PART 03 &mdash; 市场容量</span>
  179. <span class="footer-page">11 / 28</span>
  180. </footer>
  181. </body>
  182. </html>