{"results":[{"id":9921,"category":"idea","source_title":"AI浪潮下的三重变局：从煤炭悖论到人脸识别的深渊","source_url":"","source_name":"手动投稿","summary":"","tags":"idea","view_count":0,"created_at":"2026-06-22 12:04:26","image_url":null,"content":"<think>The user wants me to create a single-file HTML presentation based on the provided content about AI's impact on society. Let me analyze the requirements: 1. This is a \"Editorial × E-Ink\" style presentation 2. Must choose one of 5 color palettes - I'll use the default \"墨水经典 Monocle\" (ink #0a0a0b, paper #f1efea, paper-tint #e8e5de, ink-tint #18181a) 3. Must use the 10 layout templates provided 4. No gradients, shadows, rounded corners, emojis, SVG icon libraries 5. Use Playfair Display for English display, Noto Serif SC for Chinese display, Inter for body, Noto Sans SC for Chinese body 6. Magazine-style details: kicker uppercase with letter-spacing, folio in corner, hairline rule 7. Keyboard navigation (← / →), hash sync 8. All content must be real, no Lorem ipsum, no placeholder images (use CSS/SVG) The content covers: 1. AI in age estimation for refugees (UK) 2. Coal plant funding (US) 3. AI regulation (EU AI Act) 4. Russian drones in Ukraine 5. AI in entertainment (Widow Bay) 6. Environmental paradox 7. Solutions and future Let me structure this into slides using the provided layouts: 1. L01 Hero Cover - Title, kicker, subtitle, lead paragraph 2. L02 Act Divider - Section 1 intro 3. L03 Big Numbers Grid - Statistics about AI bias 4. L04 Quote + Image - About the coal paradox 5. L05 Image Grid - Various incidents 6. L06 Pipeline / Flow - Section 2 intro 7. L07 Hero Question - Key question 8. L08 Big Quote - Key insight 9. L09 Before / After - Comparison 10. L10 Mixed Media - Solutions section 11. L01 Hero Cover - Conclusion Let me create this comprehensive presentation. I need to make sure: - All fonts are embedded or use system fallbacks since external fonts can't be loaded - SVG graphics are inline for illustrations - Color palette is strictly followed - Keyboard navigation works properly - Content is authentic without any placeholder elements - Each slide uses a different layout template to maintain visual variety Since external fonts can't be used, I'll rely on system serif fonts as fallbacks for the display typography. Now I'll build the HTML structure with all slides properly formatted and styled according to the design specifications. The document will include a comprehensive title covering three major AI transformations—from coal paradox contradictions to facial recognition concerns—along with the publication date and metadata in the footer. The opening sections address how AI systems are being weaponized in prediction markets, citing specific incidents like the UK's flawed age estimation for child refugees, alongside contrasting policy decisions such as Trump's coal plant subsidies versus California's renewable energy investments. The next segment examines the regulatory landscape and emerging frameworks being developed to govern these technologies. The third section pivots to military applications, highlighting Russia's deployment of Lancet-3 drones in Ukraine and the broader trend toward AI-driven autonomous weapons, which creates dangerous precedent for civilian harm. The fourth section explores AI's disruption across creative industries—from Apple's TV productions to workforce displacement—while the fifth section synthesizes the contradictions: AI simultaneously enabling environmental monitoring yet consuming enormous energy resources. The final sections outline potential remedies through international standards like UNESCO's framework and regulatory approaches from Canada and Germany, emphasizing the need for systemic change to prevent technology from eroding human agency. </think> ```html <!DOCTYPE html> <html lang=\"zh-CN\"> <head> <meta charset=\"UTF-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"> <title>AI浪潮下的三重变局</title> <style> @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Noto+Serif+SC:wght@400;700&family=Inter:wght@400;500;700&family=Noto+Sans+SC:wght@400;500;700&display=swap'); :root { --ink: #0a0a0b; --paper: #f1efea; --paper-tint: #e8e5de; --ink-tint: #18181a; } * { margin: 0; padding: 0; box-sizing: border-box; } html { font-size: 16px; scroll-behavior: smooth; } body { font-family: 'Noto Sans SC', 'Inter', -apple-system, sans-serif; background: var(--paper); color: var(--ink); line-height: 1.6; overflow-x: hidden; } .slide { min-height: 100vh; padding: 8vh 8vw; position: relative; border-bottom: 1px solid var(--paper-tint); display: none; } .slide.active { display: flex; flex-direction: column; } .kicker { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-tint); margin-bottom: 2vh; font-weight: 500; } .headline { font-family: 'Noto Serif SC', 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; } .body-text { font-family: 'Noto Sans SC', 'Inter', sans-serif; font-size: 1.1rem; line-height: 1.8; color: var(--ink-tint); } .folio { position: fixed; bottom: 4vh; right: 4vw; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-tint); opacity: 0.6; } .hairline { position: fixed; top: 0; left: 0; right: 0; height: 1px; background: var(--ink); opacity: 0.15; } .logo-mark { position: fixed; top: 3vh; left: 4vw; font-family: 'Noto Serif SC', serif; font-size: 12px; letter-spacing: 0.15em; color: var(--ink); } /* L01 Hero Cover */ .hero-cover { justify-content: center; align-items: flex-start; text-align: left; } .hero-cover .headline { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 3vh; max-width: 90%; } .hero-cover .subtitle { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; color: var(--ink-tint); margin-bottom: 4vh; font-weight: 400; } .hero-cover .lead { font-size: 1.2rem; max-width: 65ch; margin-bottom: 6vh; } .meta-row { display: flex; gap: 4vw; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-tint); text-transform: uppercase; } /* L02 Act Divider */ .act-divider { justify-content: center; align-items: flex-start; } .act-divider .headline { font-size: clamp(4rem, 8.5vw, 10rem); margin: 4vh 0; line-height: 0.95; } .act-divider .quote-line { font-family: 'Noto Serif SC', serif; font-size: 1.3rem; font-style: italic; color: var(--ink-tint); max-width: 50ch; margin-top: 4vh; padding-left: 2vw; border-left: 2px solid var(--ink); } .act-divider.inverted { background: var(--ink); color: var(--paper); } .act-divider.inverted .kicker, .act-divider.inverted .headline, .act-divider.inverted .quote-line { color: var(--paper); } .act-divider.inverted .quote-line { border-color: var(--paper); } /* L03 Big Numbers Grid */ .numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 2vw; flex: 1; align-items: center; } .number-card { padding: 3vh 2vw; border: 1px solid var(--paper-tint); } .number-card .label { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-tint); margin-bottom: 1vh; } .number-card .big-number { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 700; line-height: 1; margin-bottom: 1vh; } .number-card .note { font-size: 0.85rem; color: var(--ink-tint); } /* L04 Quote + Image */ .quote-image { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4vw; flex: 1; align-items: center; } .quote-image .text-side .headline { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 3vh; } .quote-image .text-side .body-text { margin-bottom: 3vh; } .quote-image .callout { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; padding: 2vh 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); } .quote-image .image-side { height: 55vh; display: flex; align-items: flex-end; } .image-block { width: 100%; height: 100%; position: relative; overflow: hidden; } .image-block svg { width: 100%; height: 100%; } /* L05 Image Grid */ .image-grid-section { flex: 1; } .image-grid-section .headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 4vh; } .image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5vw; flex: 1; } .grid-image { height: 26vh; border: 1px solid var(--paper-tint); display: flex; flex-direction: column; justify-content: flex-end; padding: 2vh 1.5vw; } .grid-image .img-label { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); background: var(--paper); padding: 0.5vh 1vw; display: inline-block; } .grid-image .img-title { font-family: 'Noto Serif SC', serif; font-size: 1rem; margin-top: 1vh; background: var(--paper); padding: 0.5vh 1vw; } /* L06 Pipeline / Flow */ .pipeline-section { flex: 1; justify-content: center; } .pipeline-section .kicker { margin-bottom: 4vh; } .pipeline-section .headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 6vh; } .pipeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2vw; } .pipeline-step { padding: 3vh 1.5vw; border: 1px solid var(--paper-tint); position: relative; } .pipeline-step .step-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-style: italic; color: var(--ink-tint); opacity: 0.4; margin-bottom: 2vh; } .pipeline-step .step-title { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5vh; } .pipeline-step .step-desc { font-size: 0.9rem; color: var(--ink-tint); line-height: 1.6; } /* L07 Hero Question */ .hero-question { justify-content: center; align-items: center; text-align: center; } .hero-question .question-text { font-family: 'Noto Serif SC', serif; font-size: clamp(2rem, 7vw, 5.5rem); line-height: 1.3; max-width: 18ch; font-weight: 700; } /* L08 Big Quote */ .big-quote-section { justify-content: center; align-items: flex-start; padding-left: 12vw; } .big-quote-section .chinese-quote { font-family: 'Noto Serif SC', serif; font-size: clamp(1.8rem, 5.8vw, 4.5rem); line-height: 1.4; margin-bottom: 4vh; max-width: 20ch; } .big-quote-section .english-trans { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--ink-tint); margin-bottom: 4vh; max-width: 45ch; } .big-quote-section .attribution { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; } /* L09 Before / After */ .before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex: 1; } .before-panel, .after-panel { padding: 6vh 4vw; display: flex; flex-direction: column; justify-content: center; } .before-panel { background: var(--paper-tint); opacity: 0.55; } .after-panel { background: var(--paper); } .before-panel .panel-label, .after-panel .panel-label { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3vh; } .before-panel .headline, .after-panel .headline { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 3vh; } .before-panel .body-text, .after-panel .body-text { font-size: 1rem; } /* L10 Mixed Media */ .mixed-media { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4vw; flex: 1; align-items: center; } .mixed-media .text-content .kicker { margin-bottom: 2vh; } .mixed-media .text-content .headline { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 3vh; } .mixed-media .text-content .body-text { margin-bottom: 3vh; } .mixed-media .text-content .callout { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; padding: 2vh 0; border-top: 1px solid var(--ink); } .mixed-media .visual-content { height: 70vh; display: flex; flex-direction: column; justify-content: center; } .visual-block { width: 100%; height: 100%; border: 1px solid var(--paper-tint); display: flex; align-items: center; justify-content: center; position: relative; } /* Navigation */ .nav-hint { position: fixed; bottom: 4vh; left: 4vw; font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-tint); opacity: 0.5; } .progress-bar { position: fixed; top: 0; left: 0; height: 2px; background: var(--ink); transition: width 0.3s ease; z-index: 100; } /* Keyboard focus styles */ :focus { outline: 1px solid var(--ink); outline-offset: 2px; } ::selection { background: var(--ink); color: var(--paper); } </style> </head> <body> <div class=\"hairline\"></div> <div class=\"logo-mark\">EDITORIAL</div> <div class=\"progress-bar\" id=\"progress\"></div> <div class=\"nav-hint\">← → 键切换</div> <div class=\"folio\" id=\"folio\">01 / 14</div> <!-- Slide 1: L01 Hero Cover --> <section class=\"slide hero-cover active\" id=\"slide-1\" data-slide=\"1\"> <span class=\"kicker\">深度报道 · 二零二六年夏季</span> <h1 class=\"headline\">AI浪潮下的三重变局</h1> <p class=\"subtitle\">从煤炭悖论到人脸识别的深渊</p> <p class=\"lead body-text\"> 当预测市场的乱象与环境的双重变局交织，当AI军事化的暗影投射到民用领域，当人才的职业大迁徙悄然来临——我们正站在一个被技术深度重塑的世界的十字路口。 </p> <div class=\"meta-row\"> <span>发布于 2026年6月</span> <span>阅读约需 18 分钟</span> <span>#AI #科技 #深度报道</span> </div> </section> <!-- Slide 2: L02 Act Divider --> <section class=\"slide act-divider\" id=\"slide-2\" data-slide=\"2\"> <span class=\"kicker\">第一章节</span> <h2 class=\"headline\">预测市场的<br>乱象</h2> <p class=\"quote-line\">当权力与技术结合，事实与科学往往被搁置一边</p> </section> <!-- Slide 3: L03 Big Numbers Grid --> <section class=\"slide numbers-grid\" id=\"slide-3\" data-slide=\"3\"> <span class=\"kicker\" style=\"position: absolute; top: 8vh;\">关键数据</span> <div class=\"number-card\"> <div class=\"label\">年龄预测误差</div> <div class=\"big-number\">4.6</div> <div class=\"note\">岁——对于撒哈拉以南非洲女性的平均误差</div> </div> <div class=\"number-card\"> <div class=\"label\">联邦拨款</div> <div class=\"big-number\">46亿</div> <div class=\"note\">美元——特朗普政府为老旧燃煤电厂的拨款</div> </div> <div class=\"number-card\"> <div class=\"label\">关联死亡人数</div> <div class=\"big-number\">~1000</div> <div class=\"note\">人——坎伯兰电厂有毒颗粒物在二十年间的致死估计</div> </div> <div class=\"number-card\"> <div class=\"label\">面部识别错误率差异</div> <div class=\"big-number\">35×</div> <div class=\"note\">有色人种女性 vs 白人男性的错误率差距</div> </div> <div class=\"number-card\"> <div class=\"label\">环保署执法下降</div> <div class=\"big-number\">75%</div> <div class=\"note\">——2025年执法行动同比降幅</div> </div> <div class=\"number-card\"> <div class=\"label\">委员会状态</div> <div class=\"big-number\">解散</div> <div class=\"note\">——英国内政部负责评估年龄估算的科学委员会</div> </div> </section> <!-- Slide 4: L04 Quote + Image --> <section class=\"slide quote-image\" id=\"slide-4\" data-slide=\"4\"> <div class=\"text-side\"> <span class=\"kicker\">英国边境管理局 · 内部泄露</span> <h3 class=\"headline\">有缺陷的算法如何决定难民命运</h3> <p class=\"body-text\"> 英国内政部在测试七种面部年龄估计算法后，明知技术存在严重偏差，仍计划于明年将其用于难民年龄鉴定。这意味着一个十三岁半的女孩可能被判定为成年女性，从而被剥夺法律保护，关入成人拘留中心。 </p> <p class=\"callout\"> \"这些面部扫描'极其不准确'\" ——蒂姆·科尔教授，伦敦大学学院 </p> </div> <div class=\"image-side\"> <div class=\"image-block\"> <svg viewBox=\"0 0 400 300\" xmlns=\"http://www.w3.org/2000/svg\"> <rect fill=\"#e8e5de\" width=\"400\" height=\"300\"/> <circle cx=\"200\" cy=\"120\" r=\"50\" fill=\"#d4d1c9\"/> <rect x=\"140\" y=\"180\" width=\"120\" height=\"80\" fill=\"#d4d1c9\"/> <line x1=\"100\" y1=\"100\" x2=\"300\" y2=\"100\" stroke=\"#0a0a0b\" stroke-width=\"0.5\" opacity=\"0.2\"/> <line x1=\"100\" y1=\"150\" x2=\"300\" y2=\"150\" stroke=\"#0a0a0b\" stroke-width=\"0.5\" opacity=\"0.2\"/> <line x1=\"100\" y1=\"200\" x2=\"300\" y2=\"200\" stroke=\"#0a0a0b\" stroke-width=\"0.5\" opacity=\"0.2\"/> <rect x=\"160\" y=\"60\" width=\"80\" height=\"20\" fill=\"#f1efea\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> <text x=\"200\" y=\"75\" font-family=\"Inter, sans-serif\" font-size=\"8\" text-anchor=\"middle\" fill=\"#0a0a0b\">AGE: 18.2</text> <rect x=\"150\" y=\"270\" width=\"100\" height=\"15\" fill=\"#f1efea\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> <text x=\"200\" y=\"281\" font-family=\"Inter, sans-serif\" font-size=\"7\" text-anchor=\"middle\" fill=\"#0a0a0b\">BIAS: ±4.6 YEARS</text> </svg> </div> </div> </section> <!-- Slide 5: L05 Image Grid --> <section class=\"slide image-grid-section\" id=\"slide-5\" data-slide=\"5\"> <span class=\"kicker\">时间线 · 2026年夏</span> <h3 class=\"headline\">三个事件，同一逻辑</h3> <div class=\"image-grid\"> <div class=\"grid-image\"> <svg viewBox=\"0 0 200 150\" xmlns=\"http://www.w3.org/2000/svg\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\"> <rect fill=\"#e8e5de\" width=\"200\" height=\"150\"/> <rect x=\"60\" y=\"40\" width=\"80\" height=\"70\" fill=\"#d4d1c9\"/> <rect x=\"80\" y=\"55\" width=\"40\" height=\"40\" fill=\"#f1efea\"/> <line x1=\"40\" y1=\"30\" x2=\"160\" y2=\"30\" stroke=\"#0a0a0b\" stroke-width=\"1\"/> </svg> <span class=\"img-label\">英国</span> <span class=\"img-title\">难民年龄鉴定算法测试</span> </div> <div class=\"grid-image\"> <svg viewBox=\"0 0 200 150\" xmlns=\"http://www.w3.org/2000/svg\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\"> <rect fill=\"#e8e5de\" width=\"200\" height=\"150\"/> <rect x=\"50\" y=\"60\" width=\"100\" height=\"60\" fill=\"#d4d1c9\"/> <rect x=\"70\" y=\"80\" width=\"20\" height=\"30\" fill=\"#f1efea\"/> <rect x=\"110\" y=\"80\" width=\"20\" height=\"30\" fill=\"#f1efea\"/> <polygon points=\"100,30 130,60 70,60\" fill=\"#d4d1c9\"/> <rect x=\"85\" y=\"35\" width=\"30\" height=\"15\" fill=\"#f1efea\"/> </svg> <span class=\"img-label\">美国</span> <span class=\"img-title\">燃煤电厂联邦拨款</span> </div> <div class=\"grid-image\"> <svg viewBox=\"0 0 200 150\" xmlns=\"http://www.w3.org/2000/svg\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\"> <rect fill=\"#e8e5de\" width=\"200\" height=\"150\"/> <rect x=\"40\" y=\"50\" width=\"120\" height=\"80\" fill=\"#d4d1c9\"/> <rect x=\"60\" y=\"70\" width=\"80\" height=\"40\" fill=\"#f1efea\"/> <line x1=\"60\" y1=\"85\" x2=\"140\" y2=\"85\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> <line x1=\"60\" y1=\"95\" x2=\"120\" y2=\"95\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> <line x1=\"60\" y1=\"105\" x2=\"130\" y2=\"105\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> </svg> <span class=\"img-label\">流媒体</span> <span class=\"img-title\">《寡妇湾》收视纪录</span> </div> </div> </section> <!-- Slide 6: L02 Act Divider (Section 2) --> <section class=\"slide act-divider inverted\" id=\"slide-6\" data-slide=\"6\"> <span class=\"kicker\">第二章节</span> <h2 class=\"headline\">监管的<br>破局</h2> <p class=\"quote-line\">从技术中立的迷思到伦理问责的觉醒</p> </section> <!-- Slide 7: L06 Pipeline / Flow --> <section class=\"slide pipeline-section\" id=\"slide-7\" data-slide=\"7\"> <span class=\"kicker\">AI治理演进</span> <h3 class=\"headline\">监管破局的四个关键节点</h3> <div class=\"pipeline-steps\"> <div class=\"pipeline-step\"> <div class=\"step-num\">№1</div> <div class=\"step-title\">NIST研究</div> <div class=\"step-desc\">二零零二年首次揭示人脸识别系统对有色人种女性的错误率高达百分之三十五</div> </div> <div class=\"pipeline-step\"> <div class=\"step-num\">№2</div> <div class=\"step-title\">欧盟立法</div> <div class=\"step-desc\">二零二五年《人工智能法案》生效，将高风险应用划入禁止类别</div> </div> <div class=\"pipeline-step\"> <div class=\"step-num\">№3</div> <div class=\"step-title\">审计工具</div> <div class=\"step-desc\">二零二六年伯克利团队发布开源审计工具，已被欧盟委员会采纳</div> </div> <div class=\"pipeline-step\"> <div class=\"step-num\">№4</div> <div class=\"step-title\">鲶鱼效应</div> <div class=\"step-desc\">自下而上的透明与监督，正在撼动技术巨头的壁垒</div> </div> </div> </section> <!-- Slide 8: L07 Hero Question --> <section class=\"slide hero-question\" id=\"slide-8\" data-slide=\"8\"> <p class=\"question-text\">技术从来不是中立的，它承载着设计者的价值观</p> </section> <!-- Slide 9: L02 Act Divider (Section 3) --> <section class=\"slide act-divider\" id=\"slide-9\" data-slide=\"9\"> <span class=\"kicker\">第三章节</span> <h2 class=\"headline\">军事化的<br>暗面</h2> <p class=\"quote-line\">AI在战场上的应用，正在重新定义战争的伦理边界</p> </section> <!-- Slide 10: L03 Big Numbers Grid --> <section class=\"slide numbers-grid\" id=\"slide-10\" data-slide=\"10\"> <span class=\"kicker\" style=\"position: absolute; top: 8vh;\">俄罗斯无人机数据</span> <div class=\"number-card\"> <div class=\"label\">无人机型号</div> <div class=\"big-number\">柳叶刀-3</div> <div class=\"note\">俄军AI辅助自杀式无人机</div> </div> <div class=\"number-card\"> <div class=\"label\">命中率提升</div> <div class=\"big-number\">78%</div> <div class=\"note\">从百分之四十飙升至百分之七十八</div> </div> <div class=\"number-card\"> <div class=\"label\">AI决策时间</div> <div class=\"big-number\">秒级</div> <div class=\"note\">导弹预警网络决策时间大幅缩短</div> </div> <div class=\"number-card\"> <div class=\"label\">平民伤亡</div> <div class=\"big-number\">大量</div> <div class=\"note\">AI在区分战斗人员与非战斗人员时表现远不如人类</div> </div> <div class=\"number-card\"> <div class=\"label\">谈判状态</div> <div class=\"big-number\">僵局</div> <div class=\"note\">联合国禁止\"杀手机器人\"谈判陷入停滞</div> </div> <div class=\"number-card\"> <div class=\"label\">监管真空</div> <div class=\"big-number\">危险</div> <div class=\"note\">技术发展速度远远快于国际法的制定进程</div> </div> </section> <!-- Slide 11: L08 Big Quote --> <section class=\"slide big-quote-section\" id=\"slide-11\" data-slide=\"11\"> <p class=\"chinese-quote\">\"反复违规往往表明电厂存在根本性问题\"</p> <p class=\"english-trans\">\"Repeated violations often indicate fundamental problems with the plant\"</p> <p class=\"attribution\">克里斯托弗·塞勒斯 · 环境历史学家</p> </section> <!-- Slide 12: L09 Before / After --> <section class=\"slide before-after\" id=\"slide-12\" data-slide=\"12\"> <div class=\"before-panel\"> <span class=\"panel-label\">过去 / Before</span> <h4 class=\"headline\">环保执法削弱</h4> <p class=\"body-text\"> 2025年美国环保署执法行动骤降75%，对污染企业的罚款金额跌至历史新低。资助有违规记录的电厂与削弱《国家环境政策法》的政策一脉相承。 </p> </div> <div class=\"after-panel\"> <span class=\"panel-label\">现在 / After</span> <h4 class=\"headline\">AI审计兴起</h4> <p class=\"body-text\"> 2026年加州大学伯克利分校发布开源审计工具，允许第三方独立评估AI系统的公平性与准确性，已被欧盟委员会采纳用于审查高风险应用。 </p> </div> </section> <!-- Slide 13: L10 Mixed Media --> <section class=\"slide mixed-media\" id=\"slide-13\" data-slide=\"13\"> <div class=\"text-content\"> <span class=\"kicker\">破局之道 · 2026</span> <h3 class=\"headline\">在技术洪流中守护人性</h3> <p class=\"body-text\"> 联合国教科文组织发布《AI伦理全球框架》，首次将\"人类尊严\"置于AI发展的核心原则。加拿大通过《AI与数据法案》要求高风险系统必须接受独立审计。德国推出\"AI透明度登记册\"，要求政府使用的AI系统必须公开算法逻辑。 </p> <p class=\"callout\"> 世界经济论坛报告指出，到2030年全球需要培养3亿名具备AI伦理素养的专业人才。 </p> </div> <div class=\"visual-content\"> <div class=\"visual-block\"> <svg viewBox=\"0 0 300 400\" xmlns=\"http://www.w3.org/2000/svg\"> <rect fill=\"#e8e5de\" width=\"300\" height=\"400\"/> <line x1=\"50\" y1=\"80\" x2=\"250\" y2=\"80\" stroke=\"#0a0a0b\" stroke-width=\"0.5\"/> <text x=\"150\" y=\"65\" font-family=\"Noto Serif SC, serif\" font-size=\"12\" text-anchor=\"middle\" fill=\"#0a0a0b\">UNESCO AI ETHICS FRAMEWORK</text> <rect x=\"60\" y=\"110\" width=\"180\" height=\"50\" fill=\"none\" stroke=\"#0a0a0b\" stroke-width=\"1\"/> <text x=\"150\" y=\"140\" font-family=\"Inter, sans-serif\" font-size=\"10\" text-anchor=\"middle\" fill=\"#0a0a0b\">HUMAN DIGNITY</text> <rect x=\"60\" y=\"180\" width=\"80\" height=\"50\" fill=\"none\" stroke=\"#0a0a0b\" stroke-width=\"1\"/> <text x=\"100\" y=\"210\" font-family=\"Inter, sans-serif\" font-size=\"9\" text-anchor"},{"id":9920,"category":"idea","source_title":"AI算命横行，谁在收割你的恐惧与钱包","source_url":"","source_name":"手动投稿","summary":"","tags":"idea","view_count":0,"created_at":"2026-06-22 12:02:57","image_url":null,"content":"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1920 1080\" style=\"position:fixed;top:0;left:0;width:1920px;height:1080px;\"> <defs> <radialGradient id=\"vignette\" cx=\"50%\" cy=\"50%\" r=\"70%\"> <stop offset=\"0%\" stop-color=\"#08090c\" stop-opacity=\"1\"/> <stop offset=\"100%\" stop-color=\"#000000\" stop-opacity=\"0\"/> </radialGradient> <linearGradient id=\"shimmer\" x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"0%\"> <stop offset=\"0%\" stop-color=\"white\" stop-opacity=\"0\"/> <stop offset=\"50%\" stop-color=\"white\" stop-opacity=\"1\"/> <stop offset=\"100%\" stop-color=\"white\" stop-opacity=\"0\"/> </linearGradient> <mask id=\"shimmerMask\"> <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1080\" fill=\"url(#shimmer)\"/> </mask> <filter id=\"glow\"> <fegaussianblur stddeviation=\"8\" result=\"coloredBlur\"/> <femerge> <femergenode in=\"coloredBlur\"/> <femergenode in=\"SourceGraphic\"/> </femerge> </filter> <filter id=\"softGlow\"> <fegaussianblur stddeviation=\"24\" result=\"coloredBlur\"/> <femerge> <femergenode in=\"coloredBlur\"/> <femergenode in=\"SourceGraphic\"/> </femerge> </filter> </defs> <style> @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;700&amp;family=Noto+Sans+SC:wght@400;700&amp;display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } @keyframes slideIn1 { 0% { transform: translate(-150px, -100px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes slideIn2 { 0% { transform: translate(150px, -80px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes slideIn3 { 0% { transform: translate(-120px, 100px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes slideIn4 { 0% { transform: translate(120px, 80px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes slideIn5 { 0% { transform: translate(0, -150px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes slideIn6 { 0% { transform: translate(0, 150px) scale(1.4); opacity: 0; } 100% { transform: translate(0, 0) scale(1); opacity: 1; } } @keyframes fadeUp { 0% { transform: translateY(30px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes shimmerSweep { 0% { transform: translateX(-200%); } 100% { transform: translateX(200%); } } @keyframes glowPulse { 0%, 100% { filter: url(#softGlow); } 50% { filter: url(#glow); } } .block1 { animation: slideIn1 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0s; opacity: 0; } .block2 { animation: slideIn2 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.08s; opacity: 0; } .block3 { animation: slideIn3 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.16s; opacity: 0; } .block4 { animation: slideIn4 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.24s; opacity: 0; } .block5 { animation: slideIn5 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.32s; opacity: 0; } .block6 { animation: slideIn6 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.4s; opacity: 0; } .brandName { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 1.4s; opacity: 0; } .tagline { animation: fadeIn 0.6s ease-out forwards; animation-delay: 1.8s; opacity: 0; } .meta { animation: fadeIn 0.6s ease-out forwards; animation-delay: 2.2s; opacity: 0; } .logoGroup { animation: glowPulse 1s ease-in-out; animation-delay: 1.2s; animation-fill-mode: forwards; } .shimmerOverlay { animation: shimmerSweep 0.5s ease-out forwards; animation-delay: 1.2s; opacity: 0; } .ribbon { animation: fadeIn 0.4s ease-out forwards; animation-delay: 0.1s; opacity: 0; } @media (prefers-reduced-motion: reduce) { .block1, .block2, .block3, .block4, .block5, .block6, .brandName, .tagline, .meta, .logoGroup, .shimmerOverlay, .ribbon { animation: none; opacity: 1; } } </style> <rect width=\"1920\" height=\"1080\" fill=\"#08090c\"/> <rect width=\"1920\" height=\"1080\" fill=\"url(#vignette)\"/> <rect class=\"ribbon\" x=\"0\" y=\"0\" width=\"1920\" height=\"5\" fill=\"#7c5cff\"/> <g class=\"logoGroup\" transform=\"translate(960, 420)\"> <g class=\"shimmerOverlay\" mask=\"url(#shimmerMask)\"> <g class=\"block1\"> <circle cx=\"-60\" cy=\"-40\" r=\"35\" fill=\"#7c5cff\"/> <circle cx=\"-60\" cy=\"-40\" r=\"20\" fill=\"#08090c\"/> </g> <g class=\"block2\"> <rect x=\"25\" y=\"-65\" width=\"50\" height=\"50\" rx=\"8\" fill=\"#7c5cff\" transform=\"rotate(15)\"/> <rect x=\"35\" y=\"-55\" width=\"30\" height=\"30\" rx=\"4\" fill=\"#08090c\" transform=\"rotate(15)\"/> </g> <g class=\"block3\"> <polygon points=\"-30,30 10,70 10,30\" fill=\"#7c5cff\"/> <polygon points=\"-20,40 0,55 0,40\" fill=\"#08090c\"/> </g> <g class=\"block4\"> <rect x=\"40\" y=\"20\" width=\"45\" height=\"45\" rx=\"12\" fill=\"#7c5cff\"/> <circle cx=\"62\" cy=\"42\" r=\"12\" fill=\"#08090c\"/> </g> <g class=\"block5\"> <circle cx=\"0\" cy=\"-100\" r=\"18\" fill=\"#7c5cff\" opacity=\"0.8\"/> <circle cx=\"0\" cy=\"-100\" r=\"8\" fill=\"#08090c\"/> </g> <g class=\"block6\"> <rect x=\"-70\" y=\"60\" width=\"60\" height=\"8\" rx=\"4\" fill=\"#7c5cff\" opacity=\"0.6\"/> <rect x=\"-70\" y=\"72\" width=\"40\" height=\"8\" rx=\"4\" fill=\"#7c5cff\" opacity=\"0.4\"/> </g> <line x1=\"-100\" y1=\"0\" x2=\"100\" y2=\"0\" stroke=\"#7c5cff\" stroke-width=\"1\" opacity=\"0.3\"/> <line x1=\"0\" y1=\"-100\" x2=\"0\" y2=\"100\" stroke=\"#7c5cff\" stroke-width=\"1\" opacity=\"0.3\"/> </g> </g> <text class=\"brandName\" x=\"960\" y=\"620\" text-anchor=\"middle\" font-family=\"Inter Tight, Noto Sans SC, sans-serif\" font-size=\"56\" font-weight=\"700\" letter-spacing=\"-0.02em\" fill=\"#ffffff\">HTML Anything</text> <text class=\"tagline\" x=\"960\" y=\"670\" text-anchor=\"middle\" font-family=\"Inter Tight, Noto Sans SC, sans-serif\" font-size=\"24\" font-weight=\"400\" fill=\"#ffffff\" opacity=\"0.7\">Anything → beautiful HTML</text> <line class=\"meta\" x1=\"760\" y1=\"980\" x2=\"1160\" y2=\"980\" stroke=\"#7c5cff\" stroke-width=\"1\" opacity=\"0.2\"/> <text class=\"meta\" x=\"960\" y=\"1010\" text-anchor=\"middle\" font-family=\"Inter Tight, Noto Sans SC, sans-serif\" font-size=\"11\" font-weight=\"400\" letter-spacing=\"0.16em\" fill=\"#ffffff\" opacity=\"0.4\" text-transform=\"uppercase\">htmlanything.dev · @htmlanything · 2026</text> <text class=\"meta\" x=\"960\" y=\"1035\" text-anchor=\"middle\" font-family=\"Inter Tight, Noto Sans SC, sans-serif\" font-size=\"10\" letter-spacing=\"0.12em\" fill=\"#7c5cff\" opacity=\"0.5\">#AI #科技 #深度报道 #人工智能 #监管 #战争 #就业</text> </svg>"},{"id":9919,"category":"phone","source_title":"RIP Nest Mini – The Google Home Speaker isn&#8217;t a replacement, but hopefully the start of a new era","source_url":"https://9to5google.com/2026/06/21/nest-mini-google-home-speaker-replacement-new-era/","source_name":"9to5google","summary":"The Google Home Speaker finally has a release date and, with it, Google has also ended its long-running and mega-hit Nest Mini speaker. It leaves the lineup in a weird place, as Google has a product that doesn’t replace anything it had before, and might not be everyone’s cup of tea either. This iss","tags":"phone","view_count":0,"created_at":"2026-06-22 03:01:38","image_url":"https://9to5google.com/wp-content/uploads/sites/4/2021/01/Google-Assistant-and-Nest-Mini-2.jpg?quality=82&#038;strip=all&#038;w=1600","content":""},{"id":9915,"category":"photo","source_title":"Weekly Nikon news flash #891","source_url":"https://nikonrumors.com/2026/06/21/weekly-nikon-news-flash-891.aspx/","source_name":"Nikon Rumors","summary":"→ Refurbished/renewed Nikon Z9 cameras are now $4,090 (18% off). → DZOFilm announced a new PL-Z Octopus II adapter &#38; Marlin 1.4x extender to use PL lenses on Nikon Z mirrorless cameras (both ARRI PL to Nikon Z). → The ultimate point-and-shoot shopping guide (Nikon clearly needs a new compact cam","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:35","image_url":"https://nikonrumors.com/wp-content/uploads/2026/06/Refurbished-renewed-Nikon-Z9-camera-sale-discount-550x214.png","content":""},{"id":9916,"category":"photo","source_title":"Weekly Nikon news flash #891","source_url":"https://nikonrumors.com/2026/06/21/weekly-nikon-news-flash-891.aspx/","source_name":"Nikon Rumors","summary":"→ Refurbished/renewed Nikon Z9 cameras are now $4,090 (18% off). → DZOFilm announced a new PL-Z Octopus II adapter &#38; Marlin 1.4x extender to use PL lenses on Nikon Z mirrorless cameras (both ARRI PL to Nikon Z). → The ultimate point-and-shoot shopping guide (Nikon clearly needs a new compact cam","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:35","image_url":null,"content":""},{"id":9917,"category":"photo","source_title":"Nextorage memory card special deals at B&#038;H Photo: up to $681 off","source_url":"https://nikonrumors.com/2026/06/21/nextorage-memory-card-special-deals-at-bh-photo-up-to-681-off.aspx/","source_name":"Nikon Rumors","summary":"NR&#8217;s sponsor, Nextorage, started a new memory card sale at B&#38;H Photo where you can get up to $681 off select models. The promotion includes significant discounts on CFexpress memory cards and card readers, with especially attractive pricing on high-end models: Here is the full list of disc","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:35","image_url":"https://nikonrumors.com/wp-content/uploads/2026/06/Nextorage-memory-cards-sale-discount1-550x458.png","content":""},{"id":9918,"category":"photo","source_title":"Nextorage memory card special deals at B&#038;H Photo: up to $681 off","source_url":"https://nikonrumors.com/2026/06/21/nextorage-memory-card-special-deals-at-bh-photo-up-to-681-off.aspx/","source_name":"Nikon Rumors","summary":"NR&#8217;s sponsor, Nextorage, started a new memory card sale at B&#38;H Photo where you can get up to $681 off select models. The promotion includes significant discounts on CFexpress memory cards and card readers, with especially attractive pricing on high-end models: Here is the full list of disc","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:35","image_url":null,"content":""},{"id":9913,"category":"phone","source_title":"Polymarket reportedly paid people to post fake videos of themselves placing bets]]>","source_url":"https://www.theverge.com/tech/953285/polymarket-fake-viral-video-bets","source_name":"The Verge","summary":"","tags":"phone","view_count":0,"created_at":"2026-06-22 03:01:29","image_url":"https://platform.theverge.com/wp-content/uploads/sites/2/2026/02/STKB384_POLYMARKET_D.jpg?quality=90&#038;strip=all&#038;crop=0,0,100,100","content":""},{"id":9914,"category":"phone","source_title":"Electric air taxis are stuck in the courtroom]]>","source_url":"https://www.theverge.com/column/950975/electric-air-taxis-lawsuits","source_name":"The Verge","summary":"","tags":"phone","view_count":0,"created_at":"2026-06-22 03:01:29","image_url":"https://platform.theverge.com/wp-content/uploads/sites/2/2026/06/DSC01507.jpg?quality=90&#038;strip=all&#038;crop=0,0,100,100","content":""},{"id":9910,"category":"ev","source_title":"This zinc mine needed a truck no one made, so they made it themselves","source_url":"https://electrek.co/2026/06/21/this-zinc-mine-needed-a-truck-no-one-made-so-they-made-their-own/","source_name":"Electrek","summary":"Zijin Mining couldn’t find an ultra-class electric haul truck that could get the job done at its Wulagen mine in Wuqia County, Xinjiang, so they designed their own: a 140-ton BEV haul truck with a huge, 770 kWh swappable battery pack. Then they built 290 of them. (!)","tags":"ev","view_count":0,"created_at":"2026-06-22 03:01:22","image_url":"https://electrek.co/wp-content/uploads/sites/3/2026/06/Zijin-Mining-mine.jpg?quality=82&#038;strip=all&#038;w=1600","content":""},{"id":9911,"category":"ev","source_title":"Tesla plans to sell modular AI data center hardware called &#8216;Megapod&#8217;","source_url":"https://electrek.co/2026/06/21/tesla-megapod-ai-data-center-hardware/","source_name":"Electrek","summary":"Tesla wants to sell modular AI data center hardware, according to a new trademark application for a product called “Megapod.” The filing describes a complete, self-contained computing system for AI workloads — and it lands less than a year after Tesla killed Dojo, its only in-house AI training compu","tags":"ev","view_count":0,"created_at":"2026-06-22 03:01:22","image_url":"https://electrek.co/wp-content/uploads/sites/3/2022/10/Screen-Shot-2022-10-01-at-3.10.03-PM.jpg?quality=82&#038;strip=all&#038;w=1600","content":""},{"id":9912,"category":"ev","source_title":"The wait is over: Royal Enfield&#8217;s first electric motorcycle begins deliveries","source_url":"https://electrek.co/2026/06/21/the-wait-is-over-royal-enfields-first-electric-motorcycle-begins-deliveries/","source_name":"Electrek","summary":"Royal Enfield’s long-awaited entry into the electric motorcycle market has officially begun. The company’s dedicated EV sub-brand, Flying Flea, has started customer deliveries of its first electric motorcycle, the FF.C6, with initial handovers taking place in Bengaluru, India.","tags":"ev","view_count":0,"created_at":"2026-06-22 03:01:22","image_url":"https://electrek.co/wp-content/uploads/sites/3/2026/04/flying-flea-royal-enfield-motorcycle-header.jpg?quality=82&#038;strip=all&#038;w=1600","content":""},{"id":9906,"category":"3c","source_title":"【ESG-V评级观察】A股治理体检：从公司治理走向可监督的责任关系","source_url":"https://www.tmtpost.com/8035347.html","source_name":"钛媒体","summary":"近日，济安金信发布A股上市公司ESG-V督导机制（G）评级结果。数据显示，在4764家参评A股上市公司中，G维度整体呈现中部等级为主体、两端分化并存的结构特征。多数企业已建立基本治理框架，但不同公司在信息披露质量、偿债能力、内控有效性、关联交易管理、税务合规和重大风险防控等方面仍存在明显差异。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:21","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/2f9vubuasv3.png","content":""},{"id":9907,"category":"3c","source_title":"价值判断：涨停板的投资机会和风险提示（6月18日）｜证券市场观察","source_url":"https://www.tmtpost.com/8035342.html","source_name":"钛媒体","summary":"整体市场结构性行情特征凸显，资金抛弃传统权重，集中布局半导体、新材料、算力硬件等科创赛道。操作上遵循高低切换思路，优先挖掘各行业低位低估标的，把握中长期估值修复机会；对于短期连续拉升、估值严重透支的高位连板题材股，不宜盲目追涨，警惕放量后获利资金集中出逃带来大幅回调。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:21","image_url":"https://images.tmtpost.com/uploads/images/2026/06/d32a2262b336d82b7669e06d2f2f27b7_1782034349.png","content":""},{"id":9908,"category":"3c","source_title":"价值传递：构建资本市场理解与反馈机制","source_url":"https://www.tmtpost.com/8035334.html","source_name":"钛媒体","summary":"当前舆论环境日趋动态化、多样化与复杂化。财务报告、投资者交流、分析师评论、媒体报道和社交平台讨论等多重信息渠道交织，为上市公司向市场传递自身价值带来前所未有的挑战。信息传播的即时性与广泛性在提升市场敏感度的同时，也因各渠道间可能存在的表述差异和解读偏差，带来认知不一致和市场情绪波动的风险。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:21","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/4t5yyjtng3.png","content":""},{"id":9909,"category":"ev","source_title":"Electric cars win again at Pike&#8217;s Peak as Super Mustang Mach-E gets its revenge","source_url":"https://electrek.co/2026/06/21/electric-cars-win-at-pikes-peak-as-the-super-mustang-mach-e-gets-its-revenge/","source_name":"Electrek","summary":"After a tough 2025 race where it won its class but only came in 2nd place overall, Ford brought its Super Mustang Mach-E back for revenge and managed to beat every gas car up the hill at the world’s toughest road race event.","tags":"ev","view_count":0,"created_at":"2026-06-22 03:01:21","image_url":"https://electrek.co/wp-content/uploads/sites/3/2026/01/ford-super-mustang-mach-e-pikes-peak-2026-e1768603930566.jpg?quality=82&#038;strip=all&#038;w=1600","content":""},{"id":9901,"category":"3c","source_title":"Edge AI Daily 早报（6月22日）","source_url":"https://www.tmtpost.com/8035559.html","source_name":"钛媒体","summary":"硅谷前沿领域，Meta内部AI成本失控引发行业警觉，73.7万亿Token消耗迫使建立配额制；Cisco推出FAPO框架实现Prompt自动化优化，宣告Prompt Engineering职业转型；OpenAI在京都推出100万美元Token奖池的Series T创业大赛，将算力定义为新资本形态。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:20","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/r24qtgreshtg3.png","content":""},{"id":9902,"category":"3c","source_title":"【钛晨报】加快“人工智能+消费”发展，8部门联合部署；工行、农行、中行、建行、交行集体宣布，落地离岸人民币外汇试点交易；大众汽车加速推进业务重组，将削减约5万个岗位","source_url":"https://www.tmtpost.com/8035425.html","source_name":"钛媒体","summary":"微信AI助手“小微”小范围灰度上线；钉钉新CEO陈宇森发布首封全员信，成立核心平台业务部；马斯克已行使了其2018年特斯拉CEO薪酬方案的全部权利，获得了3.04亿股股票；诺贝尔奖得主约翰·江珀宣布加盟Anthropic；苹果向巴西开放第三方应用商店，调整佣金规则；亚马逊拟向第三方数据中心销售AI芯片；国家网信办等三部门联合公布《网络数据安全风险评估办法》；国家金融监督管理总局：加强人工智能安全开发应用治理，确保人工智能应用与金融机构风险管理能力相匹配；促进平台经济大中小企业协同发展，七部门联合发布行动方案；五部门：开展2026年新能源汽车下乡活动，深入推进汽车以旧换新进乡村；公募REITs上","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:20","image_url":"https://images.tmtpost.com/uploads/images/2024/07/20240718005349865.jpg","content":""},{"id":9903,"category":"3c","source_title":"当果粒橙遭遇“中年危机”：年轻人凭啥为低糖饮料买单？","source_url":"https://www.tmtpost.com/8035063.html","source_name":"钛媒体","summary":"渠道失速。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:20","image_url":"https://images.tmtpost.com/uploads/images/2026/06/118d8b8668dfa79fc4fccb7ea06c46d4_1782038462.jpg","content":""},{"id":9904,"category":"3c","source_title":"Swisse成分差异背后，健合集团的AB面","source_url":"https://www.tmtpost.com/8034983.html","source_name":"钛媒体","summary":"健合集团的“尴尬账”。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:20","image_url":"https://images.tmtpost.com/uploads/images/2026/06/2c440da32ba5f3da9093495a7430d9fd_1782038328.jpg","content":""},{"id":9905,"category":"3c","source_title":"【数智周报】DeepSeek敲定首轮超510亿元外部融资；SpaceX换股收购AI编程独角兽Cursor；美国叫停Anthropic最强模型Fable 5和Mythos 5","source_url":"https://www.tmtpost.com/8035376.html","source_name":"钛媒体","summary":"（6月15日-6月20日）钉钉换帅后宣布组织调整；字节豆包日收入不足百万，Seedance毛利率达70%；DeepSeek识图模式正式上线；Manus早期投资者计划抱团赎回股份；腾讯参投林俊旸AI公司2000万美元；IplanRIO被指套壳阿里千问和Nex两款国产模型；AMD收购内存优化企业MEXT……","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:20","image_url":"https://images.tmtpost.com/uploads/images/2026/01/20260111233829779.jpeg","content":""},{"id":9897,"category":"3c","source_title":"给猪周期“火上浇油”，牧原“伤敌一千，自损八百”？","source_url":"https://www.tmtpost.com/8035529.html","source_name":"钛媒体","summary":"中小养殖户将被显著挤压。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:19","image_url":"https://images.tmtpost.com/uploads/images/wx/2026/06/20260622012056278463.jpg","content":""},{"id":9898,"category":"3c","source_title":"端午档下滑，市场遇冷","source_url":"https://www.tmtpost.com/8035620.html","source_name":"钛媒体","summary":"端午档下滑，市场遇冷","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:19","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/4536ug3.png","content":""},{"id":9899,"category":"3c","source_title":"Costco在中国为何败给了山姆？","source_url":"https://www.tmtpost.com/8035521.html","source_name":"钛媒体","summary":"山姆中国需要更强劲对手。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:19","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/675859f3.png","content":""},{"id":9900,"category":"3c","source_title":"独家丨京东618，全员加班但没爆单","source_url":"https://www.tmtpost.com/8035614.html","source_name":"钛媒体","summary":"十分耕耘三分收获","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:19","image_url":"https://images.tmtpost.com/uploads/images/2026/06/22/52ef1223178c6ad8b0af756e9dd7cf31_1782088737.webp","content":""},{"id":9892,"category":"3c","source_title":"谁来为毒纸尿裤事件兜底？","source_url":"https://www.tmtpost.com/8035763.html","source_name":"钛媒体","summary":"那些还不会说话的孩子，需要有人替他们挡住所有看不见的健康威胁。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:18","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/r4t3qegrsdfbvf3.png","content":""},{"id":9893,"category":"3c","source_title":"第一批消费者，已经开始抵制AI购物","source_url":"https://www.tmtpost.com/8035496.html","source_name":"钛媒体","summary":"我不想连买什么颜色的衬衫都要问AI","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:18","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/4t3qwhtrnh3.png","content":""},{"id":9894,"category":"3c","source_title":"恩和发布BPL协议语言，定位生物制造的“工业级编译器”","source_url":"https://www.tmtpost.com/8035696.html","source_name":"钛媒体","summary":"BPL是专为生物实验协议设计的可编译、可验证的形式化语言，目前已在GitLab完全开源。","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:18","image_url":"https://images.tmtpost.com/uploads/images/2026/06/078189a638527ee17555445cb9642c22_1782093494.png","content":""},{"id":9895,"category":"3c","source_title":"互联网思维做不好AI","source_url":"https://www.tmtpost.com/8035484.html","source_name":"钛媒体","summary":"告别无招、迎接陈宇森，告别互联网打法、迎接AI思维","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:18","image_url":"https://images.tmtpost.com/uploads/images/2026/06/21/d02819d62a38e4a0203fb7460cddc0c6_1782049067.jpeg","content":""},{"id":9896,"category":"3c","source_title":"顺丰联姻极兔，快递战事终章？","source_url":"https://www.tmtpost.com/8035405.html","source_name":"钛媒体","summary":"国内的仗打完了，下一战是出海","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:18","image_url":"https://images.tmtpost.com/uploads/images/2026/06/21/b55ff6a0b882a6fea641b91b8c745d4d_1782037409.jpeg","content":""},{"id":9890,"category":"3c","source_title":"安徽大佬，狂砸320亿“豪赌”算力！","source_url":"https://www.tmtpost.com/8035581.html","source_name":"钛媒体","summary":"安徽大佬，狂砸320亿“豪赌”算力！","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:17","image_url":"https://images.tmtpost.com/uploads/images/2023/tkrss/235y46jytg3.png","content":""},{"id":9891,"category":"3c","source_title":"具身智能的“大广告”时代：伴侣机器人，可能是唯一出路","source_url":"https://www.tmtpost.com/8035502.html","source_name":"钛媒体","summary":"量产不等于劳动力替代","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:17","image_url":"https://images.tmtpost.com/uploads/images/2026/06/21/7ba79a83cdbf57f9acb94f65e58870b7_1782052591.png","content":""},{"id":9888,"category":"3c","source_title":"《奥日》开发商 CEO：微软 XBOX Game Pass 游戏库阵容质量不足，无法吸引玩家持续支付订阅费","source_url":"https://www.ithome.com/0/966/742.htm","source_name":"IT之家","summary":"p data-vmark=\"2cf4\" IT之家 6 月 22 日消息，游戏《Ori（奥日）》开发商 Moon Studios 的 CEO Thomas Mahler 在 X 平台发文，认为微软 XBOX Game Pass 之所以未能进一步增长，是因为游戏库缺乏足够多的顶级大作，导致玩家在体验后选择退订。 /p p data-vmark=\"254b\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/e577e556-2465-407e-8987-3f83cc19d2c2.","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:15","image_url":null,"content":""},{"id":9889,"category":"3c","source_title":"微软将默认向符合条件 Win11 设备自动安装 Microsoft 365 Copilot","source_url":"https://www.ithome.com/0/966/741.htm","source_name":"IT之家","summary":"p data-vmark=\"0fa3\" IT之家 6 月 22 日消息，据 Windows Latest 报道，尽管公众强烈反对，且微软此前在强制预装 Microsoft 365 Copilot 一事上看似流露过些许歉意，但如今这家企业又故态复萌。 /p p style=\"text-align: center;\" data-vmark=\"f126\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/a2aec0d8-ba62-4ba5-9e6a-d8b7905d6ae3.jpg?x-bce-process=image/format","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:15","image_url":null,"content":""},{"id":9884,"category":"3c","source_title":"《玩具总动员 5》登顶 2026 年端午档票房冠军，总票房 1.21 亿","source_url":"https://www.ithome.com/0/966/748.htm","source_name":"IT之家","summary":"p data-vmark=\"fa2d\" IT之家 6 月 22 日消息，据灯塔专业版数据，截至 6 月 21 日 21 时，《玩具总动员 5》端午档票房 1.21 亿，成为 2026 年端午档票房冠军。 /p p data-vmark=\"b2c6\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/5/ac22ecb0-4a85-4d70-9242-d6fae923e768.jpg?x-bce-process=image/auto-orient,o_1\" w=\"1183\" h=\"","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:14","image_url":null,"content":""},{"id":9885,"category":"3c","source_title":"因应用预装对簿公堂：三星起诉 Triller 短视频平台欠下“数百万美元合作费用”","source_url":"https://www.ithome.com/0/966/747.htm","source_name":"IT之家","summary":"p data-vmark=\"0a44\" IT之家 6 月 22 日消息，预装应用推广合作在手机行业一直是相当重要的商业模式。手机厂商通常会与流媒体服务、社交媒体平台、游戏公司等厂商建立合作，实现“一手交钱一手交预装量”，这类协议往往金额巨大，一旦合作失控，代价自然也会非常高。 /p p data-vmark=\"689a\" 据韩媒 The Biz 报道，过去几年三星在自家手机中预装 Triller 短视频应用，然而 Triller 公司却并未完全支付所有推广费用，因此三星目前正向 Triller 寻求数百万美元赔偿。 /p p data-vmark=\"c8ba\" 据介绍，Triller 曾被","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:14","image_url":null,"content":""},{"id":9886,"category":"3c","source_title":"《CS2》IEM 科隆 Major 2026：猎鹰 Falcons 首夺 Major 冠军，NiKo 征战十二载终圆梦","source_url":"https://www.ithome.com/0/966/744.htm","source_name":"IT之家","summary":"p data-vmark=\"2068\" IT之家 6 月 22 日消息，在今天凌晨结束的《CS2》IEM 科隆 Major 2026 比赛中，Falcons 以 3-0 的比分战胜 FURIA，首次夺得 Major 冠军，猎鹰在近一年时间中连续 7 次决赛屈居亚军，但在第 8 次杀进决赛时终于把握住机会，实现 Major 首冠。 /p p data-vmark=\"d2b7\" 双方阵容： /p ul class=\" list-paddingleft-2\" li p data-vmark=\"5530\" Falcons：karrigan、NiKo、m0NESY、TeSeS、kyousuke","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:14","image_url":null,"content":""},{"id":9887,"category":"3c","source_title":"NASA 毅力号火星车用时 5 年完成火星马拉松，累计行驶超 42.2 公里","source_url":"https://www.ithome.com/0/966/743.htm","source_name":"IT之家","summary":"p data-vmark=\"bf6c\" IT之家 6 月 22 日消息，2021 年 2 月登陆火星的“毅力号”正式完成了火星马拉松里程。美国国家航空航天局（NASA）本周公布，这辆火星车自五年前登陆这颗红色星球以来，累计行驶里程已突破 26.2 英里（IT之家注：约 42.2 公里）。要知道即便在最佳行驶环境下，其最高时速也仅 0.1 英里，能取得这样的成绩实属不凡。 /p p data-vmark=\"39ad\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/dc6df","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:14","image_url":null,"content":""},{"id":9880,"category":"3c","source_title":"滥用 AI 编造股市谣言，四川南充一女子被行政处罚","source_url":"https://www.ithome.com/0/966/754.htm","source_name":"IT之家","summary":"p data-vmark=\"d9d7\" IT之家 6 月 22 日消息，据“南充融媒”公众号，今年 5 月 20 日，王某某在网上发布一篇利用 AI 生成的虚假文章，该文围绕 A 股走势对证券市场行情作出误导性预测，对证券监管政策进行不实扭曲解读。 /p p data-vmark=\"b599\" 警方调查发现，王某某利用 AI 大模型生成约 3000 字涉股市文章，再将其上传到今日头条，其滥用 AI 炮制网络热点、制造股市噱头、吸引网民眼球，根本目的就是从网络空间攫取更多流量收益。针对王某某编造、传播虚假证券市场信息，扰乱金融市场秩序， strong 日前，南部县警方对其予以行政处罚，涉股市不","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:13","image_url":null,"content":""},{"id":9881,"category":"3c","source_title":"日本卫浴巨头东陶拟 5 年内对芯片材料领域投资 800 亿日元，瞄准 1 纳米时代","source_url":"https://www.ithome.com/0/966/753.htm","source_name":"IT之家","summary":"p data-vmark=\"eaf5\" IT之家 6 月 22 日消息，据日经亚洲报道，日本卫浴制造商东陶（Toto）计划未来 5 年内投入 800 亿日元（IT之家注：现汇率约合 33.7 亿元人民币）拓展半导体材料业务，旨在为 1 纳米制程的下一代芯片制造技术提供支持。 /p p style=\"text-align: center;\" data-vmark=\"8e83\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/27ee35fc-36d8-47a2-8a3c-f81616612bef.jpg?x-bce-process","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:13","image_url":null,"content":""},{"id":9882,"category":"3c","source_title":"小米徐洁云回应“雷军过早被质疑摆拍”：我们的世界，还是少点阴暗好","source_url":"https://www.ithome.com/0/966/752.htm","source_name":"IT之家","summary":"p data-vmark=\"6fa2\" IT之家 6 月 22 日消息，6 月 21 日晚，小米集团董事长特别助理、战略市场部副总经理徐洁云发文回应雷军过早被质疑摆拍： /p blockquote p data-vmark=\"c845\" 其实吧，工作之余吃吃喝喝拍 Vlog，都两年了。你说拍 Vlog 带着相机也合理吧？但如果有人非要往某些方面带，再怎么合理，似乎也都会变成不合理，而且还能把拍 vlog 的相机在，说成在场的人都是摆拍。所以，还是刘震云先生说得好，这就是‘没有真相，只有情绪和角度’。 strong 我们的世界，还是少点阴暗好 /strong 。 /p /blockquot","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:13","image_url":null,"content":""},{"id":9883,"category":"3c","source_title":"央视曝光直播间卖茶骗局：“古树茶”实为山寨货、“助农大使”坑茶农","source_url":"https://www.ithome.com/0/966/750.htm","source_name":"IT之家","summary":"p data-vmark=\"9eb9\" IT之家 6 月 22 日消息，据央视新闻报道，一些销售茶叶的网络直播间已然成为营销作秀骗局的高发区，各种号称出自名山名寨、几百元一公斤的古树茶，到几十元乃至十几元一片的珍藏版饼茶其实都是货不对板的普通茶叶。 /p p data-vmark=\"c077\" 央视记者深入调查后发现，例如一网络直播间“云南阿伟”的粉丝量高达 78.6 万，该直播间售卖的“曼松王子山 7 号古树普洱茶”实为假货，当地茶农称“曼松地区的古树普洱茶产量很少，每年产茶季，早早就被熟悉的客户订购一空”。 /p p data-vmark=\"6f3d\" 记者以应聘的方式，进入了“云南阿","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:13","image_url":null,"content":""},{"id":9876,"category":"3c","source_title":"Getty Images 与 OpenAI 达成合作，将授权图库内容引入 ChatGPT","source_url":"https://www.ithome.com/0/966/758.htm","source_name":"IT之家","summary":"p data-vmark=\"9489\" IT之家 6 月 22 日消息，视觉内容公司 Getty Images 宣布与 OpenAI 达成一项展示合作协议。根据该合作，Getty Images 获得授权的图库内容将在 ChatGPT 的搜索与发现体验场景中呈现。 /p p data-vmark=\"1287\" span data-ref-ids=\"721599\" data-ref-urls=\"\" 公开信息显示，Getty Images 是全球最大的商业图库之一，此前曾与英伟达合作推出名为“Generative AI by Getty Images”的生成式 AI 工具，该工具允许用户利用其授","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:12","image_url":null,"content":""},{"id":9877,"category":"3c","source_title":"LG 海外推出“UltraGear 27G550B”27 英寸显示器，搭 1080P 300Hz Fast IPS 面板","source_url":"https://www.ithome.com/0/966/757.htm","source_name":"IT之家","summary":"p data-vmark=\"133d\" IT之家 6 月 22 日消息，LG 现已在海外推出一款型号为“UltraGear 27G550B”的 27 英寸显示器，该机主打 1080P 300Hz，将于本月底开始销售。 /p p data-vmark=\"716e\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/5e9edcb1-9b6b-4fcc-ac7d-0ae338efd4aa.jpg\" w=\"1440\" h=\"833\" data-weibo=\"0\" data-mpos","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:12","image_url":null,"content":""},{"id":9878,"category":"3c","source_title":"YouTube 官方账号现身《GTA 6》第二支预告片评论区，吐槽“6 月 25 日有的忙了”","source_url":"https://www.ithome.com/0/966/756.htm","source_name":"IT之家","summary":"p data-vmark=\"85d1\" IT之家 6 月 22 日消息，R 星于 6 月 18 日官宣《GTA6》将于 6 月 25 日开启预购，并放出封面图。目前 YouTube 官方账号亲自现身《GTA6》第二支官方预告片的评论区，留下一句“6 月 25 日我们有的忙了”。 /p p style=\"text-align: center;\" data-vmark=\"5de2\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/b234982e-75a0-48eb-a6ff-eb72b3f12f26.png?x-bce-proce","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:12","image_url":null,"content":""},{"id":9879,"category":"3c","source_title":"CDPR 联合 CEO 诺瓦科夫斯基：纯 AI 生成的游戏即将问世，但并非行业发展正道","source_url":"https://www.ithome.com/0/966/755.htm","source_name":"IT之家","summary":"p data-vmark=\"3d97\" IT之家 6 月 22 日消息，自从生成式人工智能兴起以来，业内围绕其是否应当应用于游戏开发的争论就从未停歇。AI 确实能够加快开发流程中的部分环节，但终究无法复刻人类创作的成果。 /p p style=\"text-align: center;\" data-vmark=\"48b2\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/34f8e2ec-7ad2-4e08-87e8-ecfe42980234.png?x-bce-process=image/format,f_auto\" w=\"69","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:12","image_url":null,"content":""},{"id":9871,"category":"3c","source_title":"魅族 Flyme Auto 合作车型累计销量突破 300 万辆","source_url":"https://www.ithome.com/0/966/766.htm","source_name":"IT之家","summary":"p data-vmark=\"4a8d\" IT之家 6 月 22 日消息，魅族 FlymeAIOS 近日宣布，Flyme Auto 合作车型累计销量突破 300 万辆，合作车型达 45 款，2026 年 5 月单月新增超过 141,609 辆。 /p p style=\"text-align: center;\" data-vmark=\"4c9c\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/7a062b28-aaf7-42b3-82ab-066cedf6fd0b.jpg?x-bce-process=image/format,f_","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:11","image_url":null,"content":""},{"id":9872,"category":"3c","source_title":"索尼再谈 AI 游戏战略：自动化流程解放开发者，打造个性化玩家体验","source_url":"https://www.ithome.com/0/966/765.htm","source_name":"IT之家","summary":"p data-vmark=\"24b3\" IT之家 6 月 22 日消息，如今的游戏行业，几乎每三款新游戏里就有一款会附带人工智能相关免责声明。《疯狂出租车：极速环游》《使命召唤：现代战争 4》《匹诺曹的谎言 2》等备受期待的新作，都将以不同形式运用这项技术。 /p p style=\"text-align: center;\" data-vmark=\"c5e1\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/e4f46314-c62a-4e39-a8a5-3f25bfb5e98f.png?x-bce-process=image/f","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:11","image_url":null,"content":""},{"id":9873,"category":"3c","source_title":"电脑也一天一个价了，经销商称不敢多囤货、预计后续价格仍会上涨","source_url":"https://www.ithome.com/0/966/764.htm","source_name":"IT之家","summary":"p data-vmark=\"7be3\" IT之家 6 月 22 日消息，据红星新闻 6 月 21 日报道，多位经销商表示，受内存价格上涨及需求量增加的影响， strong 预计后续电脑价格仍会上涨 /strong 。有经销商表示，因价格变动太大，不敢多囤货，现在只按照厂家最低的订货量定货。 /p p data-vmark=\"200a\" 该媒体走访电脑品牌线下门店获悉，联想、惠普、华硕等多家电脑品牌电脑价格出现上涨，多位经销商表示， strong 部分热门机型近一个月上涨千元左右 /strong 。 /p p data-vmark=\"2f47\" 对于近期电脑价格上涨的原因，经销商表示，一方面","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:11","image_url":null,"content":""},{"id":9874,"category":"3c","source_title":"快手持续打击“剧情演绎类”诈骗，今年以来配合有关部门抓获 34 名犯罪嫌疑人","source_url":"https://www.ithome.com/0/966/763.htm","source_name":"IT之家","summary":"p data-vmark=\"4ab7\" IT之家 6 月 22 日消息，近年来一些不法分子虚构富豪、法师、高官等人设，以“剧情演绎”方式向中老年用户高价售卖低价值商品，并承诺高价回收，诱骗中老年用户下单购买，实施诈骗行为。 /p p data-vmark=\"9581\" 对此，快手安全中心发布公告，宣布对“剧情演绎”黑灰产开展打击， strong 今年以来已配合有关部门抓获剧情演绎诈骗犯罪嫌疑人 34 名 /strong 。官方同步发布一系列典型案例，IT之家整理如下： /p h3 data-vmark=\"b075\" 典型案例一：假冒法师出售“加持法力”法器，19 人被刑事拘留 /h3 p","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:11","image_url":null,"content":""},{"id":9875,"category":"3c","source_title":"消息称索尼 PS5《宇宙机器人》销量已突破 430 万份，营收高达 2.5 亿美元","source_url":"https://www.ithome.com/0/966/759.htm","source_name":"IT之家","summary":"p data-vmark=\"2cf8\" IT之家 6 月 22 日消息，索尼推出宇宙机器人系列，本意是用来展示 PlayStation 5 主机的性能。当时这款作品看起来平平无奇，后续却被扩充为完整独立游戏《宇宙机器人》，甚至一举拿下 2024 年度游戏大奖。 /p p style=\"text-align: center;\" data-vmark=\"f00c\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/bb210d06-2876-44a5-887e-0f84673d316d.png?x-bce-process=image/","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:11","image_url":null,"content":""},{"id":9867,"category":"3c","source_title":"商务部：将艾维奥克斯公司等 10 家美国实体列入出口管制管控名单","source_url":"https://www.ithome.com/0/966/772.htm","source_name":"IT之家","summary":"p data-vmark=\"2aa8\" IT之家 6 月 22 日消息，据商务部官网今日消息，根据《中华人民共和国出口管制法》和《中华人民共和国两用物项出口管制条例》等法律法规有关规定，为维护国家安全和利益，履行防扩散等国际义务， strong 商务部决定将艾维奥克斯公司等 10 家美国实体列入出口管制管控名单 /strong ，并采取以下措施： /p ul class=\" list-paddingleft-2\" li p data-vmark=\"7bc1\" 一、禁止出口经营者对上述 10 家实体出口两用物项，禁止任何国家和地区的组织和个人将原产于中国的两用物项转移或提供给上述实体；正在","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:10","image_url":null,"content":""},{"id":9868,"category":"3c","source_title":"网红博主称导航 App 开屏“摇一摇”广告影响行车安全，客服回应目前正在改进","source_url":"https://www.ithome.com/0/966/769.htm","source_name":"IT之家","summary":"p data-vmark=\"ad78\" IT之家 6 月 22 日消息，拥有 274 万粉丝的抖音博主 @销冠李老板 上周发布视频， strong 吐槽导航 App 带开屏“摇一摇”广告 /strong ，稍有不慎会跳转到第三方平台，影响行车安全。 /p p data-vmark=\"458a\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/22fae20c-cb36-4af6-9b6d-46d5faaf919e.png\" w=\"1381\" h=\"971\" data-vma","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:10","image_url":null,"content":""},{"id":9869,"category":"3c","source_title":"小鹏 MONA 首款 SUV 官宣：MONA L03 即将正式登场","source_url":"https://www.ithome.com/0/966/768.htm","source_name":"IT之家","summary":"p data-vmark=\"5316\" IT之家 6 月 22 日消息，小鹏汽车今日官宣，MONA 首款 SUV —— MONA L03 即将正式登场。 /p p style=\"text-align: center;\" data-vmark=\"0643\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/ba9ace29-ba74-426c-8d98-7262d2f697cc.jpg?x-bce-process=image/format,f_auto\" w=\"1440\" h=\"1919\" data-weibo=\"0\" data-v","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:10","image_url":null,"content":""},{"id":9870,"category":"3c","source_title":"消息称三星 Galaxy S27 Pro 新开 6.47 英寸中屏，同步测试防窥功能","source_url":"https://www.ithome.com/0/966/767.htm","source_name":"IT之家","summary":"p data-vmark=\"dbba\" IT之家 6 月 22 日消息，博主 @数码闲聊站 今日爆料称，三星 Galaxy S27 Pro 新开 6.47 英寸中屏，同步测试防窥功能。 /p p data-vmark=\"9afd\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/afa72f76-c430-430e-98b9-45a6d27abbe4.png\" w=\"750\" h=\"193\" data-snap-from=\"%7B%22from%22%3A%22weibo%","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:10","image_url":null,"content":""},{"id":9863,"category":"3c","source_title":"财政部：在政府采购活动中，不得采购 46 家美国企业（不包括在华美资企业）生产的产品","source_url":"https://www.ithome.com/0/966/786.htm","source_name":"IT之家","summary":"p data-vmark=\"37f5\" IT之家 6 月 22 日消息，据央视新闻报道，财政部今日发布关于在政府采购活动中对有关美国企业采取相关措施的通知，根据有关法律法规，经批准， span class=\"color-00269a\" strong 现决定在政府采购活动中对 46 家美国企业采取相关措施 /strong /span 。具体通知如下： /p ul class=\" list-paddingleft-2\" li p data-vmark=\"3f58\" 一、采购人在政府采购活动中，不得采购 46 家美国企业（不包括在华美资企业）生产的产品。 /p /li li p da","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:09","image_url":null,"content":""},{"id":9864,"category":"3c","source_title":"闪迪新专利：将 NAND 闪存堆叠在计算芯片下方，破解存储瓶颈","source_url":"https://www.ithome.com/0/966/776.htm","source_name":"IT之家","summary":"p data-vmark=\"994f\" IT之家 6 月 22 日消息，闪迪正在研发更多创新方案以解决存储容量受限问题，例如在芯片内部堆叠 NAND 闪存。 /p p style=\"text-align: center;\" data-vmark=\"88ba\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/f621dedd-c8a9-4fe8-81c8-f6cff4596f91.jpg?x-bce-process=image/format,f_auto\" w=\"1280\" h=\"720\" data-weibo=\"0\" data-","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:09","image_url":null,"content":""},{"id":9865,"category":"3c","source_title":"电商平台过度逐利致乱象频发：央视曝光买家“恶意退货”，商家维权艰难成本高昂","source_url":"https://www.ithome.com/0/966/775.htm","source_name":"IT之家","summary":"p data-vmark=\"1141\" IT之家 6 月 22 日消息，近年来“恶意退货”情况屡见不鲜，央视新一期《每周质量报告》对这一情况进行了曝光，不法分子主要利用“七天无理由退货”这一规定，恶意掉包商家客户产品。 /p p data-vmark=\"aedd\" IT之家参考报道获悉，例如充电器销售商户黄先生贩售的充电器遭到一位广东珠海买家掉包成沙子，后续黄先生通过电商平台沟通，买家拒不承认用沙子冒充充电器退货的事实，无奈之下其根据订单收货地址，从西安远赴广东珠海上门维权。在派出所民警干预下买家才进行赔偿。 /p p data-vmark=\"185e\" style=\"text-align","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:09","image_url":null,"content":""},{"id":9866,"category":"3c","source_title":"亚马逊 AI 主管：已就向外部出售实体 Trainium 芯片进行商谈","source_url":"https://www.ithome.com/0/966/774.htm","source_name":"IT之家","summary":"p data-vmark=\"bd1b\" IT之家 6 月 22 日消息，据彭博社消息，Amazon（亚马逊）AI 主管 Peter DeSantis 在法国巴黎接受采访时表示， strong 已就向外部企业出售其自研 AI ASIC 的实体芯片展开讨论 /strong 。此前第三方均仅以云服务的形式访问 AWS 的 Trainium 系列芯片。 /p p data-vmark=\"7d8b\" Peter DeSantis 表示：“我们认为 AI 基础设施正在迅速发展。而且我们一直在探索如何触达更多客户。” /p p data-vmark=\"3d49\" IT之家注意到，亚马逊首席执行官 And","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:09","image_url":null,"content":""},{"id":9860,"category":"3c","source_title":"玩家发现《GTA6》罪恶城远景摩天轮没有倒影，“数毛社”分析认为系游戏“混合反射系统”导致","source_url":"https://www.ithome.com/0/966/793.htm","source_name":"IT之家","summary":"p data-vmark=\"6ab7\" IT之家 6 月 22 日消息，R 星于 6 月 18 日官宣《GTA6》将于 6 月 25 日开启预购，并在官网放出一段展示罪恶城夜景的动态图片，不过 Reddit 有用户 mr-buttons_007 发现视频中摩天轮缺乏水面倒影（旁边建筑均有倒影），这引发了玩家担忧，认为游戏可能还未完全打磨完成。 /p p data-vmark=\"8509\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/dcfe46fd-2c3e-44bd-","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:08","image_url":null,"content":""},{"id":9861,"category":"3c","source_title":"九州风神 PF650D V2 电源上市：ATX 3.1 银牌直出，300W 12V-2×6，349 元","source_url":"https://www.ithome.com/0/966/792.htm","source_name":"IT之家","summary":"p data-vmark=\"29df\" IT之家 6 月 22 日消息，九州风神 (DeepCool) 现已在电商平台上架 PF650D V2 电源， strong 优惠后到手价 349 元 /strong 。 /p p data-vmark=\"0ec4\" 这一型号采用直出（原生）线材设计，符合 ATX 3.1 规范（可承受 200% 整机峰值功率），提供 300W 12V-2×6 供电，获得三家第三方机构的银牌转换效率认证， strong 享受 5 年质保 /strong 。 /p p data-vmark=\"83a5\" style=\"text-align: center;\" img","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:08","image_url":null,"content":""},{"id":9862,"category":"3c","source_title":"Ubiquiti 推出企业级 NAS：3U 机架式设计，16+2 盘位","source_url":"https://www.ithome.com/0/966/787.htm","source_name":"IT之家","summary":"p data-vmark=\"5024\" IT之家 6 月 22 日消息，Ubiquiti（优倍快）当地时间 18 日宣布推出 3U 机架式 Enterprise NAS (ENAS) 系统，这一型号面向企业存储应用需求，售价 3999 美元（IT之家注：现汇率约合 27149 元人民币）。 /p p style=\"text-align: center;\" data-vmark=\"c198\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/273a592d-5f09-4ac9-9598-b54fe3104466.jpg?x-bce","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:08","image_url":null,"content":""},{"id":9856,"category":"3c","source_title":"红魔游戏平板 5 Pro 官图公布，6 月 30 日发布","source_url":"https://www.ithome.com/0/966/800.htm","source_name":"IT之家","summary":"p data-vmark=\"a9bc\" IT之家 6 月 22 日消息，红魔游戏平板 5 Pro 将于 6 月 30 日 15:00 发布，官方今日公布这款新品的外观海报，号称“未来电竞性能美学”。 /p p data-vmark=\"f830\" 从图上可以看到，这款新品延续了红魔家族式设计语言，提供黑、银两款配色，机身侧面除了传统音量按键，还配备一颗 strong 红色按键 /strong 。机身正面采用全面屏设计，带来更宽阔视野。机身背面极具辨识度，预示新机将支持水冷散热。 /p p data-vmark=\"bad5\" style=\"text-align: center;\" img s","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:07","image_url":null,"content":""},{"id":9857,"category":"3c","source_title":"第四届链博会今日开幕，首次设立人工智能专区","source_url":"https://www.ithome.com/0/966/799.htm","source_name":"IT之家","summary":"p data-vmark=\"6361\" IT之家 6 月 22 日消息，据央视新闻报道， strong 第四届中国国际供应链促进博览会 /strong （第四届链博会）今天在北京开幕。 /p p data-vmark=\"0794\" 本届链博会共设置数智科技、先进制造、绿色农业、健康生活、智能汽车、清洁能源等六大链条和供应链服务展区。目前，展台搭建等各项准备工作已全面完成。 /p p data-vmark=\"abda\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/7c0","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:07","image_url":null,"content":""},{"id":9858,"category":"3c","source_title":"国家邮政局：1-5 月寄递业务量累计完成 898.9 亿件，同比增长 4.3%","source_url":"https://www.ithome.com/0/966/798.htm","source_name":"IT之家","summary":"p data-vmark=\"4165\" IT之家 6 月 22 日消息， span class=\"js_title_inner\" 国家邮政局今日公布 2026 年 1-5 月邮政行业运行情况，IT之家整理如下： /span /p p data-vmark=\"d414\" 1—5 月，邮政行业业务收入（不包括邮政储蓄银行直接营业收入）累计完成 7635.4 亿元， strong 同比增长 6.2% /strong 。其中，快递业务收入累计完成 6353.7 亿元，同比增长 7.2%。 /p p data-vmark=\"e2a4\" 1—5 月，邮政行业寄递业务量累计完成 898.9 亿件， s","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:07","image_url":null,"content":""},{"id":9859,"category":"3c","source_title":"优派推出 24.5\" QHD 180Hz 显示器 VX25G26-2K-W： Fast IPS 面板，白色模具","source_url":"https://www.ithome.com/0/966/796.htm","source_name":"IT之家","summary":"p data-vmark=\"152d\" IT之家 6 月 22 日消息，优派 (ViewSonic) 近日在官网上线了游戏电竞显示器新品 VX25G26-2K-W。这一型号采用白色模具， strong 基于 24.5\" Fast IPS 面板 /strong ，拥有 QHD (2560×1440) 分辨率和 180Hz 原生刷新率。 /p p data-vmark=\"c43c\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/b9ee55e5-cd2c-4414-9f0e-","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:07","image_url":null,"content":""},{"id":9851,"category":"3c","source_title":"蚂蚁集团新一届董事会完成换届，何小鹏出任独立董事","source_url":"https://www.ithome.com/0/966/806.htm","source_name":"IT之家","summary":"p data-vmark=\"1e4b\" IT之家 6 月 22 日消息，蚂蚁集团官网信息显示，新一届董事会已完成换届： /p ul class=\" list-paddingleft-2\" li p data-vmark=\"e0d7\" 清华大学经济管理学院院长白重恩、 strong 小鹏汽车董事长兼 CEO 何小鹏 /strong 、德勤中国原首席执行官曾顺福获聘新任独立董事； /p /li li p data-vmark=\"ebdc\" 港交所前主席史美伦、全球知名 AI 学者张宏江继续留任。 /p /li /ul p data-vmark=\"44ff\" 换届后，蚂蚁集团董事会","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:06","image_url":null,"content":""},{"id":9852,"category":"3c","source_title":"40 款移动应用违法违规收集使用个人信息被通报","source_url":"https://www.ithome.com/0/966/804.htm","source_name":"IT之家","summary":"p data-vmark=\"bac9\" IT之家 6 月 22 日消息，国家网络安全通报中心今日发文，根据中央网信办、工业和信息化部、公安部联合发布的《关于开展 2026 年个人信息保护系列专项行动的公告》，依据《网络安全法》《个人信息保护法》《网络数据安全管理条例》《App 违法违规收集使用个人信息行为认定方法》等法律法规和有关规定，经公安部计算机信息系统安全产品质量监督检验中心检测， strong 40 款移动应用存在一项或者多项违法违规收集使用个人信息情况 /strong ，现通报如下： /p p data-vmark=\"ed06\" 1、处理不满十四周岁未成年人个人信息，未制定专门的个","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:06","image_url":null,"content":""},{"id":9853,"category":"3c","source_title":"周星驰导演新电影《功夫女足》官宣 7 月上映","source_url":"https://www.ithome.com/0/966/803.htm","source_name":"IT之家","summary":"p data-vmark=\"219d\" IT之家 6 月 22 日消息，周星驰今日在社交平台发布视频，随后电影《功夫女足》开通官方微博并转发视频。 /p p data-vmark=\"8e10\" 视频中，周星驰透露新片正在后期制作，针对大家都很关心的上映时间， strong 他表示暂定 7 月 10 日或 7 月 17 日上映 /strong 。 /p p data-vmark=\"b3d9\" style=\"text-align: center;\" a class=\"ithome_super_player\" contenteditable=\"false\" target=\"_blank\" hr","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:06","image_url":null,"content":""},{"id":9854,"category":"3c","source_title":"蔚来 ES8 大五座版即将上市，6 月 28 日展车到店并开启预订","source_url":"https://www.ithome.com/0/966/802.htm","source_name":"IT之家","summary":"p data-vmark=\"846d\" IT之家 6 月 22 日消息，蔚来今日官宣：“蔚来 ES8 大五座版即将上市，引领高端大五座 SUV 进入纯电时代。6 月 28 日展车到店并开启预订，敬请期待。” /p p data-vmark=\"c68c\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/a66ac263-e350-4e55-9d02-d30942f3ede1.png\" w=\"638\" h=\"542\" data-snap-from=\"%7B%22from%22%","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:06","image_url":null,"content":""},{"id":9855,"category":"3c","source_title":"鸿海刘扬伟：1GW 英伟达 Vera Rubin AI 数据中心需 470 亿美元","source_url":"https://www.ithome.com/0/966/801.htm","source_name":"IT之家","summary":"p data-vmark=\"5094\" IT之家 6 月 22 日消息，鸿海 (Hon Hai / Foxconn) 董事长刘扬伟本月 18 日在台湾地区工商协进会会员大会上表示， strong 基于 NVIDIA（英伟达）Vera Rubin 平台打造 1GW 规模的 AI 数据中心需要 470 亿美元 /strong sub （IT之家注：现汇率约合 3190.83 亿元人民币） /sub strong 的资本支出 /strong 。 /p p data-vmark=\"c828\" 刘扬伟提到，单一个 Vera Rubin 机架 / 机柜的价格就达到 910 万美元，而 1GW 数据中","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:06","image_url":null,"content":""},{"id":9846,"category":"3c","source_title":"消息称某厂新旗舰测试新一代 2K 级超清显示 + 防窥，预计为小米 18 Pro","source_url":"https://www.ithome.com/0/966/812.htm","source_name":"IT之家","summary":"p data-vmark=\"b85e\" IT之家 6 月 22 日消息，据博主 @数码闲聊站 今日爆料，某厂母系迭代新旗舰，Pro 系列测试新一代 2K 级超清显示 + 防窥显示技术，软硬件支持全方位隐私防护。评论区有网友推测为小米 18 Pro。 /p p data-vmark=\"d482\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/73b9544f-1d84-4dc8-a15e-f29698b772c3.png?x-bce-process=image/format","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:05","image_url":null,"content":""},{"id":9847,"category":"3c","source_title":"华擎推出 B550 Rock WiFi 主板：10 相供电，3 M.2，2.5GbE + Wi-Fi 6E","source_url":"https://www.ithome.com/0/966/811.htm","source_name":"IT之家","summary":"p data-vmark=\"7058\" IT之家 6 月 22 日消息，华擎 (ASRock) 现已在官网上线 B550 Rock WiFi 主板。这款 AMD Socket AM4 平台末期产品采用标准 ATX 板型，提供 4 个 UDIMM 内存插槽。 /p p data-vmark=\"9f01\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/ea4f5a9f-2af0-4024-b647-bca5117a9b8b.png\" w=\"1200\" h=\"1000\" dat","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:05","image_url":null,"content":""},{"id":9848,"category":"3c","source_title":"吉利银河战舰 700 全地形硬核 SUV 更多官图发布：830kW 三电机四驱，年内上市","source_url":"https://www.ithome.com/0/966/810.htm","source_name":"IT之家","summary":"p data-vmark=\"8dfe\" IT之家 6 月 22 日消息，吉利银河今日放出了旗下全新中大型 SUV nbsp;银河战舰 700 的更多官图，这款被定义为“AI 全地形硬核 SUV”的新车，计划年内正式上市。 /p p data-vmark=\"5628\" 银河战舰 700 采用硬朗的线条勾勒与方盒子车身造型，塑造出鲜明的硬派越野视觉风格。前脸采用长条矩形格栅轮廓，搭配贯穿式日间行车灯设计，品牌 Logo 具备点亮功能。前大灯内部日行灯采用圆弧造型，使灯组整体呈现出炯炯有神的视觉效果。 /p p style=\"text-align: center;\" data-vmark=\"5","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:05","image_url":null,"content":""},{"id":9849,"category":"3c","source_title":"联想 2026 款 ThinkPad T1g 笔记本新增 U7 356H/U9 386H vPro 规格，6 月 29 日首销","source_url":"https://www.ithome.com/0/966/809.htm","source_name":"IT之家","summary":"p data-vmark=\"4bc8\" IT之家 6 月 22 日消息，联想现为旗下 2026 款 ThinkPad T1g 笔记本新增多款配置，将于 6 月 29 日 0 点开启首销，IT之家整理产品参数： /p ul class=\"medium-size list-paddingleft-2\" li p data-vmark=\"0ded\" Ultra 7 356H + 32GB RAM + 1TB SSD + RTX5060：32999 元，国补后 31499 元 /p /li li p data-vmark=\"463e\" Ultra 9 386H vPro + 32GB RA","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:05","image_url":null,"content":""},{"id":9850,"category":"3c","source_title":"蔚来全国建成 8996 座充换电站，累计提供超 1.1 亿次换电","source_url":"https://www.ithome.com/0/966/808.htm","source_name":"IT之家","summary":"p data-vmark=\"d733\" IT之家 6 月 22 日消息，蔚来宣布，截至今日，蔚来全国建成 8,996 座充换电站，其中换电站 3,923 座，充电站 5,073 座、充电桩 29,225 根，累计提供超 1.1 亿次换电。 /p p data-vmark=\"faaf\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/19ae0246-65d1-4f61-a48e-39ce06ec3cb5.png\" w=\"702\" h=\"1150\" data-mpos=\"2,","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:05","image_url":null,"content":""},{"id":9844,"category":"3c","source_title":"英伟达黄仁勋链博会致辞：中国是世界重要科技产业中心之一，工程师表现卓越","source_url":"https://www.ithome.com/0/966/823.htm","source_name":"IT之家","summary":"p data-vmark=\"46c3\" IT之家 6 月 22 日消息，第四届中国国际供应链促进博览会（第四届链博会）于今日（6 月 22 日）在北京开幕，据央视财经报道， strong 英伟达 CEO 黄仁勋用视频方式发表致辞 /strong 。 /p p data-vmark=\"77b0\" 黄仁勋表示：“链博会所关注的是世界上最重要的体系之一：供应链。供应链连接着能源、工厂、物流、企业和客户，进而连接着整个世界。 strong 中国是世界上重要的科技与产业中心之一，这里的工程师表现卓越，开发者行动敏捷，企业也以非凡的规模实现发展 /strong 。再次祝贺 2026 年链博会开幕，祝愿本","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:04","image_url":null,"content":""},{"id":9845,"category":"3c","source_title":"酷派推出 COOL80 手机：联发科 G99 + 6G + 128G 售 819 元","source_url":"https://www.ithome.com/0/966/817.htm","source_name":"IT之家","summary":"p data-vmark=\"08f7\" IT之家 6 月 22 日消息，酷派现已推出 COOL80 手机，该机定位入门，配备联发科 G99 芯片，匹配 6GB 物理 RAM 和 128GB 存储空间， strong 定价为 819 元 /strong 。 /p p data-vmark=\"e149\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/aa3d78fa-d1fd-4cda-9a29-43855e062b2e.png?x-bce-process=image/for","tags":"3c","view_count":0,"created_at":"2026-06-22 03:01:04","image_url":null,"content":""},{"id":9842,"category":"photo","source_title":"Early Prime Deals available on Amazon","source_url":"https://www.sonyalpharumors.com/early-prime-deals-available-on-amazon/","source_name":"SonyAlphaRumors","summary":"We already have some early Amazon Prime Deals on this special page (Click here). There is also a new up to 20% off on Amazon Resale products (Click here). And a ton of Fathers Day Deals can be found on this BHphoto page. The post Early Prime Deals available on Amazon first appeared on sonyalpharumor","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:02","image_url":null,"content":""},{"id":9843,"category":"photo","source_title":"Best Sony cameras for Wedding Photographers and Filmmakers","source_url":"https://www.sonyalpharumors.com/best-sony-cameras-for-wedding-photographers-and-filmmakers/","source_name":"SonyAlphaRumors","summary":"Explora (Click here) made a list of the best cameras for Wedding Photographers and Filmmakers: Sony a1 II: As Sony’s flagship &#8220;Top Dog,&#8221; this camera combines a 50MP sensor with 8K video and advanced AI autofocus, making it the premier choice for high-end work that demands the best of bot","tags":"photo","view_count":0,"created_at":"2026-06-22 03:01:02","image_url":null,"content":""},{"id":9840,"category":"travel","source_title":"Two horses sent to the holding box and three withdraw before Luhmühlen final trot-up","source_url":"https://www.horseandhound.co.uk/eventing/luhmuhlen-horse-trials-final-horse-inspection-cci5-and-cci4-927657","source_name":"Horse & Hound","summary":"Daniel Jocelyn (New Zealand) riding Blackthorn Cruise in the second horse inspection of CCI5*-L during the Longines Luhmühlen Horse Trials 2026 held at TGL Turniergesellschaft, just outside the village of Luhmühlen in Germany between 17th - 21st June 2026All 15 horses have passed the CCI5* Longine","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:55","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/Daniel-Jocelyn_Blacktho_PN92904-300x169.jpg","content":""},{"id":9841,"category":"travel","source_title":"Develop your horse’s straightness in canter with the help of this shallow loops exercise","source_url":"https://www.horseandhound.co.uk/horse-training/shallow-loops-canter-exercise-926770","source_name":"Horse & Hound","summary":"We know straightness is a crucial element of how our horse goes, and one of the scales of training. Canter, being asymmetrical, is the hardest gait to achieve straightness, with many horses falling out at the shoulder and swinging the quarters in. This flatwork exercise uses shallow loops to straigh","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:55","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/HAH00.lb_Lucy_Merrell_training_Futureowns._DSC6902-300x169.jpg","content":""},{"id":9836,"category":"travel","source_title":"‘The horse deserved to win’: William Whitaker wins second Hickstead Derby – 10 years after his first","source_url":"https://www.horseandhound.co.uk/showjumping/2026-hickstead-derby-results-927710","source_name":"Horse & Hound","summary":"Winner. William Whitaker (GBR) and Flamboyant in The Al Shira'aa Derby at The Al Shira’aa Hickstead Derby, Hickstead, Sussex. June 21st 2026 ~ MANDATORY Credit Elli Birch/Bootsandhooves - NO UNAUTHORISED USE - 07745 909676William Whitaker ended a 10-year wait for a second Al Shira’aa Hickstead Derby","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:54","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/BH_HICK_202606210149-300x169.jpg","content":""},{"id":9837,"category":"travel","source_title":"‘The most genuine horse’: Olympic gelding retains his Luhmühlen title, plus Andrew Hoy among those to impress","source_url":"https://www.horseandhound.co.uk/eventing/julia-krajewski-uelzeners-nickel-luhmuhlen-horse-trials-cci4-s-results-927700","source_name":"Horse & Hound","summary":"Julia Krajewski (Germany) riding Uelzener's Nickel during the showjumping phase of the CCI4*-S Longines Luhmühlen Horse Trials 2026 held at TGL Turniergesellschaft, just outside the village of Luhmühlen in Germany between 17th - 21st June 2026Julia Krajewski and Uelzener’s Nickel are back-to-back Ge","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:54","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/Julia-Krajewski_Uelzener_PN93890-300x169.jpg","content":""},{"id":9838,"category":"travel","source_title":"‘A privilege to have this horse as a friend’: British five-star first-timer achieves top-10 finish at Luhmühlen","source_url":"https://www.horseandhound.co.uk/eventing/harry-horton-10th-at-luhmuhlen-horse-trials-927691","source_name":"Horse & Hound","summary":"Harry Horton (Great Britain) riding Cooley with Ambition in the cross country phase of CCI5*-L during the Longines Luhmühlen Horse Trials 2026 for the CCI5*-L competition held at TGL Turniergesellschaft, just outside the village of Luhmühlen in Germany between 17th - 21st June 2026Britain’s Harry H","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:54","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/Harry-Horton_Cooley-w_PN89496-300x169.jpg","content":""},{"id":9839,"category":"travel","source_title":"‘The horse bred to happy hack has gone and won two five-stars’: delight as British rider tops Luhmühlen podium","source_url":"https://www.horseandhound.co.uk/eventing/caroline-harris-tops-cci5-luhmuhlen-horse-trials-results-927671","source_name":"Horse & Hound","summary":"Caroline Harris (Great Britain) riding D Day in the showjumping phase of the CCI5*-L during the Longines Luhmühlen Horse Trials 2026 held at TGL Turniergesellschaft, just outside the village of Luhmühlen in Germany between 17th - 21st June 202Britain’s Caroline Harris and D. Day are double five-st","tags":"travel","view_count":0,"created_at":"2026-06-22 03:00:54","image_url":"https://keyassets.timeincuk.net/inspirewp/live/wp-content/uploads/sites/14/2026/06/Caroline-Harris_D-Day_PN93078-3-300x169.jpg","content":""},{"id":9834,"category":"phone","source_title":"nova 16 Ultra 体验：年轻人的第一台旗舰华为？","source_url":"https://www.ifanr.com/1669187?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=","source_name":"爱范儿","summary":"华为 nova 16 Ultra，是一台谁的手机？#欢迎关注爱范儿官方微信公众号：爱范儿（微信号：ifanr），更多精彩内容第一时间为您奉上。","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:38","image_url":"https://s3.ifanr.com/wp-content/uploads/2026/06/cover2-1024x682.png","content":""},{"id":9835,"category":"phone","source_title":"早报｜曝苹果新CEO重建设计团队/微信原生AI助手「小微」灰度上线/马斯克拿下7800亿天价薪酬","source_url":"https://www.ifanr.com/1669504?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=","source_name":"爱范儿","summary":"· 微博 CEO 回应吐槽「被 WPS 背刺了」登上热搜：自己养的虾发的 · 网易云音乐旗下 AI 陪伴 App「妙时」将于 7 月停运 · 挪威拟禁止小学生使用生成式 AI#欢迎关注爱范儿官方微信公众号：爱范儿（微信号：ifanr），更多精彩内容第一时间为您奉上。","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:38","image_url":"https://s3.ifanr.com/images/ep/cover-images/die_yong_zhe_cover.jpg","content":""},{"id":9833,"category":"phone","source_title":"古尔曼：过去十年苹果设计部门地位持续下滑，新 CEO 特努斯将做出改变","source_url":"https://www.ithome.com/0/966/745.htm","source_name":"IT之家-手机","summary":"p data-vmark=\"9f87\" IT之家 6 月 22 日消息，彭博社记者马克 · 古尔曼在最新一期《Power On》行业通讯中，梳理了苹果公司过去十年的管理层架构变化：在蒂姆 · 库克执掌苹果期间，设计团队在高管层的话语权持续式微。乔纳森 · 艾维离职、核心设计人才接连出走，再加上财务与运营部门对产品研发方向的决策权不断扩张，进一步加剧了这一局面。 /p p data-vmark=\"ffe6\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/38e0d532-c","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:36","image_url":null,"content":""},{"id":9829,"category":"phone","source_title":"消息称 Anthropic 或采用苹果 Digital ID 完成用户身份核验","source_url":"https://www.ithome.com/0/966/795.htm","source_name":"IT之家-手机","summary":"p data-vmark=\"62e6\" IT之家 6 月 22 日消息，去年，苹果在 iPhone 上推出了数字身份证（Digital ID）功能，用户可将美国护照存入苹果钱包作为身份凭证使用。过去几年，苹果也在逐步上线钱包驾照功能，但该服务仅在美国各州分阶段落地。而数字护照身份凭证是通用功能，所有持有美国护照的用户都能使用。 /p p data-vmark=\"5bba\" 据 9to5Mac 报道，这项功能固然可以在机场运输安全管理局（TSA）安检口直接出示，但苹果的目标远不止于此：布局数字化时代的身份核验体系。虽然相关消息尚未得到官方证实，但有消息称，该数字身份技术或将很快迎来首个大规模落","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:35","image_url":null,"content":""},{"id":9830,"category":"phone","source_title":"鸿蒙智行首款科技豪华硬派 SUV，享界 G9 外观细节公布","source_url":"https://www.ithome.com/0/966/790.htm","source_name":"IT之家-手机","summary":"p data-vmark=\"2842\" IT之家 6 月 22 日消息，享界汽车今日公布享界 G9 外观细节，该车系鸿蒙智行首款科技豪华硬派 SUV。 /p p data-vmark=\"af86\" 从图上可以看到，这款新车采用硬派 SUV 当下流行的方正车身造型，车身侧面采用 L 形“天镜”设计， strong 配备发光 Logo、摘星门把手 /strong 。此外，该车还可选装全新轮毂、后挂式储物箱等个性化配置。 /p p data-vmark=\"1704\" style=\"text-align: center;\" img src=\"https://img.ithome.com/news","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:35","image_url":null,"content":""},{"id":9831,"category":"phone","source_title":"华为鸿蒙 HarmonyOS 7.0 开发者 Beta 1 将相机拍照默认格式从 JPG 切换为 HEIF","source_url":"https://www.ithome.com/0/966/789.htm","source_name":"IT之家-手机","summary":"p data-vmark=\"3508\" IT之家 6 月 22 日消息，据“HarmonyOS 开发者技术”公众号，在 HarmonyOS 7.0（API26）Developer Beta 1 版本中，HarmonyOS 设备将相机拍照默认格式从 JPG 切换为了 HEIF。 /p p data-vmark=\"6352\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/398feffe-9d1b-4af0-955c-357a50c08810.png\" w=\"1122\" h=","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:35","image_url":null,"content":""},{"id":9832,"category":"phone","source_title":"华为余承东：Grand Design 典藏大观，是尊界再向上一步的全新超高端系列","source_url":"https://www.ithome.com/0/966/788.htm","source_name":"IT之家-手机","summary":"p data-vmark=\"7182\" IT之家 6 月 22 日消息，鸿蒙智行今日官宣鸿蒙智行尊界品牌盛典将于 6 月 25 日 19:00 举行，尊界 S800 Grand Design 典藏大观有望亮相。 /p p data-vmark=\"2137\" 随后，华为常务董事、产品投资评审委员会主任、终端 BG 董事长余承东发文称：“尊界 S800 典藏大观即将正式发布！从第一辆尊界车开始，尊界追求的就是极致。 strong Grand Design 典藏大观，是尊界再向上一步的全新超高端系列 /strong ！它不是重复过去，而是对设计、工艺、科技与体验的全新探索！这次鸿蒙智行尊界品牌盛典","tags":"phone","view_count":0,"created_at":"2026-06-22 03:00:35","image_url":null,"content":""},{"id":9828,"category":"ev","source_title":"IT早报 0622：马斯克拿下人民币 7800 亿元天价薪酬；黑鲨社区关闭访问；京东刘强东称将来不需要快递员，70 万兄弟要转行；供应链称已向苹果首款折叠屏供货...","source_url":"https://www.ithome.com/0/966/746.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"8b2e\" “IT早报”时间，大家好，现在是 2026 年 6 月 22 日星期一，今天的重要科技资讯有： /p h2 data-vmark=\"227d\" 1、马斯克行权特斯拉 2018 年薪酬方案，账面收益高达 1160 亿美元 /h2 p data-vmark=\"319e\" 马斯克已全额行使其 2018 年特斯拉 CEO 薪酬方案，获得约 3.04 亿股，按当前股价计算账面收益高达 1160 亿美元。不过，这些股份需至 2028 年 1 月才正式归属，且面临巨额税务。这标志着历时六年的法律拉锯战最终落幕。 gt; gt; a href=\"https://w","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:33","image_url":null,"content":""},{"id":9823,"category":"ev","source_title":"智谱市值首次突破 1 万亿港元，股价年内涨超 2000%","source_url":"https://www.ithome.com/0/966/791.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"e583\" IT之家 6 月 22 日消息，今日盘中， strong 港股智谱总市值首次突破 1 万亿港元 /strong ，年内涨超 2000%；智谱今日股价现涨超 35%，总市值达到 1.27 万亿港元。 /p p data-vmark=\"5d5a\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/59ca4316-99c5-4b77-8613-5b5388d85ea8.png\" w=\"791\" h=\"654\" data-weibo=\"0\"","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:32","image_url":null,"content":""},{"id":9824,"category":"ev","source_title":"特斯拉申请 Megapod 商标，暗示将推出模块化 AI 数据中心硬件系统","source_url":"https://www.ithome.com/0/966/771.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"65a1\" IT之家 6 月 22 日消息，据 Electrek 报道，特斯拉一份全新商标申请文件显示，公司计划推出一款名为“Megapod”的模块化人工智能数据中心硬件产品。 /p p style=\"text-align: center;\" data-vmark=\"618d\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/31f99905-7181-42b7-8d58-798cad9328a7.png?x-bce-process=image/format,f_auto\" w=\"1440\" h=\"7","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:32","image_url":null,"content":""},{"id":9825,"category":"ev","source_title":"鸿蒙智行尊界 S800 Grand Design 典藏大观 6 月 25 日发布","source_url":"https://www.ithome.com/0/966/770.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"3ab1\" IT之家 6 月 22 日消息，鸿蒙智行今日官宣：“尊界 S800 Grand Design 典藏大观，大观天成，匠造万象。6 月 25 日 19:00，鸿蒙智行尊界品牌盛典，敬请期待！” /p p data-vmark=\"57fd\" style=\"text-align: center;\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/cdf5829e-d7a1-4bb8-a3d4-5c268ae5ba15.png\" w=\"638\" h=\"1128\" data-snap-from=\"%7","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:32","image_url":null,"content":""},{"id":9826,"category":"ev","source_title":"比亚迪腾势 N8L 闪充版车型将于 6 月 23 日上市，预售价 35 万元起","source_url":"https://www.ithome.com/0/966/761.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"3f3f\" IT之家 6 月 22 日消息，比亚迪宣布旗下腾势 N8L 闪充版定于 6 月 23 日（明天）19:30 正式上市，新车定位大六座安全豪华中大型 SUV，已于 4 月 10 日开启预售，预售价区间 35-40 万元。 /p p style=\"text-align: center;\" data-vmark=\"895b\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/1474ab20-a58d-4412-9060-d21183e790d1.jpg?x-bce-process=image/f","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:32","image_url":null,"content":""},{"id":9827,"category":"ev","source_title":"击败所有燃油车，福特超级野马 Mach-E 纯电赛车夺得 2026 派克峰爬山赛冠军","source_url":"https://www.ithome.com/0/966/751.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"7d30\" IT之家 6 月 22 日消息，2025 年派克峰爬山赛战况惨烈：福特赛车虽拿下组别冠军，总成绩却仅位列第二。今年福特携超级野马 Mach-E（Super Mustang Mach-E ）再战赛场一雪前耻，在这项全球难度顶尖的山地竞速赛事中，一举击败所有燃油赛车登顶。 /p p style=\"text-align: center;\" data-vmark=\"77a2\" img src=\"https://img.ithome.com/newsuploadfiles/2026/6/539b7ccd-0c54-4515-965e-060e9ad35222.","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:32","image_url":null,"content":""},{"id":9820,"category":"ev","source_title":"商务部：5 月新能源汽车国内零售渗透率达 62.9%，再创历史新高","source_url":"https://www.ithome.com/0/966/820.htm","source_name":"IT之家-汽车","summary":"p data-vmark=\"edfa\" IT之家 6 月 22 日消息，今日，商务部消费促进司负责人谈 2026 年 5 月我国消费市场情况。 /p p data-vmark=\"153b\" 随着我国消费市场结构优化升级，居民消费正从以商品消费为主，向商品和服务消费并重转变。1-5 月，社会消费商品和服务零售总额同比（IT之家注：下同）增长 2.8%； strong 社会消费品零售总额 20.6 万亿元，增长 1.4% /strong ，其中除汽车以外的消费品零售额增长 2.7%；服务零售额增长 5.4%。 /p p data-vmark=\"b532\" strong 一是商品消费总体平稳","tags":"ev","view_count":0,"created_at":"2026-06-22 03:00:31","image_url":null,"content":""}]}