ppt-build.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1920">
  6. <title>GLM-4.7 Coding Benchmark - Build Studio Style</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
  8. <style>
  9. * { margin: 0; padding: 0; box-sizing: border-box; }
  10. body {
  11. width: 1920px;
  12. height: 1080px;
  13. overflow: hidden;
  14. margin: 0;
  15. background: #FAFAF8;
  16. font-family: 'Inter', sans-serif;
  17. color: #2A2A2A;
  18. position: relative;
  19. }
  20. .container {
  21. width: 100%;
  22. height: 100%;
  23. display: flex;
  24. flex-direction: column;
  25. padding: 64px 96px 48px 96px;
  26. justify-content: space-between;
  27. }
  28. /* Top section */
  29. .top-row {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: flex-start;
  33. margin-bottom: 16px;
  34. }
  35. .eyebrow {
  36. font-size: 10px;
  37. font-weight: 400;
  38. letter-spacing: 4px;
  39. text-transform: uppercase;
  40. color: #B0ACA4;
  41. }
  42. .source-note {
  43. font-size: 10px;
  44. font-weight: 300;
  45. color: #C0BCB6;
  46. text-align: right;
  47. line-height: 1.6;
  48. }
  49. /* Title area */
  50. .title-area {
  51. margin-bottom: 0;
  52. padding-bottom: 24px;
  53. border-bottom: 1px solid #EEECE8;
  54. }
  55. .main-title {
  56. font-size: 40px;
  57. font-weight: 200;
  58. color: #2A2A2A;
  59. letter-spacing: -0.5px;
  60. line-height: 1.2;
  61. }
  62. .main-title .accent {
  63. font-weight: 400;
  64. color: #2A2A2A;
  65. }
  66. .subtitle {
  67. font-size: 14px;
  68. font-weight: 300;
  69. color: #A0A09A;
  70. margin-top: 8px;
  71. letter-spacing: 0.3px;
  72. }
  73. /* Center: Hero data section */
  74. .hero-data {
  75. flex: 1;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. gap: 0;
  80. position: relative;
  81. padding-bottom: 32px;
  82. border-bottom: 1px solid #EEECE8;
  83. }
  84. /* Three metric cards */
  85. .metric-card {
  86. flex: 1;
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. justify-content: center;
  91. position: relative;
  92. padding: 32px 24px;
  93. }
  94. .metric-card::after {
  95. content: '';
  96. position: absolute;
  97. right: 0;
  98. top: 25%;
  99. height: 50%;
  100. width: 1px;
  101. background: linear-gradient(to bottom, transparent, #E0DCD6 50%, transparent);
  102. }
  103. .metric-card:last-child::after {
  104. display: none;
  105. }
  106. .metric-value {
  107. font-size: 112px;
  108. font-weight: 200;
  109. color: #2A2A2A;
  110. letter-spacing: -4px;
  111. line-height: 1;
  112. position: relative;
  113. }
  114. .metric-value .dot {
  115. color: #D4A574;
  116. font-weight: 300;
  117. }
  118. .metric-unit {
  119. font-size: 28px;
  120. font-weight: 200;
  121. color: #D4A574;
  122. vertical-align: super;
  123. margin-left: 2px;
  124. opacity: 0.8;
  125. }
  126. .metric-name {
  127. font-size: 12px;
  128. font-weight: 500;
  129. letter-spacing: 2px;
  130. text-transform: uppercase;
  131. color: #888888;
  132. margin-top: 16px;
  133. margin-bottom: 8px;
  134. }
  135. .metric-category {
  136. font-size: 11px;
  137. font-weight: 300;
  138. color: #B8B4AE;
  139. letter-spacing: 0.5px;
  140. }
  141. /* Comparison bars below each metric */
  142. .comparison-group {
  143. margin-top: 24px;
  144. width: 280px;
  145. }
  146. .comp-row {
  147. display: flex;
  148. align-items: center;
  149. margin-bottom: 8px;
  150. gap: 8px;
  151. }
  152. .comp-label {
  153. font-size: 11px;
  154. font-weight: 400;
  155. color: #A8A4A0;
  156. width: 72px;
  157. text-align: right;
  158. flex-shrink: 0;
  159. }
  160. .comp-track {
  161. flex: 1;
  162. height: 2px;
  163. background: #EEECEA;
  164. border-radius: 1px;
  165. position: relative;
  166. overflow: hidden;
  167. }
  168. .comp-fill {
  169. height: 100%;
  170. border-radius: 1px;
  171. background: #D8D5D0;
  172. }
  173. .comp-fill.gold {
  174. background: #D4A574;
  175. height: 3px;
  176. margin-top: -0.5px;
  177. }
  178. .comp-val {
  179. font-size: 11px;
  180. font-weight: 500;
  181. color: #999999;
  182. width: 40px;
  183. flex-shrink: 0;
  184. }
  185. .comp-val.gold {
  186. color: #D4A574;
  187. font-weight: 500;
  188. }
  189. /* Bottom section */
  190. .bottom-section {
  191. display: flex;
  192. justify-content: space-between;
  193. align-items: flex-end;
  194. padding-top: 24px;
  195. }
  196. .insight-text {
  197. font-size: 13px;
  198. font-weight: 300;
  199. color: #999;
  200. line-height: 1.8;
  201. max-width: 560px;
  202. }
  203. .insight-text strong {
  204. font-weight: 500;
  205. color: #666;
  206. }
  207. .brand-mark {
  208. display: flex;
  209. align-items: center;
  210. gap: 16px;
  211. }
  212. .brand-line {
  213. width: 32px;
  214. height: 1px;
  215. background: #D4A574;
  216. opacity: 0.6;
  217. }
  218. .brand-text {
  219. font-size: 10px;
  220. font-weight: 400;
  221. letter-spacing: 3px;
  222. color: #C8C4BC;
  223. }
  224. /* Slide indicator — functional PPT element */
  225. .slide-indicator {
  226. position: absolute;
  227. top: 64px;
  228. right: 96px;
  229. display: flex;
  230. gap: 6px;
  231. align-items: center;
  232. }
  233. .slide-dot {
  234. width: 4px;
  235. height: 4px;
  236. border-radius: 50%;
  237. background: #E0DCD6;
  238. }
  239. .slide-dot.active {
  240. background: #D4A574;
  241. width: 16px;
  242. border-radius: 2px;
  243. }
  244. </style>
  245. </head>
  246. <body>
  247. <div class="container">
  248. <!-- Top row -->
  249. <div class="top-row">
  250. <div class="eyebrow">GLM-4.7 Open-Source Model</div>
  251. <div class="source-note">Benchmark Evaluation 2025<br>Official Results</div>
  252. </div>
  253. <!-- Title -->
  254. <div class="title-area">
  255. <div class="main-title">Coding Capability <span style="font-weight:400;">Breakthrough</span><span style="color:#D4A574; font-weight:300; font-size:48px;">.</span></div>
  256. <div class="subtitle">First open-source model to achieve state-of-the-art across all major coding benchmarks</div>
  257. </div>
  258. <!-- Hero data -->
  259. <div class="hero-data">
  260. <!-- AIME 2025 -->
  261. <div class="metric-card">
  262. <div class="metric-value">95<span class="dot">.</span>7</div>
  263. <div class="metric-name">AIME 2025</div>
  264. <div class="metric-category">Mathematical Reasoning</div>
  265. <div class="comparison-group">
  266. <div class="comp-row">
  267. <span class="comp-label">GLM-4.7</span>
  268. <div class="comp-track"><div class="comp-fill gold" style="width: 100%;"></div></div>
  269. <span class="comp-val gold">95.7</span>
  270. </div>
  271. <div class="comp-row">
  272. <span class="comp-label">Claude 3.5</span>
  273. <div class="comp-track"><div class="comp-fill" style="width: 92.2%;"></div></div>
  274. <span class="comp-val">88.2</span>
  275. </div>
  276. <div class="comp-row">
  277. <span class="comp-label">GPT-4o</span>
  278. <div class="comp-track"><div class="comp-fill" style="width: 87.4%;"></div></div>
  279. <span class="comp-val">83.6</span>
  280. </div>
  281. </div>
  282. </div>
  283. <!-- SWE-bench Verified -->
  284. <div class="metric-card">
  285. <div class="metric-value">73<span class="dot">.</span>8<span class="metric-unit">%</span></div>
  286. <div class="metric-name">SWE-bench Verified</div>
  287. <div class="metric-category">Software Engineering</div>
  288. <div class="comparison-group">
  289. <div class="comp-row">
  290. <span class="comp-label">GLM-4.7</span>
  291. <div class="comp-track"><div class="comp-fill gold" style="width: 100%;"></div></div>
  292. <span class="comp-val gold">73.8%</span>
  293. </div>
  294. <div class="comp-row">
  295. <span class="comp-label">Claude 3.5</span>
  296. <div class="comp-track"><div class="comp-fill" style="width: 72.2%;"></div></div>
  297. <span class="comp-val">53.3%</span>
  298. </div>
  299. <div class="comp-row">
  300. <span class="comp-label">GPT-4o</span>
  301. <div class="comp-track"><div class="comp-fill" style="width: 65.3%;"></div></div>
  302. <span class="comp-val">48.2%</span>
  303. </div>
  304. </div>
  305. </div>
  306. <!-- Tau-bench -->
  307. <div class="metric-card">
  308. <div class="metric-value">87<span class="dot">.</span>4</div>
  309. <div class="metric-name">&tau;&sup2;-Bench</div>
  310. <div class="metric-category">Agent Task Completion</div>
  311. <div class="comparison-group">
  312. <div class="comp-row">
  313. <span class="comp-label">GLM-4.7</span>
  314. <div class="comp-track"><div class="comp-fill gold" style="width: 100%;"></div></div>
  315. <span class="comp-val gold">87.4</span>
  316. </div>
  317. <div class="comp-row">
  318. <span class="comp-label">Claude 3.5</span>
  319. <div class="comp-track"><div class="comp-fill" style="width: 90.3%;"></div></div>
  320. <span class="comp-val">78.9</span>
  321. </div>
  322. <div class="comp-row">
  323. <span class="comp-label">GPT-4o</span>
  324. <div class="comp-track"><div class="comp-fill" style="width: 81.8%;"></div></div>
  325. <span class="comp-val">71.5</span>
  326. </div>
  327. </div>
  328. </div>
  329. </div>
  330. <!-- Bottom -->
  331. <div class="bottom-section">
  332. <div class="insight-text">
  333. GLM-4.7 demonstrates that <strong>open-source models can compete at the frontier</strong> of coding intelligence,
  334. outperforming leading proprietary models with margins of <strong>+7.5 to +20.5 points</strong> across benchmarks.
  335. </div>
  336. <div class="brand-mark">
  337. <div class="brand-line"></div>
  338. <span class="brand-text">ZHIPU AI</span>
  339. </div>
  340. </div>
  341. </div>
  342. </body>
  343. </html>