slide-23.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. /* Background Decoration */
  39. .grid-overlay {
  40. position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  41. background-image: radial-gradient(var(--grid-dot-color) 1px, transparent 1px);
  42. background-size: var(--grid-size) var(--grid-size);
  43. opacity: var(--grid-dot-opacity);
  44. z-index: 0;
  45. pointer-events: none;
  46. }
  47. .slide-footer {
  48. position: absolute; bottom: 12px; left: 40px; right: 40px; height: 20px;
  49. display: flex; justify-content: space-between; align-items: center; z-index: 10;
  50. }
  51. .footer-section { font-size: 10px; color: var(--text-secondary); opacity: 0.5; letter-spacing: 1px; }
  52. .footer-page { font-size: 10px; color: var(--text-secondary); opacity: 0.5; }
  53. /* Section Layout */
  54. .section-container {
  55. position: relative; width: 100%; height: 100%;
  56. display: flex; align-items: center; z-index: 2;
  57. }
  58. .content-half {
  59. width: 50%; height: 100%;
  60. display: flex; flex-direction: column; justify-content: center;
  61. padding-left: 80px; box-sizing: border-box;
  62. }
  63. .hero-image-half {
  64. width: 50%; height: 100%;
  65. position: relative; overflow: hidden;
  66. }
  67. .hero-image-half img {
  68. width: 100%; height: 100%; object-fit: cover;
  69. }
  70. .image-mask {
  71. position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  72. background: linear-gradient(to right, var(--bg-primary) 0%, transparent 20%);
  73. }
  74. .section-title {
  75. font-family: var(--display-font);
  76. font-size: 64px; font-weight: 900; line-height: 1.1;
  77. margin: 0 0 24px 0; letter-spacing: -0.03em;
  78. color: var(--text-primary);
  79. }
  80. .section-title span {
  81. color: var(--accent-1);
  82. }
  83. .anchor-card {
  84. background: linear-gradient(135deg, var(--card-bg-from), var(--card-bg-to));
  85. border: 1px solid var(--card-border);
  86. border-radius: var(--card-radius);
  87. padding: 32px;
  88. box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  89. max-width: 540px;
  90. position: relative;
  91. }
  92. .anchor-card-bar {
  93. position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  94. background: var(--accent-1); border-radius: 4px 0 0 4px;
  95. }
  96. .card-headline {
  97. font-size: 24px; font-weight: 700; margin-bottom: 16px;
  98. color: var(--text-primary);
  99. }
  100. .card-body {
  101. font-size: 18px; line-height: 1.6; color: var(--text-secondary);
  102. }
  103. </style>
  104. </head>
  105. <body>
  106. <div class="grid-overlay" data-decoration-layer="background" aria-hidden="true"></div>
  107. <div class="section-container">
  108. <div class="content-half">
  109. <h1 class="section-title">Part 06<br><span>应用成效</span></h1>
  110. <div class="anchor-card" data-card-id="c1">
  111. <div class="anchor-card-bar" data-decoration-layer="page-accent" aria-hidden="true"></div>
  112. <div class="card-headline">从真实案例到生产级系统</div>
  113. <div class="card-body">
  114. 135 页专业报告压缩为 3 页行动方案的真实闭环、双培强基工程"国家队"级学术底座、15 大模块生产运行——用事实说话
  115. </div>
  116. </div>
  117. </div>
  118. <div class="hero-image-half">
  119. <img src="../images/slide_23_0.png" 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 06 &mdash; 应用成效</span>
  125. <span class="footer-page">23 / 28</span>
  126. </footer>
  127. </body>
  128. </html>