| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541 |
- <!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.0.0</title>
- <style>
- :root {
- --bg: #0B1020;
- --card: #121831;
- --card2: #0F1529;
- --border: rgba(255,255,255,0.08);
- --purple: #7C5CFF;
- --green: #00E5A0;
- --gold: #FFB84D;
- --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 ── */
- header { position:sticky; top:0; z-index:50; background:rgba(11,16,32,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:50%; background:linear-gradient(135deg, var(--purple), var(--green)); box-shadow:0 0 14px rgba(124,92,255,.6); }
- .badge { display:flex; align-items:center; gap:14px; font-size:13px; color:var(--muted); }
- .badge .ver { background:rgba(124,92,255,.15); border:1px solid rgba(124,92,255,.4); color:#B9A8FF; 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(--gold); font-weight:600; }
- .status::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold); animation:pulse 1.6s infinite; }
- @keyframes pulse { 50% { opacity:.35; } }
- /* ── Hero ── */
- .hero { padding:64px 0 40px; text-align:center; }
- .hero h1 { font-size:34px; font-weight:800; letter-spacing:1px; }
- .hero h1 span { background:linear-gradient(120deg, #B9A8FF, #5FF5C3); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
- .hero p { margin-top:12px; color:var(--muted); max-width:680px; margin-left:auto; margin-right:auto; }
- .hero .meta { margin-top:18px; 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); }
- /* ── Sections ── */
- section { margin-top:56px; }
- .sec-head { display:flex; align-items:baseline; gap:14px; margin-bottom:8px; }
- .sec-head h2 { font-size:22px; font-weight:700; }
- .sec-head .code { font-size:12px; color:var(--purple); background:rgba(124,92,255,.12); border:1px solid rgba(124,92,255,.3); padding:2px 10px; border-radius:6px; letter-spacing:1px; }
- .sec-desc { color:var(--muted); font-size:14px; margin-bottom:22px; max-width:760px; }
- /* ── Concept Cards ── */
- .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(124,92,255,.45); }
- .card .top { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
- .card .id { font-size:13px; font-weight:700; color:#B9A8FF; background:rgba(124,92,255,.12); border:1px solid rgba(124,92,255,.3); padding:2px 10px; border-radius:6px; }
- .card .name { font-size:16px; font-weight:700; }
- .stage { width:100%; border-radius:12px; background:radial-gradient(120% 120% at 30% 20%, #1A2344 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); }
- .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; }
- /* ── Wordmarks ── */
- .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%, #1A2344 0%, var(--card2) 70%); border:1px solid var(--border); padding:18px; }
- .wm-stage svg { width:100%; height:auto; }
- /* ── Palette ── */
- .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; }
- .swatch.surf .color { display:flex; align-items:flex-end; padding:10px; }
- .demo-inline { font-size:13px; font-weight:700; letter-spacing:1px; }
- /* ── Scenarios ── */
- .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:#B9A8FF; }
- .fav-row { display:flex; gap:14px; align-items:center; }
- .fav-box { background:radial-gradient(120% 120% at 30% 20%, #1A2344, #0B1020); 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, #141B38, #0B1020 60%), radial-gradient(80% 200% at 85% 20%, rgba(124,92,255,.35), transparent); display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid var(--border); }
- /* ── Feedback ── */
- .fb { background:linear-gradient(160deg, rgba(124,92,255,.1), rgba(0,229,160,.05)); border:1px solid rgba(124,92,255,.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(124,92,255,.18); padding:1px 8px; border-radius:5px; color:#C9BBFF; 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.0.0</span>
- <span class="ts">2026-08-08 02:04 CST</span>
- </div>
- </div>
- </header>
- <div class="wrap">
- <!-- HERO -->
- <div class="hero">
- <h1>Logo 概念设计 · 三方向九稿 <span>v1.0.0</span></h1>
- <p>DoTouch = "Do Touch"(触点 / 触达)。品牌叙事:<b>全球开发者一键触达 AI</b>。本稿为概念阶段,全部以 SVG 精确绘制(文字保真),确定方向后将以 AI 渲染出质感终稿。</p>
- <div class="meta">
- <span class="chip">方向 A · 字母组合型</span>
- <span class="chip">方向 B · 符号型</span>
- <span class="chip">方向 C · 极简字标</span>
- </div>
- </div>
- <!-- 品牌解读 -->
- <section>
- <div class="sec-head"><h2>品牌基因拆解</h2><span class="code">BRAND DNA</span></div>
- <p class="sec-desc">Logo 必须承载三个关键词:</p>
- <div class="grid">
- <div class="card">
- <div class="top"><span class="name">① 触点 · Touch</span></div>
- <div class="desc">"Do Touch" 直译为触碰。设计中以<b>发光节点</b>代表触点——点一下即触达 AI。这是贯穿三方向的共同符号。</div>
- <div class="tags"><span class="tag">发光点</span><span class="tag">触点</span></div>
- </div>
- <div class="card">
- <div class="top"><span class="name">② 中转 · Hub</span></div>
- <div class="desc">业务本质是<b>算力中转站</b>:汇聚(上游模型)→ 分发(全球用户)。方向 B 集中表达这一意象,A/C 方向以结构暗示。</div>
- <div class="tags"><span class="tag">汇聚</span><span class="tag">分发</span></div>
- </div>
- <div class="card">
- <div class="top"><span class="name">③ 出海 · Global</span></div>
- <div class="desc">面向越南及全球开发者。多节点 / 轨道 / 网络结构表达<b>全球化触达</b>,而非本地化单一图形。</div>
- <div class="tags"><span class="tag">多节点</span><span class="tag">轨道</span></div>
- </div>
- </div>
- </section>
- <!-- ============ 方向 A ============ -->
- <section>
- <div class="sec-head"><h2>方向 A · 字母组合型</h2><span class="code">DT LETTERFORM</span></div>
- <p class="sec-desc">以 "D" 与 "T" 两个字母的融合/交叠为主体,品牌识别最强,适合作为主 Logo。三稿分别以"穿越、脉冲、交叠"三种手法表现触点。</p>
- <div class="grid">
- <!-- A1 -->
- <div class="card">
- <div class="top"><span class="id">A1</span><span class="name">穿越触点</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="a1-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <g fill="none">
- <path d="M66 50 A50 50 0 1 1 66 150" stroke="url(#a1-grad)" stroke-width="24" stroke-linecap="round"/>
- <rect x="8" y="38" width="32" height="124" rx="16" fill="url(#a1-grad)"/>
- <rect x="54" y="46" width="94" height="26" rx="13" fill="#E8ECF8"/>
- <rect x="88" y="34" width="26" height="132" rx="13" fill="#E8ECF8"/>
- </g>
- <circle cx="88" cy="145" r="17" stroke="#00E5A0" stroke-width="2" fill="none" opacity=".35"/>
- <circle cx="88" cy="145" r="8.5" fill="#00E5A0"/>
- </svg>
- </div>
- <div class="desc"><b>T 竖线穿越 D 环</b>,两者相触的瞬间迸发绿色光点——"触碰即触发"。结构同时暗示 API 请求穿过网关(竖线 = 请求管线)。</div>
- <div class="tags"><span class="tag">字母融合</span><span class="tag">穿越</span><span class="tag">触发</span></div>
- </div>
- <!-- A2 -->
- <div class="card">
- <div class="top"><span class="id">A2</span><span class="name">D·脉冲</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="a2-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <path d="M139.6 60.4 A56 56 0 1 1 60.4 139.6" stroke="url(#a2-grad)" stroke-width="20" stroke-linecap="round" fill="none"/>
- <rect x="69" y="70" width="62" height="20" rx="10" fill="#E8ECF8"/>
- <rect x="95" y="66" width="20" height="58" rx="10" fill="#E8ECF8"/>
- <g fill="none" stroke="#00E5A0">
- <path d="M84 136 A24 24 0 0 0 126 136" stroke-width="3" opacity=".45"/>
- <path d="M74 134 A34 34 0 0 0 136 134" stroke-width="3" opacity=".2"/>
- </g>
- <circle cx="105" cy="138" r="7" fill="#00E5A0"/>
- </svg>
- </div>
- <div class="desc">D 环右下留出缺口,内置白色 T;<b>脉冲从缺口发出</b>(声呐波纹),像模型响应返回的那一刻。缺口也像"API 入口"。</div>
- <div class="tags"><span class="tag">脉冲</span><span class="tag">响应</span><span class="tag">缺口入口</span></div>
- </div>
- <!-- A3 -->
- <div class="card">
- <div class="top"><span class="id">A3</span><span class="name">双形交叠</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="a3-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <circle cx="84" cy="112" r="50" fill="url(#a3-grad)"/>
- <path d="M84 62 A50 50 0 0 1 134 112" stroke="#FFFFFF" stroke-width="3" fill="none" opacity=".3"/>
- <rect x="78" y="64" width="88" height="26" rx="13" fill="#E8ECF8"/>
- <rect x="120" y="64" width="26" height="98" rx="13" fill="#E8ECF8"/>
- <circle cx="134" cy="112" r="8" fill="#00E5A0"/>
- <circle cx="134" cy="112" r="3" fill="#0B1020"/>
- </svg>
- </div>
- <div class="desc">紫色 D 盘与白色 T 交叠,<b>T 竖线穿出盘面之处即触点</b>(绿点)。最简洁有力,适合极小尺寸(favicon)使用。</div>
- <div class="tags"><span class="tag">交叠</span><span class="tag">负空间</span><span class="tag">小尺寸友好</span></div>
- </div>
- </div>
- </section>
- <!-- ============ 方向 B ============ -->
- <section>
- <div class="sec-head"><h2>方向 B · 符号型</h2><span class="code">NETWORK SYMBOL</span></div>
- <p class="sec-desc">不依赖字母,以"网络 / 汇聚分发 / 轨道"图形直接表达<b>算力中转站</b>的业务本质。识别性稍弱,但叙事最强,适合作为品牌符号与 App 图标。</p>
- <div class="grid">
- <!-- B1 -->
- <div class="card">
- <div class="top"><span class="id">B1</span><span class="name">网络枢纽</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="b1-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <circle cx="100" cy="100" r="66" stroke="rgba(124,92,255,.3)" stroke-width="2" stroke-dasharray="3 9" fill="none"/>
- <g stroke="#00E5A0" stroke-width="2.5" opacity=".55">
- <line x1="100" y1="100" x2="152" y2="52"/>
- <line x1="100" y1="100" x2="52" y2="152"/>
- <line x1="100" y1="100" x2="156" y2="150"/>
- </g>
- <circle cx="100" cy="100" r="24" stroke="rgba(124,92,255,.4)" fill="none"/>
- <circle cx="100" cy="100" r="15" fill="url(#b1-grad)"/>
- <g>
- <circle cx="152" cy="52" r="13" stroke="#00E5A0" stroke-width="1.5" fill="none" opacity=".3"/>
- <circle cx="152" cy="52" r="8" fill="#00E5A0"/><circle cx="152" cy="52" r="3" fill="#0B1020"/>
- <circle cx="52" cy="152" r="13" stroke="#00E5A0" stroke-width="1.5" fill="none" opacity=".3"/>
- <circle cx="52" cy="152" r="8" fill="#00E5A0"/><circle cx="52" cy="152" r="3" fill="#0B1020"/>
- <circle cx="156" cy="150" r="13" stroke="#00E5A0" stroke-width="1.5" fill="none" opacity=".3"/>
- <circle cx="156" cy="150" r="8" fill="#00E5A0"/><circle cx="156" cy="150" r="3" fill="#0B1020"/>
- </g>
- </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>
- <!-- B2 -->
- <div class="card">
- <div class="top"><span class="id">B2</span><span class="name">汇聚分发</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="b2-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <g stroke="#5A6B9E" stroke-width="2.5">
- <line x1="55" y1="58" x2="108" y2="100"/>
- <line x1="55" y1="100" x2="108" y2="100"/>
- <line x1="55" y1="142" x2="108" y2="100"/>
- </g>
- <g fill="#5A6B9E"><circle cx="55" cy="58" r="6"/><circle cx="55" cy="100" r="6"/><circle cx="55" cy="142" r="6"/></g>
- <g stroke="#00E5A0" stroke-width="2.5" opacity=".75">
- <line x1="108" y1="100" x2="158" y2="62"/>
- <line x1="108" y1="100" x2="174" y2="100"/>
- <line x1="108" y1="100" x2="158" y2="138"/>
- </g>
- <g fill="#00E5A0"><circle cx="158" cy="62" r="5"/><circle cx="174" cy="100" r="5"/><circle cx="158" cy="138" r="5"/></g>
- <circle cx="108" cy="100" r="15" fill="url(#b2-grad)"/>
- <circle cx="108" cy="100" r="5" fill="#E8ECF8"/>
- </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>
- <!-- B3 -->
- <div class="card">
- <div class="top"><span class="id">B3</span><span class="name">轨道触达</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="b3-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <ellipse cx="100" cy="100" rx="80" ry="44" transform="rotate(-24 100 100)" stroke="rgba(124,92,255,.55)" stroke-width="3.5" fill="none"/>
- <ellipse cx="100" cy="100" rx="80" ry="44" transform="rotate(-24 100 100)" stroke="#00E5A0" stroke-width="3.5" stroke-dasharray="14 30" fill="none" opacity=".7"/>
- <line x1="154" y1="148" x2="46" y2="52" stroke="#00E5A0" stroke-width="2" opacity=".45"/>
- <circle cx="100" cy="100" r="5" fill="#00E5A0"/>
- <circle cx="154" cy="148" r="12" fill="url(#b3-grad)"/>
- <circle cx="154" cy="148" r="4" fill="#E8ECF8"/>
- <circle cx="46" cy="52" r="8" fill="#00E5A0"/>
- </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>
- <!-- ============ 方向 C ============ -->
- <section>
- <div class="sec-head"><h2>方向 C · 极简字标</h2><span class="code">WORDMARK</span></div>
- <p class="sec-desc">以品牌名本身为主体,仅用"点"元素点睛。开发工具气质最强(像编程语言的句点/光标),对开发者客户天然亲和,且最适合做文字 Logo。</p>
- <div class="grid">
- <!-- C1 -->
- <div class="card">
- <div class="top"><span class="id">C1</span><span class="name">光点 o</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="c1-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <circle cx="100" cy="100" r="14" fill="#00E5A0"/>
- <circle cx="100" cy="100" r="26" stroke="#00E5A0" stroke-width="2" fill="none" opacity=".35"/>
- <circle cx="100" cy="100" r="40" stroke="#00E5A0" stroke-width="2" fill="none" opacity=".15"/>
- <line x1="100" y1="100" x2="150" y2="100" stroke="#00E5A0" stroke-width="3" opacity=".5"/>
- <circle cx="158" cy="100" r="4" fill="#00E5A0"/>
- </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>
- <!-- C2 -->
- <div class="card">
- <div class="top"><span class="id">C2</span><span class="name">几何 DT</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="c2-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <rect x="46" y="56" width="12" height="64" rx="6" fill="url(#c2-grad)"/>
- <path d="M58 56 A32 32 0 0 1 58 120" stroke="url(#c2-grad)" stroke-width="12" fill="none" stroke-linecap="round"/>
- <rect x="140" y="56" width="50" height="12" rx="6" fill="#E8ECF8"/>
- <rect x="159" y="56" width="12" height="64" rx="6" fill="#E8ECF8"/>
- <circle cx="186" cy="148" r="8" fill="#00E5A0"/>
- </svg>
- </div>
- <div class="desc">图标版:几何切割的 <b>D + T 字标</b>,T 右下悬一颗触点。工程感、克制,像硬件/基础设施品牌的克制气质。</div>
- <div class="tags"><span class="tag">几何</span><span class="tag">工程感</span><span class="tag">克制</span></div>
- </div>
- <!-- C3 -->
- <div class="card">
- <div class="top"><span class="id">C3</span><span class="name">dot·touch</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="c3-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <circle cx="100" cy="100" r="13" fill="url(#c3-grad)"/>
- <g stroke="#00E5A0" stroke-width="4" stroke-linecap="round" opacity=".8">
- <line x1="100" y1="100" x2="148" y2="62"/>
- <line x1="100" y1="100" x2="158" y2="108"/>
- <line x1="100" y1="100" x2="132" y2="152"/>
- </g>
- <circle cx="148" cy="62" r="5" fill="#00E5A0"/>
- <circle cx="158" cy="108" r="5" fill="#00E5A0"/>
- <circle cx="132" cy="152" r="5" fill="#00E5A0"/>
- </svg>
- </div>
- <div class="desc">图标版:<b>中心点 + 三条触达射线</b>(呼应 "dot"),从一点向三个方向触及——一点触达多模型、多国家。</div>
- <div class="tags"><span class="tag">射线</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">方向 A 组合 · A1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="wa-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <g transform="translate(0,6)">
- <path d="M33 25 A25 25 0 1 1 33 75" stroke="url(#wa-grad)" stroke-width="12" fill="none" stroke-linecap="round"/>
- <rect x="4" y="19" width="16" height="62" rx="8" fill="url(#wa-grad)"/>
- <rect x="27" y="23" width="47" height="13" rx="6.5" fill="#E8ECF8"/>
- <rect x="44" y="17" width="13" height="66" rx="6.5" fill="#E8ECF8"/>
- <circle cx="44" cy="72.5" r="8.5" stroke="#00E5A0" stroke-width="1.5" fill="none" opacity=".35"/>
- <circle cx="44" cy="72.5" r="4.2" fill="#00E5A0"/>
- </g>
- <text x="120" 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="url(#wa-grad)" font-family="inherit">.AI</text>
- </svg>
- </div>
- </div>
- <div class="wm-card">
- <div class="top"><span class="id">方向 B 组合 · B1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="wb-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <g transform="translate(0,6) scale(0.92)">
- <circle cx="50" cy="50" r="33" stroke="rgba(124,92,255,.3)" stroke-width="1.5" stroke-dasharray="2 7" fill="none"/>
- <g stroke="#00E5A0" stroke-width="1.8" opacity=".55">
- <line x1="50" y1="50" x2="76" y2="26"/><line x1="50" y1="50" x2="26" y2="76"/><line x1="50" y1="50" x2="78" y2="75"/>
- </g>
- <circle cx="50" cy="50" r="7.5" fill="url(#wb-grad)"/>
- <g><circle cx="76" cy="26" r="4" fill="#00E5A0"/><circle cx="26" cy="76" r="4" fill="#00E5A0"/><circle cx="78" cy="75" r="4" fill="#00E5A0"/></g>
- </g>
- <text x="130" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">DoTouch</text>
- <text x="355" y="78" font-size="52" font-weight="700" fill="url(#wb-grad)" font-family="inherit">.AI</text>
- </svg>
- </div>
- </div>
- <div class="wm-card">
- <div class="top"><span class="id">方向 C 组合 · C1</span><span>纯字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="wc-grad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#9B7BFF"/><stop offset="1" stop-color="#5C3DF0"/>
- </linearGradient>
- </defs>
- <text x="16" y="78" font-size="52" font-weight="700" fill="url(#wc-grad)" font-family="inherit">D</text>
- <circle cx="105" cy="56" r="8" fill="#00E5A0"/>
- <circle cx="105" cy="56" r="15" stroke="#00E5A0" stroke-width="1.5" fill="none" opacity=".35"/>
- <text x="132" y="78" font-size="52" font-weight="700" fill="#E8ECF8" font-family="inherit" letter-spacing="1">Touch</text>
- <rect x="345" y="38" width="10" height="34" rx="3" fill="#00E5A0" opacity=".85"/>
- </svg>
- </div>
- </div>
- </div>
- </section>
- <!-- ============ 配色 ============ -->
- <section>
- <div class="sec-head"><h2>配色方案(初稿)</h2><span class="code">PALETTE</span></div>
- <p class="sec-desc">面向开发者的深空科技感配色。主色紫(品牌色)+ 青(触达色)+ 金色点缀(限时/优惠场景)。可整体替换,欢迎提出色彩偏好(如更冷、更暖、单色系)。</p>
- <div class="palette">
- <div class="swatch"><div class="color" style="background:#0B1020"></div><div class="info"><b>深空底</b><span>#0B1020 · 主背景</span></div></div>
- <div class="swatch"><div class="color" style="background:linear-gradient(135deg,#9B7BFF,#5C3DF0)"></div><div class="info"><b>品牌紫</b><span>#7C5CFF · 主色</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:#E8ECF8"></div><div class="info"><b>文字白</b><span>#E8ECF8 · 正文</span></div></div>
- <div class="swatch"><div class="color" style="background:#9AA3C0"></div><div class="info"><b>辅助灰</b><span>#9AA3C0 · 次级</span></div></div>
- <div class="swatch"><div class="color" style="background:#FFB84D"></div><div class="info"><b>点缀金</b><span>#FFB84D · 优惠/强调</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="10" height="10"><circle cx="100" cy="100" r="60" fill="#7C5CFF"/><circle cx="100" cy="100" r="22" fill="#00E5A0"/></svg></div>
- <div class="fav-box fav-32"><svg viewBox="0 0 200 200" width="22" height="22"><circle cx="100" cy="100" r="60" fill="#7C5CFF"/><circle cx="100" cy="100" r="22" fill="#00E5A0"/></svg></div>
- <div class="fav-box fav-64"><svg viewBox="0 0 200 200" width="46" height="46"><circle cx="100" cy="100" r="60" fill="#7C5CFF"/><circle cx="100" cy="100" r="22" fill="#00E5A0"/></svg></div>
- </div>
- <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">示意:极简"紫盘青心"缩略图形,小尺寸下仍可辨识。</div>
- </div>
- <div class="scen-card">
- <h4>深色 / 浅色背景适配</h4>
- <div class="watermark">
- <svg viewBox="0 0 200 200" width="52" height="52"><circle cx="100" cy="100" r="58" stroke="#7C5CFF" stroke-width="20" fill="none" opacity=".85"/><circle cx="100" cy="100" r="14" fill="#00E5A0"/></svg>
- <span style="font-weight:700;font-size:20px;letter-spacing:1px">DoTouch<span style="color:#7C5CFF">.AI</span></span>
- </div>
- <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">深色背景以紫为主色;浅色背景将切换为深紫文字 + 青色触点(终稿时输出双版本)。</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 · AI GATEWAY</div>
- <div style="font-size:22px;font-weight:800;margin-top:6px">One Touch, <span style="color:#5FF5C3">All AI</span></div>
- </div>
- <svg viewBox="0 0 200 200" width="72" height="72"><circle cx="100" cy="100" r="58" stroke="url(#b1-grad)" stroke-width="18" fill="none" opacity=".9"/><circle cx="100" cy="100" r="13" fill="#00E5A0"/><circle cx="100" cy="100" r="26" stroke="#00E5A0" stroke-width="2" fill="none" opacity=".35"/></svg>
- </div>
- </div>
- </div>
- </section>
- <!-- ============ 反馈指引 ============ -->
- <section>
- <div class="fb">
- <h3>如何提修改意见</h3>
- <ol>
- <li>直接引用编号:<code>A1</code> <code>A2</code> <code>A3</code> / <code>B1</code> <code>B2</code> <code>B3</code> / <code>C1</code> <code>C2</code> <code>C3</code>,例如:<b>"A1 光点放大一点"</b></li>
- <li>可以跨稿组合:<b>"B1 的节点 + C1 的极简感"</b>——我会出组合稿</li>
- <li>选不出就直说:<b>"都不太行,往 XX 风格再出 3 稿"</b></li>
- <li>配色、字体、横竖比例均可单独提意见</li>
- <li>每次修改将递增版本号(v1.0.1 / v1.1.0)并重新生成审阅文件,历史版本保留</li>
- </ol>
- </div>
- </section>
- <footer>
- <div>DoTouch.AI · 算力中转站 — 品牌概念审阅文档</div>
- <div class="foot-ver">logo-concept-v1.0.0 · 2026-08-08 02:04 CST · 状态:待审阅</div>
- </footer>
- </div>
- </body>
- </html>
|