logo-concept-v1.1.0-20260808-0213.html 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>DoTouch.AI · Logo 概念审阅 v1.1.0</title>
  7. <style>
  8. :root {
  9. --bg: #0A0F1E;
  10. --card: #101730;
  11. --card2: #0D1426;
  12. --border: rgba(255,255,255,0.08);
  13. --green: #00E5A0;
  14. --amber: #FFA63D;
  15. --bluegray: #5A6B9E;
  16. --text: #E8ECF8;
  17. --muted: #9AA3C0;
  18. --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, sans-serif;
  19. }
  20. * { margin:0; padding:0; box-sizing:border-box; }
  21. body { background:var(--bg); color:var(--text); font-family:var(--font); line-height:1.6; padding-bottom:80px; }
  22. .wrap { max-width:1200px; margin:0 auto; padding:0 28px; }
  23. header { position:sticky; top:0; z-index:50; background:rgba(10,15,30,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); }
  24. .header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
  25. .brand-mini { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:1px; }
  26. .brand-dot { width:14px; height:14px; border-radius:3px; background:linear-gradient(135deg, var(--green), var(--amber)); box-shadow:0 0 14px rgba(0,229,160,.5); }
  27. .badge { display:flex; align-items:center; gap:14px; font-size:13px; color:var(--muted); }
  28. .badge .ver { background:rgba(0,229,160,.12); border:1px solid rgba(0,229,160,.4); color:#5FF5C3; padding:3px 12px; border-radius:999px; font-weight:600; }
  29. .badge .ts { font-variant-numeric:tabular-nums; }
  30. .status { display:inline-flex; align-items:center; gap:6px; color:var(--amber); font-weight:600; }
  31. .status::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--amber); box-shadow:0 0 8px var(--amber); animation:pulse 1.6s infinite; }
  32. @keyframes pulse { 50% { opacity:.35; } }
  33. .hero { padding:56px 0 36px; text-align:center; }
  34. .hero h1 { font-size:32px; font-weight:800; letter-spacing:1px; }
  35. .hero h1 span { background:linear-gradient(120deg, #5FF5C3, #FFC47E); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
  36. .hero p { margin-top:12px; color:var(--muted); max-width:720px; margin-left:auto; margin-right:auto; font-size:14.5px; }
  37. .hero .meta { margin-top:16px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
  38. .chip { font-size:12px; padding:4px 12px; border-radius:999px; border:1px solid var(--border); color:var(--muted); background:var(--card); }
  39. /* 改版说明 */
  40. .revise { margin-top:26px; background:linear-gradient(160deg, rgba(255,166,61,.08), rgba(0,229,160,.04)); border:1px solid rgba(255,166,61,.3); border-radius:16px; padding:24px 28px; }
  41. .revise h3 { font-size:16px; margin-bottom:14px; color:var(--amber); }
  42. .revise table { width:100%; border-collapse:collapse; font-size:13.5px; }
  43. .revise th, .revise td { text-align:left; padding:9px 12px; border-bottom:1px solid var(--border); }
  44. .revise th { color:var(--muted); font-weight:600; font-size:12.5px; }
  45. .revise td b { color:#5FF5C3; }
  46. section { margin-top:56px; }
  47. .sec-head { display:flex; align-items:baseline; gap:14px; margin-bottom:8px; flex-wrap:wrap; }
  48. .sec-head h2 { font-size:22px; font-weight:700; }
  49. .sec-head .code { font-size:12px; color:#5FF5C3; background:rgba(0,229,160,.1); border:1px solid rgba(0,229,160,.3); padding:2px 10px; border-radius:6px; letter-spacing:1px; }
  50. .sec-desc { color:var(--muted); font-size:14px; margin-bottom:22px; max-width:780px; }
  51. .grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:20px; }
  52. .card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; transition:transform .18s ease, border-color .18s ease; }
  53. .card:hover { transform:translateY(-3px); border-color:rgba(0,229,160,.45); }
  54. .card .top { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; gap:8px; }
  55. .card .id { font-size:13px; font-weight:700; color:#5FF5C3; background:rgba(0,229,160,.1); border:1px solid rgba(0,229,160,.3); padding:2px 10px; border-radius:6px; flex-shrink:0; }
  56. .card .name { font-size:16px; font-weight:700; }
  57. .stage { width:100%; border-radius:12px; background:radial-gradient(120% 120% at 30% 20%, #18234A 0%, var(--card2) 70%); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; padding:14px; }
  58. .stage svg { width:100%; height:auto; max-width:230px; }
  59. .card .desc { margin-top:14px; font-size:13.5px; color:var(--muted); }
  60. .card .desc b { color:var(--text); }
  61. .tags { margin-top:12px; display:flex; gap:6px; flex-wrap:wrap; }
  62. .tag { font-size:11px; color:var(--green); background:rgba(0,229,160,.08); border:1px solid rgba(0,229,160,.25); padding:2px 9px; border-radius:999px; }
  63. .tag.amber { color:var(--amber); background:rgba(255,166,61,.08); border-color:rgba(255,166,61,.3); }
  64. .wordmark-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:20px; }
  65. .wm-card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; }
  66. .wm-card .top { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
  67. .wm-card .id { font-size:12px; color:var(--muted); background:var(--card2); border:1px solid var(--border); padding:2px 10px; border-radius:6px; }
  68. .wm-stage { border-radius:12px; background:radial-gradient(120% 120% at 30% 20%, #18234A 0%, var(--card2) 70%); border:1px solid var(--border); padding:18px; }
  69. .wm-stage svg { width:100%; height:auto; }
  70. .palette { display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:14px; }
  71. .swatch { border-radius:12px; overflow:hidden; border:1px solid var(--border); background:var(--card); }
  72. .swatch .color { height:84px; }
  73. .swatch .info { padding:10px 12px; font-size:12px; }
  74. .swatch .info b { display:block; font-size:13px; }
  75. .swatch .info span { color:var(--muted); font-variant-numeric:tabular-nums; }
  76. .scen { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:20px; }
  77. .scen-card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; }
  78. .scen-card h4 { font-size:14px; margin-bottom:14px; color:#5FF5C3; }
  79. .fav-row { display:flex; gap:14px; align-items:center; }
  80. .fav-box { background:radial-gradient(120% 120% at 30% 20%, #18234A, #0A0F1E); border:1px solid var(--border); border-radius:10px; display:flex; align-items:center; justify-content:center; }
  81. .fav-16 { width:16px; height:16px; border-radius:4px; }
  82. .fav-32 { width:32px; height:32px; border-radius:7px; }
  83. .fav-64 { width:64px; height:64px; border-radius:10px; }
  84. .watermark { margin-top:16px; border:1px dashed rgba(255,255,255,.18); border-radius:12px; padding:26px; display:flex; align-items:center; gap:16px; justify-content:center; background:repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px); }
  85. .banner-demo { margin-top:16px; border-radius:12px; padding:36px 30px; background:linear-gradient(120deg, #121A33, #0A0F1E 60%), radial-gradient(80% 200% at 85% 20%, rgba(0,229,160,.25), transparent); display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid var(--border); }
  86. .fb { background:linear-gradient(160deg, rgba(0,229,160,.1), rgba(255,166,61,.05)); border:1px solid rgba(0,229,160,.3); border-radius:16px; padding:28px; }
  87. .fb h3 { font-size:17px; margin-bottom:12px; }
  88. .fb ol { margin-left:20px; color:var(--muted); font-size:14px; }
  89. .fb ol li { margin-bottom:8px; }
  90. .fb code { background:rgba(0,229,160,.15); padding:1px 8px; border-radius:5px; color:#5FF5C3; font-size:12.5px; }
  91. footer { margin-top:64px; text-align:center; color:var(--muted); font-size:12.5px; border-top:1px solid var(--border); padding-top:26px; }
  92. .foot-ver { display:inline-block; margin-top:8px; font-variant-numeric:tabular-nums; }
  93. </style>
  94. </head>
  95. <body>
  96. <header>
  97. <div class="wrap header-inner">
  98. <div class="brand-mini"><span class="brand-dot"></span>DoTouch.AI · 品牌设计审阅</div>
  99. <div class="badge">
  100. <span class="status">待审阅</span>
  101. <span class="ver">v1.1.0</span>
  102. <span class="ts">2026-08-08 02:13 CST</span>
  103. </div>
  104. </div>
  105. </header>
  106. <div class="wrap">
  107. <div class="hero">
  108. <h1>Logo 概念设计 v1.1.0 <span>算力 · 中转 · 直连</span></h1>
  109. <p>根据反馈重做:本版图形全部从<b>业务形态</b>出发——算力输送(卖的是算力)、中转站(业务是中转)、直连低价(卖点是 7 折)。配色从"紫色梦幻 AI"改为"能量青 + 琥珀橙"的电力基础设施气质。</p>
  110. <div class="meta">
  111. <span class="chip">方向 D · 算力输送</span>
  112. <span class="chip">方向 E · 中转站</span>
  113. <span class="chip">方向 F · 直连低价</span>
  114. </div>
  115. </div>
  116. <!-- 改版逻辑 -->
  117. <div class="revise">
  118. <h3>v1.1.0 设计依据:业务形态 → 视觉语言</h3>
  119. <table>
  120. <tr><th>业务事实</th><th>视觉语言</th><th>体现稿件</th></tr>
  121. <tr><td>卖的是<b>算力</b>,不是聊天工具</td><td>能量 / 电流 / 芯片 / 机架 / 粗管道</td><td>D1 D2 D3</td></tr>
  122. <tr><td>业务本质是<b>中转站</b>(汇聚上游 → 分发用户)</td><td>站点 / 闸口 / 分拣环 / 进出通道</td><td>E1 E2 E3</td></tr>
  123. <tr><td>核心卖点:<b>7 折低价</b></td><td>大流量粗管直连(量大才便宜)、Z 形"折"</td><td>F1 F3</td></tr>
  124. <tr><td><b>出海</b>:国产算力 → 全球用户</td><td>源端 → 目标端的输送通道叙事</td><td>F1 F2</td></tr>
  125. <tr><td>客户:价格敏感的<b>开发者 / 中小企业主</b></td><td>务实、直白、可信,拒绝花哨梦幻</td><td>全部</td></tr>
  126. </table>
  127. </div>
  128. <!-- ============ 方向 D ============ -->
  129. <section>
  130. <div class="sec-head"><h2>方向 D · 算力输送</h2><span class="code">POWER FLOW</span></div>
  131. <p class="sec-desc">把"算力"当作电力来画:粗壮的主管线输送算力,途经中转站点,分叉触达每一位用户。这是"卖算力"这件事最直白的视觉。</p>
  132. <div class="grid">
  133. <!-- D1 -->
  134. <div class="card">
  135. <div class="top"><span class="id">D1</span><span class="name">输电管网</span></div>
  136. <div class="stage">
  137. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  138. <rect x="8" y="90" width="60" height="20" rx="10" fill="#00E5A0"/>
  139. <rect x="79" y="78" width="34" height="44" rx="8" transform="rotate(45 96 100)" fill="#101730" stroke="#00E5A0" stroke-width="3.5"/>
  140. <circle cx="96" cy="100" r="6" fill="#E8ECF8"/>
  141. <g stroke="#E8ECF8" stroke-width="6" stroke-linecap="round">
  142. <line x1="118" y1="100" x2="160" y2="54"/>
  143. <line x1="118" y1="100" x2="172" y2="100"/>
  144. <line x1="118" y1="100" x2="160" y2="146"/>
  145. </g>
  146. <circle cx="160" cy="54" r="6.5" fill="#FFA63D"/>
  147. <circle cx="172" cy="100" r="6.5" fill="#FFA63D"/>
  148. <circle cx="160" cy="146" r="6.5" fill="#FFA63D"/>
  149. </svg>
  150. </div>
  151. <div class="desc"><b>主脉(算力)→ 菱形站点(中转)→ 三路分发(用户)</b>。末端琥珀点即"触点"——算力送达,亮起。整个中转链路一目了然。</div>
  152. <div class="tags"><span class="tag">算力输送</span><span class="tag">站点</span><span class="tag">分发</span><span class="tag amber">业务叙事最强</span></div>
  153. </div>
  154. <!-- D2 -->
  155. <div class="card">
  156. <div class="top"><span class="id">D2</span><span class="name">芯片脉冲</span></div>
  157. <div class="stage">
  158. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  159. <rect x="42" y="42" width="116" height="116" rx="16" fill="#121A33" stroke="#00E5A0" stroke-width="3"/>
  160. <g stroke="#5A6B9E" stroke-width="4" stroke-linecap="round">
  161. <line x1="70" y1="42" x2="70" y2="28"/><line x1="100" y1="42" x2="100" y2="28"/><line x1="130" y1="42" x2="130" y2="28"/>
  162. <line x1="70" y1="158" x2="70" y2="172"/><line x1="100" y1="158" x2="100" y2="172"/><line x1="130" y1="158" x2="130" y2="172"/>
  163. <line x1="42" y1="74" x2="28" y2="74"/><line x1="42" y1="126" x2="28" y2="126"/>
  164. <line x1="158" y1="74" x2="172" y2="74"/><line x1="158" y1="126" x2="172" y2="126"/>
  165. </g>
  166. <path d="M66 120 L88 120 L100 94 L118 94" stroke="#E8ECF8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  167. <path d="M66 88 L84 88 L98 106" stroke="#E8ECF8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity=".5"/>
  168. <circle cx="118" cy="94" r="8" fill="#FFA63D"/>
  169. <circle cx="118" cy="94" r="15" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
  170. </svg>
  171. </div>
  172. <div class="desc"><b>芯片 + 内部算力电路</b>,脉冲在电路末端亮起。直接宣告"我们是算力硬件生意",对开发者用户有天然信服力。</div>
  173. <div class="tags"><span class="tag">芯片</span><span class="tag">算力硬件</span><span class="tag">开发者向</span></div>
  174. </div>
  175. <!-- D3 -->
  176. <div class="card">
  177. <div class="top"><span class="id">D3</span><span class="name">机架脉冲</span></div>
  178. <div class="stage">
  179. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  180. <rect x="48" y="122" width="104" height="20" rx="7" fill="#16203E" stroke="#5A6B9E" stroke-width="1.5"/>
  181. <rect x="48" y="92" width="104" height="20" rx="7" fill="#16203E" stroke="#5A6B9E" stroke-width="1.5"/>
  182. <rect x="48" y="62" width="104" height="20" rx="7" fill="#16203E" stroke="#00E5A0" stroke-width="1.5"/>
  183. <g stroke="#00E5A0" stroke-width="2.5" fill="none">
  184. <path d="M88 40 A16 16 0 0 0 112 40" opacity=".45"/>
  185. <path d="M80 34 A26 26 0 0 0 120 34" opacity=".2"/>
  186. </g>
  187. <circle cx="100" cy="44" r="7.5" fill="#FFA63D"/>
  188. </svg>
  189. </div>
  190. <div class="desc"><b>三层算力机架</b>,顶层的算力"满负荷亮起"并向上升腾脉冲。像服务器堆叠 + 能量溢出,直白有力量。</div>
  191. <div class="tags"><span class="tag">机架</span><span class="tag">堆叠</span><span class="tag">能量</span></div>
  192. </div>
  193. </div>
  194. </section>
  195. <!-- ============ 方向 E ============ -->
  196. <section>
  197. <div class="sec-head"><h2>方向 E · 中转站</h2><span class="code">TRANSIT HUB</span></div>
  198. <p class="sec-desc">把"中转站"画成真实存在的站点:算力进站、分拣、出站。像交通枢纽 / 物流分拣的标识语言,一眼就懂"这是个中转的地方"。</p>
  199. <div class="grid">
  200. <!-- E1 -->
  201. <div class="card">
  202. <div class="top"><span class="id">E1</span><span class="name">双向闸口</span></div>
  203. <div class="stage">
  204. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  205. <polygon points="100,50 142,75 142,125 100,150 58,125 58,75" fill="#101730" stroke="#00E5A0" stroke-width="4" stroke-linejoin="round"/>
  206. <circle cx="100" cy="100" r="6" fill="#FFA63D"/>
  207. <g stroke="#5A6B9E" stroke-width="12" stroke-linecap="round">
  208. <line x1="8" y1="100" x2="56" y2="100"/>
  209. <line x1="56" y1="100" x2="42" y2="86"/>
  210. <line x1="56" y1="100" x2="42" y2="114"/>
  211. </g>
  212. <g stroke="#00E5A0" stroke-width="12" stroke-linecap="round">
  213. <line x1="144" y1="100" x2="192" y2="100"/>
  214. <line x1="192" y1="100" x2="178" y2="86"/>
  215. <line x1="192" y1="100" x2="178" y2="114"/>
  216. </g>
  217. </svg>
  218. </div>
  219. <div class="desc"><b>灰蓝箭头进站(上游算力)→ 六边形枢纽 → 青色箭头出站(分发用户)</b>。正反向明确,"中转"零歧义。适合做 App 图标。</div>
  220. <div class="tags"><span class="tag">进站</span><span class="tag">枢纽</span><span class="tag">出站</span><span class="tag amber">中转零歧义</span></div>
  221. </div>
  222. <!-- E2 -->
  223. <div class="card">
  224. <div class="top"><span class="id">E2</span><span class="name">环形分拣</span></div>
  225. <div class="stage">
  226. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  227. <circle cx="100" cy="100" r="58" stroke="#1E2A4A" stroke-width="16" fill="none"/>
  228. <path d="M42 100 A58 58 0 0 1 100 42" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round"/>
  229. <path d="M158 100 A58 58 0 0 1 100 158" stroke="#E8ECF8" stroke-width="16" fill="none" stroke-linecap="round" opacity=".85"/>
  230. <circle cx="100" cy="100" r="20" fill="#0A0F1E" stroke="#00E5A0" stroke-width="3"/>
  231. <circle cx="100" cy="100" r="6" fill="#FFA63D"/>
  232. <circle cx="100" cy="42" r="6" fill="#FFA63D"/>
  233. <circle cx="158" cy="100" r="6" fill="#FFA63D"/>
  234. <circle cx="100" cy="158" r="6" fill="#FFA63D"/>
  235. </svg>
  236. </div>
  237. <div class="desc"><b>分拣环带</b>:青色段进站、白色段出站,环上三个触点亮起,中心枢纽调度。像传送带/环形轨道,暗示"不停运转的中转"。</div>
  238. <div class="tags"><span class="tag">环带</span><span class="tag">流转</span><span class="tag">调度</span></div>
  239. </div>
  240. <!-- E3 -->
  241. <div class="card">
  242. <div class="top"><span class="id">E3</span><span class="name">站牌箭头</span></div>
  243. <div class="stage">
  244. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  245. <rect x="26" y="26" width="148" height="148" rx="18" fill="none" stroke="#E8ECF8" stroke-width="4"/>
  246. <circle cx="54" cy="54" r="4.5" fill="#FFA63D"/>
  247. <path d="M74 74 L128 74 L128 126" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
  248. <circle cx="128" cy="126" r="6" fill="#E8ECF8"/>
  249. </svg>
  250. </div>
  251. <div class="desc"><b>站牌 + 折角箭头</b>:像路标一样告诉你"算力站,往这边走"。方向感 + 信任感,直角折线也暗合"折"(7 折)的字面。最简约的一稿。</div>
  252. <div class="tags"><span class="tag">路标</span><span class="tag">方向</span><span class="tag">折线</span></div>
  253. </div>
  254. </div>
  255. </section>
  256. <!-- ============ 方向 F ============ -->
  257. <section>
  258. <div class="sec-head"><h2>方向 F · 直连低价</h2><span class="code">DIRECT LINK</span></div>
  259. <p class="sec-desc">回应"7 折"这个核心卖点:管道越粗 = 流量越大 = 成本越低;没有弯路的直连 = 没有水分。用"通道"讲清楚"为什么便宜"。</p>
  260. <div class="grid">
  261. <!-- F1 -->
  262. <div class="card">
  263. <div class="top"><span class="id">F1</span><span class="name">粗管直连</span></div>
  264. <div class="stage">
  265. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  266. <rect x="10" y="74" width="34" height="52" rx="8" fill="#00E5A0"/>
  267. <rect x="44" y="86" width="120" height="28" rx="14" fill="#16203E" stroke="#00E5A0" stroke-width="3"/>
  268. <circle cx="78" cy="100" r="6" fill="#00E5A0"/>
  269. <circle cx="122" cy="100" r="6" fill="#00E5A0" opacity=".55"/>
  270. <circle cx="186" cy="100" r="15" fill="#FFA63D"/>
  271. <circle cx="186" cy="100" r="23" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
  272. </svg>
  273. </div>
  274. <div class="desc"><b>算力源 → 粗壮主管道 → 用户触点</b>。粗管 = 大流量直通 = 量大价低(这是 7 折的成立逻辑)。管道里的脉冲点 = 算力在流动。</div>
  275. <div class="tags"><span class="tag">粗管</span><span class="tag">大流量</span><span class="tag">低价逻辑</span><span class="tag amber">卖点直接</span></div>
  276. </div>
  277. <!-- F2 -->
  278. <div class="card">
  279. <div class="top"><span class="id">F2</span><span class="name">D·T 直连</span></div>
  280. <div class="stage">
  281. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  282. <path d="M40 60 A45 45 0 1 1 40 140" stroke="#00E5A0" stroke-width="18" fill="none" stroke-linecap="round"/>
  283. <rect x="6" y="52" width="18" height="96" rx="9" fill="#00E5A0"/>
  284. <rect x="118" y="76" width="68" height="16" rx="8" fill="#E8ECF8"/>
  285. <rect x="152" y="52" width="16" height="68" rx="8" fill="#E8ECF8"/>
  286. <rect x="94" y="82" width="24" height="8" rx="4" fill="#FFA63D"/>
  287. <circle cx="106" cy="86" r="5" fill="#FFA63D"/>
  288. <circle cx="106" cy="86" r="11" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".35"/>
  289. </svg>
  290. </div>
  291. <div class="desc"><b>"Do Touch" 字面实现</b>:D(算力环)通过一根琥珀短管,直连 T(出口)——算力从源头一步触达用户,没有中间环节 = 没有加价。</div>
  292. <div class="tags"><span class="tag">字母直连</span><span class="tag">一步触达</span><span class="tag">无中间环节</span></div>
  293. </div>
  294. <!-- F3 -->
  295. <div class="card">
  296. <div class="top"><span class="id">F3</span><span class="name">折线闪电</span></div>
  297. <div class="stage">
  298. <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  299. <circle cx="28" cy="152" r="9" fill="#5A6B9E"/>
  300. <path d="M28 152 L92 152 L108 84 L152 48" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
  301. <circle cx="152" cy="48" r="10" fill="#FFA63D"/>
  302. <circle cx="152" cy="48" r="18" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
  303. </svg>
  304. </div>
  305. <div class="desc"><b>Z 形折线 = "折"(7 折)+ 闪电(算力/快速)</b>。源端灰点(国产算力)→ 打折通道 → 琥珀触点(用户)。把"打折的算力"直接写进图形。</div>
  306. <div class="tags"><span class="tag">7折</span><span class="tag">闪电</span><span class="tag">快速</span></div>
  307. </div>
  308. </div>
  309. </section>
  310. <!-- ============ 横向字标 ============ -->
  311. <section>
  312. <div class="sec-head"><h2>横向组合字标(候选主 Logo)</h2><span class="code">WORDMARK COMBO</span></div>
  313. <p class="sec-desc">每个方向的代表稿做横向组合:</p>
  314. <div class="wordmark-grid">
  315. <div class="wm-card">
  316. <div class="top"><span class="id">方向 D 组合 · D1</span><span>图标 + 字标</span></div>
  317. <div class="wm-stage">
  318. <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
  319. <g transform="translate(0,8) scale(0.88)">
  320. <rect x="6" y="44" width="46" height="16" rx="8" fill="#00E5A0"/>
  321. <rect x="58" y="36" width="27" height="32" rx="6" transform="rotate(45 71 52)" fill="#101730" stroke="#00E5A0" stroke-width="3"/>
  322. <circle cx="71" cy="52" r="4.5" fill="#E8ECF8"/>
  323. <g stroke="#E8ECF8" stroke-width="4.5" stroke-linecap="round">
  324. <line x1="90" y1="52" x2="118" y2="32"/>
  325. <line x1="90" y1="52" x2="128" y2="52"/>
  326. <line x1="90" y1="52" x2="118" y2="72"/>
  327. </g>
  328. <circle cx="118" cy="32" r="5" fill="#FFA63D"/>
  329. <circle cx="128" cy="52" r="5" fill="#FFA63D"/>
  330. <circle cx="118" cy="72" r="5" fill="#FFA63D"/>
  331. </g>
  332. <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
  333. <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
  334. </svg>
  335. </div>
  336. </div>
  337. <div class="wm-card">
  338. <div class="top"><span class="id">方向 E 组合 · E1</span><span>图标 + 字标</span></div>
  339. <div class="wm-stage">
  340. <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
  341. <g transform="translate(4,10) scale(0.88)">
  342. <polygon points="70,32 98,46 98,74 70,88 42,74 42,46" fill="#101730" stroke="#00E5A0" stroke-width="3.5" stroke-linejoin="round"/>
  343. <circle cx="70" cy="60" r="4" fill="#FFA63D"/>
  344. <g stroke="#5A6B9E" stroke-width="9" stroke-linecap="round">
  345. <line x1="10" y1="60" x2="40" y2="60"/>
  346. <line x1="40" y1="60" x2="32" y2="52"/>
  347. <line x1="40" y1="60" x2="32" y2="68"/>
  348. </g>
  349. <g stroke="#00E5A0" stroke-width="9" stroke-linecap="round">
  350. <line x1="100" y1="60" x2="130" y2="60"/>
  351. <line x1="130" y1="60" x2="122" y2="52"/>
  352. <line x1="130" y1="60" x2="122" y2="68"/>
  353. </g>
  354. </g>
  355. <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
  356. <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
  357. </svg>
  358. </div>
  359. </div>
  360. <div class="wm-card">
  361. <div class="top"><span class="id">方向 F 组合 · F2</span><span>图标 + 字标</span></div>
  362. <div class="wm-stage">
  363. <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
  364. <g transform="translate(0,8) scale(0.88)">
  365. <path d="M22 34 A28 28 0 1 1 22 86" stroke="#00E5A0" stroke-width="12" fill="none" stroke-linecap="round"/>
  366. <rect x="4" y="30" width="12" height="58" rx="6" fill="#00E5A0"/>
  367. <rect x="74" y="46" width="46" height="11" rx="5.5" fill="#E8ECF8"/>
  368. <rect x="96" y="30" width="11" height="44" rx="5.5" fill="#E8ECF8"/>
  369. <rect x="58" y="50" width="16" height="6" rx="3" fill="#FFA63D"/>
  370. <circle cx="66" cy="53" r="4" fill="#FFA63D"/>
  371. </g>
  372. <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
  373. <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
  374. </svg>
  375. </div>
  376. </div>
  377. </div>
  378. </section>
  379. <!-- ============ 配色 ============ -->
  380. <section>
  381. <div class="sec-head"><h2>配色方案 v1.1.0</h2><span class="code">PALETTE</span></div>
  382. <p class="sec-desc">能量青(主色,算力/流动)+ 琥珀橙(触点/点亮,呼应越南市场对橙色黄色的好感)+ 深蓝黑底(基础设施稳定感)。替换了 v1.0.0 的紫色梦幻系。</p>
  383. <div class="palette">
  384. <div class="swatch"><div class="color" style="background:#0A0F1E"></div><div class="info"><b>深空底</b><span>#0A0F1E · 主背景</span></div></div>
  385. <div class="swatch"><div class="color" style="background:linear-gradient(135deg,#5FF5C3,#00C98A)"></div><div class="info"><b>能量青</b><span>#00E5A0 · 主色</span></div></div>
  386. <div class="swatch"><div class="color" style="background:linear-gradient(135deg,#FFC47E,#FF8A3D)"></div><div class="info"><b>琥珀橙</b><span>#FFA63D · 触点/强调</span></div></div>
  387. <div class="swatch"><div class="color" style="background:#E8ECF8"></div><div class="info"><b>管道白</b><span>#E8ECF8 · 结构线条</span></div></div>
  388. <div class="swatch"><div class="color" style="background:#5A6B9E"></div><div class="info"><b>管线灰蓝</b><span>#5A6B9E · 次级/入站</span></div></div>
  389. <div class="swatch"><div class="color" style="background:#101730"></div><div class="info"><b>站点深蓝</b><span>#101730 · 卡片/块面</span></div></div>
  390. </div>
  391. </section>
  392. <!-- ============ 应用场景 ============ -->
  393. <section>
  394. <div class="sec-head"><h2>应用场景示意</h2><span class="code">APPLICATION</span></div>
  395. <div class="scen">
  396. <div class="scen-card">
  397. <h4>Favicon / 浏览器标签</h4>
  398. <div class="fav-row">
  399. <div class="fav-box fav-16"><svg viewBox="0 0 200 200" width="11" height="11"><polygon points="100,40 152,70 152,130 100,160 48,130 48,70" fill="#00E5A0"/><circle cx="100" cy="100" r="16" fill="#0A0F1E"/><circle cx="100" cy="100" r="7" fill="#FFA63D"/></svg></div>
  400. <div class="fav-box fav-32"><svg viewBox="0 0 200 200" width="24" height="24"><polygon points="100,40 152,70 152,130 100,160 48,130 48,70" fill="#00E5A0"/><circle cx="100" cy="100" r="16" fill="#0A0F1E"/><circle cx="100" cy="100" r="7" fill="#FFA63D"/></svg></div>
  401. <div class="fav-box fav-64"><svg viewBox="0 0 200 200" width="48" height="48"><polygon points="100,40 152,70 152,130 100,160 48,130 48,70" fill="#00E5A0"/><circle cx="100" cy="100" r="16" fill="#0A0F1E"/><circle cx="100" cy="100" r="7" fill="#FFA63D"/></svg></div>
  402. </div>
  403. <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">示意:E1 六边形枢纽缩略版(六边形 = 中转站 + 内部触点)。</div>
  404. </div>
  405. <div class="scen-card">
  406. <h4>深色 / 浅色背景适配</h4>
  407. <div class="watermark">
  408. <svg viewBox="0 0 200 200" width="52" height="52"><rect x="10" y="74" width="34" height="52" rx="8" fill="#00E5A0"/><rect x="44" y="86" width="110" height="28" rx="14" fill="none" stroke="#00E5A0" stroke-width="4"/><circle cx="176" cy="100" r="13" fill="#FFA63D"/><circle cx="78" cy="100" r="5" fill="#00E5A0"/></svg>
  409. <span style="font-weight:700;font-size:20px;letter-spacing:1px">DoTouch<span style="color:#00E5A0">.AI</span></span>
  410. </div>
  411. <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">F1 粗管直连的水印变体。浅色背景切换为深色线条 + 琥珀触点(终稿输出双版本)。</div>
  412. </div>
  413. <div class="scen-card">
  414. <h4>官网 Banner 氛围</h4>
  415. <div class="banner-demo">
  416. <div>
  417. <div style="font-size:13px;color:#9AA3C0;letter-spacing:2px">DOTOUCH.AI · COMPUTE TRANSIT</div>
  418. <div style="font-size:22px;font-weight:800;margin-top:6px">国产算力直连全球 · <span style="color:#FFC47E">7 折起步</span></div>
  419. </div>
  420. <svg viewBox="0 0 200 200" width="72" height="72"><rect x="10" y="76" width="40" height="48" rx="8" fill="#00E5A0"/><rect x="50" y="88" width="96" height="24" rx="12" fill="none" stroke="#00E5A0" stroke-width="4"/><circle cx="174" cy="100" r="14" fill="#FFA63D"/><circle cx="82" cy="100" r="5" fill="#00E5A0"/><circle cx="118" cy="100" r="5" fill="#00E5A0" opacity=".55"/></svg>
  421. </div>
  422. </div>
  423. </div>
  424. </section>
  425. <!-- ============ 反馈指引 ============ -->
  426. <section>
  427. <div class="fb">
  428. <h3>如何提修改意见</h3>
  429. <ol>
  430. <li>引用编号:<code>D1</code> <code>D2</code> <code>D3</code> / <code>E1</code> <code>E2</code> <code>E3</code> / <code>F1</code> <code>F2</code> <code>F3</code></li>
  431. <li>可跨稿组合:<b>"E1 的枢纽 + F1 的粗管"</b> 等</li>
  432. <li>如果"业务形态"的理解还有偏差,直接说你的画面,我重新拆解</li>
  433. <li>配色 / 风格(更工业 / 更圆润 / 更简洁)均可单独提</li>
  434. <li>修改递增版本号(v1.1.1 / v1.2.0),历史版本保留</li>
  435. </ol>
  436. </div>
  437. </section>
  438. <footer>
  439. <div>DoTouch.AI · 算力中转站 — 品牌概念审阅文档</div>
  440. <div class="foot-ver">logo-concept-v1.1.0 · 2026-08-08 02:13 CST · 状态:待审阅</div>
  441. </footer>
  442. </div>
  443. </body>
  444. </html>