| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>DoTouch.AI · Logo 概念审阅 v1.1.0</title>
- <style>
- :root {
- --bg: #0A0F1E;
- --card: #101730;
- --card2: #0D1426;
- --border: rgba(255,255,255,0.08);
- --green: #00E5A0;
- --amber: #FFA63D;
- --bluegray: #5A6B9E;
- --text: #E8ECF8;
- --muted: #9AA3C0;
- --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, sans-serif;
- }
- * { margin:0; padding:0; box-sizing:border-box; }
- body { background:var(--bg); color:var(--text); font-family:var(--font); line-height:1.6; padding-bottom:80px; }
- .wrap { max-width:1200px; margin:0 auto; padding:0 28px; }
- 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); }
- .header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
- .brand-mini { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:1px; }
- .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); }
- .badge { display:flex; align-items:center; gap:14px; font-size:13px; color:var(--muted); }
- .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; }
- .badge .ts { font-variant-numeric:tabular-nums; }
- .status { display:inline-flex; align-items:center; gap:6px; color:var(--amber); font-weight:600; }
- .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; }
- @keyframes pulse { 50% { opacity:.35; } }
- .hero { padding:56px 0 36px; text-align:center; }
- .hero h1 { font-size:32px; font-weight:800; letter-spacing:1px; }
- .hero h1 span { background:linear-gradient(120deg, #5FF5C3, #FFC47E); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
- .hero p { margin-top:12px; color:var(--muted); max-width:720px; margin-left:auto; margin-right:auto; font-size:14.5px; }
- .hero .meta { margin-top:16px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
- .chip { font-size:12px; padding:4px 12px; border-radius:999px; border:1px solid var(--border); color:var(--muted); background:var(--card); }
- /* 改版说明 */
- .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; }
- .revise h3 { font-size:16px; margin-bottom:14px; color:var(--amber); }
- .revise table { width:100%; border-collapse:collapse; font-size:13.5px; }
- .revise th, .revise td { text-align:left; padding:9px 12px; border-bottom:1px solid var(--border); }
- .revise th { color:var(--muted); font-weight:600; font-size:12.5px; }
- .revise td b { color:#5FF5C3; }
- section { margin-top:56px; }
- .sec-head { display:flex; align-items:baseline; gap:14px; margin-bottom:8px; flex-wrap:wrap; }
- .sec-head h2 { font-size:22px; font-weight:700; }
- .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; }
- .sec-desc { color:var(--muted); font-size:14px; margin-bottom:22px; max-width:780px; }
- .grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:20px; }
- .card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; transition:transform .18s ease, border-color .18s ease; }
- .card:hover { transform:translateY(-3px); border-color:rgba(0,229,160,.45); }
- .card .top { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; gap:8px; }
- .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; }
- .card .name { font-size:16px; font-weight:700; }
- .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; }
- .stage svg { width:100%; height:auto; max-width:230px; }
- .card .desc { margin-top:14px; font-size:13.5px; color:var(--muted); }
- .card .desc b { color:var(--text); }
- .tags { margin-top:12px; display:flex; gap:6px; flex-wrap:wrap; }
- .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; }
- .tag.amber { color:var(--amber); background:rgba(255,166,61,.08); border-color:rgba(255,166,61,.3); }
- .wordmark-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:20px; }
- .wm-card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; }
- .wm-card .top { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
- .wm-card .id { font-size:12px; color:var(--muted); background:var(--card2); border:1px solid var(--border); padding:2px 10px; border-radius:6px; }
- .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; }
- .wm-stage svg { width:100%; height:auto; }
- .palette { display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:14px; }
- .swatch { border-radius:12px; overflow:hidden; border:1px solid var(--border); background:var(--card); }
- .swatch .color { height:84px; }
- .swatch .info { padding:10px 12px; font-size:12px; }
- .swatch .info b { display:block; font-size:13px; }
- .swatch .info span { color:var(--muted); font-variant-numeric:tabular-nums; }
- .scen { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:20px; }
- .scen-card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:22px; }
- .scen-card h4 { font-size:14px; margin-bottom:14px; color:#5FF5C3; }
- .fav-row { display:flex; gap:14px; align-items:center; }
- .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; }
- .fav-16 { width:16px; height:16px; border-radius:4px; }
- .fav-32 { width:32px; height:32px; border-radius:7px; }
- .fav-64 { width:64px; height:64px; border-radius:10px; }
- .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); }
- .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); }
- .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; }
- .fb h3 { font-size:17px; margin-bottom:12px; }
- .fb ol { margin-left:20px; color:var(--muted); font-size:14px; }
- .fb ol li { margin-bottom:8px; }
- .fb code { background:rgba(0,229,160,.15); padding:1px 8px; border-radius:5px; color:#5FF5C3; font-size:12.5px; }
- footer { margin-top:64px; text-align:center; color:var(--muted); font-size:12.5px; border-top:1px solid var(--border); padding-top:26px; }
- .foot-ver { display:inline-block; margin-top:8px; font-variant-numeric:tabular-nums; }
- </style>
- </head>
- <body>
- <header>
- <div class="wrap header-inner">
- <div class="brand-mini"><span class="brand-dot"></span>DoTouch.AI · 品牌设计审阅</div>
- <div class="badge">
- <span class="status">待审阅</span>
- <span class="ver">v1.1.0</span>
- <span class="ts">2026-08-08 02:13 CST</span>
- </div>
- </div>
- </header>
- <div class="wrap">
- <div class="hero">
- <h1>Logo 概念设计 v1.1.0 <span>算力 · 中转 · 直连</span></h1>
- <p>根据反馈重做:本版图形全部从<b>业务形态</b>出发——算力输送(卖的是算力)、中转站(业务是中转)、直连低价(卖点是 7 折)。配色从"紫色梦幻 AI"改为"能量青 + 琥珀橙"的电力基础设施气质。</p>
- <div class="meta">
- <span class="chip">方向 D · 算力输送</span>
- <span class="chip">方向 E · 中转站</span>
- <span class="chip">方向 F · 直连低价</span>
- </div>
- </div>
- <!-- 改版逻辑 -->
- <div class="revise">
- <h3>v1.1.0 设计依据:业务形态 → 视觉语言</h3>
- <table>
- <tr><th>业务事实</th><th>视觉语言</th><th>体现稿件</th></tr>
- <tr><td>卖的是<b>算力</b>,不是聊天工具</td><td>能量 / 电流 / 芯片 / 机架 / 粗管道</td><td>D1 D2 D3</td></tr>
- <tr><td>业务本质是<b>中转站</b>(汇聚上游 → 分发用户)</td><td>站点 / 闸口 / 分拣环 / 进出通道</td><td>E1 E2 E3</td></tr>
- <tr><td>核心卖点:<b>7 折低价</b></td><td>大流量粗管直连(量大才便宜)、Z 形"折"</td><td>F1 F3</td></tr>
- <tr><td><b>出海</b>:国产算力 → 全球用户</td><td>源端 → 目标端的输送通道叙事</td><td>F1 F2</td></tr>
- <tr><td>客户:价格敏感的<b>开发者 / 中小企业主</b></td><td>务实、直白、可信,拒绝花哨梦幻</td><td>全部</td></tr>
- </table>
- </div>
- <!-- ============ 方向 D ============ -->
- <section>
- <div class="sec-head"><h2>方向 D · 算力输送</h2><span class="code">POWER FLOW</span></div>
- <p class="sec-desc">把"算力"当作电力来画:粗壮的主管线输送算力,途经中转站点,分叉触达每一位用户。这是"卖算力"这件事最直白的视觉。</p>
- <div class="grid">
- <!-- D1 -->
- <div class="card">
- <div class="top"><span class="id">D1</span><span class="name">输电管网</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <rect x="8" y="90" width="60" height="20" rx="10" fill="#00E5A0"/>
- <rect x="79" y="78" width="34" height="44" rx="8" transform="rotate(45 96 100)" fill="#101730" stroke="#00E5A0" stroke-width="3.5"/>
- <circle cx="96" cy="100" r="6" fill="#E8ECF8"/>
- <g stroke="#E8ECF8" stroke-width="6" stroke-linecap="round">
- <line x1="118" y1="100" x2="160" y2="54"/>
- <line x1="118" y1="100" x2="172" y2="100"/>
- <line x1="118" y1="100" x2="160" y2="146"/>
- </g>
- <circle cx="160" cy="54" r="6.5" fill="#FFA63D"/>
- <circle cx="172" cy="100" r="6.5" fill="#FFA63D"/>
- <circle cx="160" cy="146" r="6.5" fill="#FFA63D"/>
- </svg>
- </div>
- <div class="desc"><b>主脉(算力)→ 菱形站点(中转)→ 三路分发(用户)</b>。末端琥珀点即"触点"——算力送达,亮起。整个中转链路一目了然。</div>
- <div class="tags"><span class="tag">算力输送</span><span class="tag">站点</span><span class="tag">分发</span><span class="tag amber">业务叙事最强</span></div>
- </div>
- <!-- D2 -->
- <div class="card">
- <div class="top"><span class="id">D2</span><span class="name">芯片脉冲</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <rect x="42" y="42" width="116" height="116" rx="16" fill="#121A33" stroke="#00E5A0" stroke-width="3"/>
- <g stroke="#5A6B9E" stroke-width="4" stroke-linecap="round">
- <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"/>
- <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"/>
- <line x1="42" y1="74" x2="28" y2="74"/><line x1="42" y1="126" x2="28" y2="126"/>
- <line x1="158" y1="74" x2="172" y2="74"/><line x1="158" y1="126" x2="172" y2="126"/>
- </g>
- <path d="M66 120 L88 120 L100 94 L118 94" stroke="#E8ECF8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
- <path d="M66 88 L84 88 L98 106" stroke="#E8ECF8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity=".5"/>
- <circle cx="118" cy="94" r="8" fill="#FFA63D"/>
- <circle cx="118" cy="94" r="15" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
- </svg>
- </div>
- <div class="desc"><b>芯片 + 内部算力电路</b>,脉冲在电路末端亮起。直接宣告"我们是算力硬件生意",对开发者用户有天然信服力。</div>
- <div class="tags"><span class="tag">芯片</span><span class="tag">算力硬件</span><span class="tag">开发者向</span></div>
- </div>
- <!-- D3 -->
- <div class="card">
- <div class="top"><span class="id">D3</span><span class="name">机架脉冲</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <rect x="48" y="122" width="104" height="20" rx="7" fill="#16203E" stroke="#5A6B9E" stroke-width="1.5"/>
- <rect x="48" y="92" width="104" height="20" rx="7" fill="#16203E" stroke="#5A6B9E" stroke-width="1.5"/>
- <rect x="48" y="62" width="104" height="20" rx="7" fill="#16203E" stroke="#00E5A0" stroke-width="1.5"/>
- <g stroke="#00E5A0" stroke-width="2.5" fill="none">
- <path d="M88 40 A16 16 0 0 0 112 40" opacity=".45"/>
- <path d="M80 34 A26 26 0 0 0 120 34" opacity=".2"/>
- </g>
- <circle cx="100" cy="44" r="7.5" fill="#FFA63D"/>
- </svg>
- </div>
- <div class="desc"><b>三层算力机架</b>,顶层的算力"满负荷亮起"并向上升腾脉冲。像服务器堆叠 + 能量溢出,直白有力量。</div>
- <div class="tags"><span class="tag">机架</span><span class="tag">堆叠</span><span class="tag">能量</span></div>
- </div>
- </div>
- </section>
- <!-- ============ 方向 E ============ -->
- <section>
- <div class="sec-head"><h2>方向 E · 中转站</h2><span class="code">TRANSIT HUB</span></div>
- <p class="sec-desc">把"中转站"画成真实存在的站点:算力进站、分拣、出站。像交通枢纽 / 物流分拣的标识语言,一眼就懂"这是个中转的地方"。</p>
- <div class="grid">
- <!-- E1 -->
- <div class="card">
- <div class="top"><span class="id">E1</span><span class="name">双向闸口</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <polygon points="100,50 142,75 142,125 100,150 58,125 58,75" fill="#101730" stroke="#00E5A0" stroke-width="4" stroke-linejoin="round"/>
- <circle cx="100" cy="100" r="6" fill="#FFA63D"/>
- <g stroke="#5A6B9E" stroke-width="12" stroke-linecap="round">
- <line x1="8" y1="100" x2="56" y2="100"/>
- <line x1="56" y1="100" x2="42" y2="86"/>
- <line x1="56" y1="100" x2="42" y2="114"/>
- </g>
- <g stroke="#00E5A0" stroke-width="12" stroke-linecap="round">
- <line x1="144" y1="100" x2="192" y2="100"/>
- <line x1="192" y1="100" x2="178" y2="86"/>
- <line x1="192" y1="100" x2="178" y2="114"/>
- </g>
- </svg>
- </div>
- <div class="desc"><b>灰蓝箭头进站(上游算力)→ 六边形枢纽 → 青色箭头出站(分发用户)</b>。正反向明确,"中转"零歧义。适合做 App 图标。</div>
- <div class="tags"><span class="tag">进站</span><span class="tag">枢纽</span><span class="tag">出站</span><span class="tag amber">中转零歧义</span></div>
- </div>
- <!-- E2 -->
- <div class="card">
- <div class="top"><span class="id">E2</span><span class="name">环形分拣</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <circle cx="100" cy="100" r="58" stroke="#1E2A4A" stroke-width="16" fill="none"/>
- <path d="M42 100 A58 58 0 0 1 100 42" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round"/>
- <path d="M158 100 A58 58 0 0 1 100 158" stroke="#E8ECF8" stroke-width="16" fill="none" stroke-linecap="round" opacity=".85"/>
- <circle cx="100" cy="100" r="20" fill="#0A0F1E" stroke="#00E5A0" stroke-width="3"/>
- <circle cx="100" cy="100" r="6" fill="#FFA63D"/>
- <circle cx="100" cy="42" r="6" fill="#FFA63D"/>
- <circle cx="158" cy="100" r="6" fill="#FFA63D"/>
- <circle cx="100" cy="158" r="6" fill="#FFA63D"/>
- </svg>
- </div>
- <div class="desc"><b>分拣环带</b>:青色段进站、白色段出站,环上三个触点亮起,中心枢纽调度。像传送带/环形轨道,暗示"不停运转的中转"。</div>
- <div class="tags"><span class="tag">环带</span><span class="tag">流转</span><span class="tag">调度</span></div>
- </div>
- <!-- E3 -->
- <div class="card">
- <div class="top"><span class="id">E3</span><span class="name">站牌箭头</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <rect x="26" y="26" width="148" height="148" rx="18" fill="none" stroke="#E8ECF8" stroke-width="4"/>
- <circle cx="54" cy="54" r="4.5" fill="#FFA63D"/>
- <path d="M74 74 L128 74 L128 126" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
- <circle cx="128" cy="126" r="6" fill="#E8ECF8"/>
- </svg>
- </div>
- <div class="desc"><b>站牌 + 折角箭头</b>:像路标一样告诉你"算力站,往这边走"。方向感 + 信任感,直角折线也暗合"折"(7 折)的字面。最简约的一稿。</div>
- <div class="tags"><span class="tag">路标</span><span class="tag">方向</span><span class="tag">折线</span></div>
- </div>
- </div>
- </section>
- <!-- ============ 方向 F ============ -->
- <section>
- <div class="sec-head"><h2>方向 F · 直连低价</h2><span class="code">DIRECT LINK</span></div>
- <p class="sec-desc">回应"7 折"这个核心卖点:管道越粗 = 流量越大 = 成本越低;没有弯路的直连 = 没有水分。用"通道"讲清楚"为什么便宜"。</p>
- <div class="grid">
- <!-- F1 -->
- <div class="card">
- <div class="top"><span class="id">F1</span><span class="name">粗管直连</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <rect x="10" y="74" width="34" height="52" rx="8" fill="#00E5A0"/>
- <rect x="44" y="86" width="120" height="28" rx="14" fill="#16203E" stroke="#00E5A0" stroke-width="3"/>
- <circle cx="78" cy="100" r="6" fill="#00E5A0"/>
- <circle cx="122" cy="100" r="6" fill="#00E5A0" opacity=".55"/>
- <circle cx="186" cy="100" r="15" fill="#FFA63D"/>
- <circle cx="186" cy="100" r="23" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
- </svg>
- </div>
- <div class="desc"><b>算力源 → 粗壮主管道 → 用户触点</b>。粗管 = 大流量直通 = 量大价低(这是 7 折的成立逻辑)。管道里的脉冲点 = 算力在流动。</div>
- <div class="tags"><span class="tag">粗管</span><span class="tag">大流量</span><span class="tag">低价逻辑</span><span class="tag amber">卖点直接</span></div>
- </div>
- <!-- F2 -->
- <div class="card">
- <div class="top"><span class="id">F2</span><span class="name">D·T 直连</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <path d="M40 60 A45 45 0 1 1 40 140" stroke="#00E5A0" stroke-width="18" fill="none" stroke-linecap="round"/>
- <rect x="6" y="52" width="18" height="96" rx="9" fill="#00E5A0"/>
- <rect x="118" y="76" width="68" height="16" rx="8" fill="#E8ECF8"/>
- <rect x="152" y="52" width="16" height="68" rx="8" fill="#E8ECF8"/>
- <rect x="94" y="82" width="24" height="8" rx="4" fill="#FFA63D"/>
- <circle cx="106" cy="86" r="5" fill="#FFA63D"/>
- <circle cx="106" cy="86" r="11" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".35"/>
- </svg>
- </div>
- <div class="desc"><b>"Do Touch" 字面实现</b>:D(算力环)通过一根琥珀短管,直连 T(出口)——算力从源头一步触达用户,没有中间环节 = 没有加价。</div>
- <div class="tags"><span class="tag">字母直连</span><span class="tag">一步触达</span><span class="tag">无中间环节</span></div>
- </div>
- <!-- F3 -->
- <div class="card">
- <div class="top"><span class="id">F3</span><span class="name">折线闪电</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <circle cx="28" cy="152" r="9" fill="#5A6B9E"/>
- <path d="M28 152 L92 152 L108 84 L152 48" stroke="#00E5A0" stroke-width="16" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
- <circle cx="152" cy="48" r="10" fill="#FFA63D"/>
- <circle cx="152" cy="48" r="18" stroke="#FFA63D" stroke-width="2" fill="none" opacity=".3"/>
- </svg>
- </div>
- <div class="desc"><b>Z 形折线 = "折"(7 折)+ 闪电(算力/快速)</b>。源端灰点(国产算力)→ 打折通道 → 琥珀触点(用户)。把"打折的算力"直接写进图形。</div>
- <div class="tags"><span class="tag">7折</span><span class="tag">闪电</span><span class="tag">快速</span></div>
- </div>
- </div>
- </section>
- <!-- ============ 横向字标 ============ -->
- <section>
- <div class="sec-head"><h2>横向组合字标(候选主 Logo)</h2><span class="code">WORDMARK COMBO</span></div>
- <p class="sec-desc">每个方向的代表稿做横向组合:</p>
- <div class="wordmark-grid">
- <div class="wm-card">
- <div class="top"><span class="id">方向 D 组合 · D1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <g transform="translate(0,8) scale(0.88)">
- <rect x="6" y="44" width="46" height="16" rx="8" fill="#00E5A0"/>
- <rect x="58" y="36" width="27" height="32" rx="6" transform="rotate(45 71 52)" fill="#101730" stroke="#00E5A0" stroke-width="3"/>
- <circle cx="71" cy="52" r="4.5" fill="#E8ECF8"/>
- <g stroke="#E8ECF8" stroke-width="4.5" stroke-linecap="round">
- <line x1="90" y1="52" x2="118" y2="32"/>
- <line x1="90" y1="52" x2="128" y2="52"/>
- <line x1="90" y1="52" x2="118" y2="72"/>
- </g>
- <circle cx="118" cy="32" r="5" fill="#FFA63D"/>
- <circle cx="128" cy="52" r="5" fill="#FFA63D"/>
- <circle cx="118" cy="72" r="5" fill="#FFA63D"/>
- </g>
- <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
- <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
- </svg>
- </div>
- </div>
- <div class="wm-card">
- <div class="top"><span class="id">方向 E 组合 · E1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <g transform="translate(4,10) scale(0.88)">
- <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"/>
- <circle cx="70" cy="60" r="4" fill="#FFA63D"/>
- <g stroke="#5A6B9E" stroke-width="9" stroke-linecap="round">
- <line x1="10" y1="60" x2="40" y2="60"/>
- <line x1="40" y1="60" x2="32" y2="52"/>
- <line x1="40" y1="60" x2="32" y2="68"/>
- </g>
- <g stroke="#00E5A0" stroke-width="9" stroke-linecap="round">
- <line x1="100" y1="60" x2="130" y2="60"/>
- <line x1="130" y1="60" x2="122" y2="52"/>
- <line x1="130" y1="60" x2="122" y2="68"/>
- </g>
- </g>
- <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
- <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
- </svg>
- </div>
- </div>
- <div class="wm-card">
- <div class="top"><span class="id">方向 F 组合 · F2</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <g transform="translate(0,8) scale(0.88)">
- <path d="M22 34 A28 28 0 1 1 22 86" stroke="#00E5A0" stroke-width="12" fill="none" stroke-linecap="round"/>
- <rect x="4" y="30" width="12" height="58" rx="6" fill="#00E5A0"/>
- <rect x="74" y="46" width="46" height="11" rx="5.5" fill="#E8ECF8"/>
- <rect x="96" y="30" width="11" height="44" rx="5.5" fill="#E8ECF8"/>
- <rect x="58" y="50" width="16" height="6" rx="3" fill="#FFA63D"/>
- <circle cx="66" cy="53" r="4" fill="#FFA63D"/>
- </g>
- <text x="128" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
- <text x="345" y="78" font-size="52" font-weight="700" fill="#00E5A0" font-family="inherit">.AI</text>
- </svg>
- </div>
- </div>
- </div>
- </section>
- <!-- ============ 配色 ============ -->
- <section>
- <div class="sec-head"><h2>配色方案 v1.1.0</h2><span class="code">PALETTE</span></div>
- <p class="sec-desc">能量青(主色,算力/流动)+ 琥珀橙(触点/点亮,呼应越南市场对橙色黄色的好感)+ 深蓝黑底(基础设施稳定感)。替换了 v1.0.0 的紫色梦幻系。</p>
- <div class="palette">
- <div class="swatch"><div class="color" style="background:#0A0F1E"></div><div class="info"><b>深空底</b><span>#0A0F1E · 主背景</span></div></div>
- <div class="swatch"><div class="color" style="background:linear-gradient(135deg,#5FF5C3,#00C98A)"></div><div class="info"><b>能量青</b><span>#00E5A0 · 主色</span></div></div>
- <div class="swatch"><div class="color" style="background:linear-gradient(135deg,#FFC47E,#FF8A3D)"></div><div class="info"><b>琥珀橙</b><span>#FFA63D · 触点/强调</span></div></div>
- <div class="swatch"><div class="color" style="background:#E8ECF8"></div><div class="info"><b>管道白</b><span>#E8ECF8 · 结构线条</span></div></div>
- <div class="swatch"><div class="color" style="background:#5A6B9E"></div><div class="info"><b>管线灰蓝</b><span>#5A6B9E · 次级/入站</span></div></div>
- <div class="swatch"><div class="color" style="background:#101730"></div><div class="info"><b>站点深蓝</b><span>#101730 · 卡片/块面</span></div></div>
- </div>
- </section>
- <!-- ============ 应用场景 ============ -->
- <section>
- <div class="sec-head"><h2>应用场景示意</h2><span class="code">APPLICATION</span></div>
- <div class="scen">
- <div class="scen-card">
- <h4>Favicon / 浏览器标签</h4>
- <div class="fav-row">
- <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>
- <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>
- <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>
- </div>
- <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">示意:E1 六边形枢纽缩略版(六边形 = 中转站 + 内部触点)。</div>
- </div>
- <div class="scen-card">
- <h4>深色 / 浅色背景适配</h4>
- <div class="watermark">
- <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>
- <span style="font-weight:700;font-size:20px;letter-spacing:1px">DoTouch<span style="color:#00E5A0">.AI</span></span>
- </div>
- <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">F1 粗管直连的水印变体。浅色背景切换为深色线条 + 琥珀触点(终稿输出双版本)。</div>
- </div>
- <div class="scen-card">
- <h4>官网 Banner 氛围</h4>
- <div class="banner-demo">
- <div>
- <div style="font-size:13px;color:#9AA3C0;letter-spacing:2px">DOTOUCH.AI · COMPUTE TRANSIT</div>
- <div style="font-size:22px;font-weight:800;margin-top:6px">国产算力直连全球 · <span style="color:#FFC47E">7 折起步</span></div>
- </div>
- <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>
- </div>
- </div>
- </div>
- </section>
- <!-- ============ 反馈指引 ============ -->
- <section>
- <div class="fb">
- <h3>如何提修改意见</h3>
- <ol>
- <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>
- <li>可跨稿组合:<b>"E1 的枢纽 + F1 的粗管"</b> 等</li>
- <li>如果"业务形态"的理解还有偏差,直接说你的画面,我重新拆解</li>
- <li>配色 / 风格(更工业 / 更圆润 / 更简洁)均可单独提</li>
- <li>修改递增版本号(v1.1.1 / v1.2.0),历史版本保留</li>
- </ol>
- </div>
- </section>
- <footer>
- <div>DoTouch.AI · 算力中转站 — 品牌概念审阅文档</div>
- <div class="foot-ver">logo-concept-v1.1.0 · 2026-08-08 02:13 CST · 状态:待审阅</div>
- </footer>
- </div>
- </body>
- </html>
|