| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <!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.2.0</title>
- <style>
- :root {
- --bg: #0A0F1E;
- --card: #101730;
- --card2: #0D1426;
- --border: rgba(255,255,255,0.08);
- --green: #00E5A0;
- --gold: #FFC24D;
- --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:50%; background:radial-gradient(circle at 35% 35%, #FFE3A8, var(--gold)); box-shadow:0 0 14px rgba(255,194,77,.6); }
- .badge { display:flex; align-items:center; gap:14px; font-size:13px; color:var(--muted); }
- .badge .ver { background:rgba(255,194,77,.12); border:1px solid rgba(255,194,77,.4); color:#FFD98F; 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 { 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, #FFD98F); -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,194,77,.08), rgba(0,229,160,.04)); border:1px solid rgba(255,194,77,.3); border-radius:16px; padding:24px 28px; }
- .revise h3 { font-size:16px; margin-bottom:14px; color:var(--gold); }
- .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(255,194,77,.4); }
- .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%, #1B2447 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.gold { color:var(--gold); background:rgba(255,194,77,.08); border-color:rgba(255,194,77,.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%, #1B2447 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%, #1B2447, #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, #141B38, #0A0F1E 60%), radial-gradient(80% 200% at 85% 20%, rgba(255,194,77,.2), transparent); display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid var(--border); }
- .fb { background:linear-gradient(160deg, rgba(255,194,77,.1), rgba(0,229,160,.05)); border:1px solid rgba(255,194,77,.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(255,194,77,.15); padding:1px 8px; border-radius:5px; color:#FFD98F; 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.2.0</span>
- <span class="ts">2026-08-08 02:19 CST</span>
- </div>
- </div>
- </header>
- <div class="wrap">
- <div class="hero">
- <h1>Logo 概念设计 v1.2.0 <span>算力普惠 · 触手可及</span></h1>
- <p>品牌核心叙事重定:<b>利用国内价格优势,把平价算力带给海外每一位用不起贵 AI 的开发者和小企业主</b>。本版去掉了 v1.1.0 的硬件/工业感,全部图形圆润化、暖光化——普惠是有温度的。</p>
- <div class="meta">
- <span class="chip">方向 G · 触手可及</span>
- <span class="chip">方向 H · 跨境桥接</span>
- <span class="chip">方向 I · 普惠成长</span>
- </div>
- </div>
- <!-- 改版逻辑 -->
- <div class="revise">
- <h3>v1.2.0 设计依据:业务本质 → 视觉语言</h3>
- <table>
- <tr><th>业务本质</th><th>视觉语言</th><th>体现稿件</th></tr>
- <tr><td>卖的是<b>服务</b>,不是硬件</td><td>去掉芯片/机架/管道/工业感,改用光、托举、传递</td><td>全部</td></tr>
- <tr><td><b>算力普惠</b>:人人都用得起</td><td>温暖的暖金光 + 圆润块面,普惠 = 有温度</td><td>全部</td></tr>
- <tr><td><b>Do Touch</b> = 触手可及(字面回归)</td><td>触碰的瞬间、掌心托光、光点传递</td><td>G1 G2 G3</td></tr>
- <tr><td><b>国内价格 → 海外用户</b>(跨境平价)</td><td>虹桥 / 拱门:跨越价格鸿沟的通道</td><td>H1 H2</td></tr>
- <tr><td>客户是<b>中小企业主</b>(成长诉求)</td><td>阳光普照、萌芽生长</td><td>I1 I2</td></tr>
- </table>
- </div>
- <!-- ============ 方向 G ============ -->
- <section>
- <div class="sec-head"><h2>方向 G · 触手可及</h2><span class="code">WITHIN REACH</span></div>
- <p class="sec-desc">把 "Do Touch" 字面做出来:触碰、托举、传递。普惠 = 算力低到每个人伸手就够得着。全部圆润无棱角。</p>
- <div class="grid">
- <!-- G1 -->
- <div class="card">
- <div class="top"><span class="id">G1</span><span class="name">掌心光点</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="g1-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <circle cx="100" cy="78" r="40" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".12"/>
- <circle cx="100" cy="78" r="27" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".3"/>
- <circle cx="100" cy="78" r="15" fill="url(#g1-gold)"/>
- <circle cx="94" cy="72" r="4" fill="#FFF" opacity=".8"/>
- <circle cx="80" cy="122" r="4" fill="#00E5A0" opacity=".6"/>
- <circle cx="120" cy="122" r="4" fill="#00E5A0" opacity=".6"/>
- <path d="M36 140 Q36 174 70 174 L130 174 Q164 174 164 140" stroke="#E8ECF8" stroke-width="13" fill="none" stroke-linecap="round"/>
- <path d="M48 140 Q48 162 70 162 L130 162 Q152 162 152 140" stroke="#E8ECF8" stroke-width="6" fill="none" stroke-linecap="round" opacity=".18"/>
- </svg>
- </div>
- <div class="desc"><b>一盏暖光,被稳稳托在掌心</b>——"算力捧到你手上"。碗形 = 摊开的双手,光点 = 平价算力。最简单直白的"触手可及"。</div>
- <div class="tags"><span class="tag">托举</span><span class="tag">暖光</span><span class="tag gold">触手可及</span></div>
- </div>
- <!-- G2 -->
- <div class="card">
- <div class="top"><span class="id">G2</span><span class="name">触碰瞬间</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="g2-grad" cx="35%" cy="35%" r="85%">
- <stop offset="0" stop-color="#5FF5C3"/><stop offset="1" stop-color="#00C98A"/>
- </radialGradient>
- </defs>
- <circle cx="70" cy="115" r="42" stroke="#00E5A0" stroke-width="2" fill="none" opacity=".25"/>
- <circle cx="70" cy="115" r="32" fill="url(#g2-grad)"/>
- <circle cx="62" cy="107" r="9" fill="#E8ECF8" opacity=".5"/>
- <circle cx="117" cy="131" r="26" stroke="#E8ECF8" stroke-width="2" fill="none" opacity=".2"/>
- <circle cx="117" cy="131" r="18" fill="#E8ECF8"/>
- <circle cx="100" cy="125" r="10" stroke="#FFC24D" stroke-width="3" fill="none" opacity=".55"/>
- <circle cx="100" cy="125" r="5.5" fill="#FFC24D"/>
- </svg>
- </div>
- <div class="desc"><b>青色光球(算力)与白色小球(用户)相触的瞬间</b>,触点迸出金色光芒。一次触碰,算力即达——API 调用就是一次触碰。品牌名字面最忠实的演绎。</div>
- <div class="tags"><span class="tag">Do Touch 字面</span><span class="tag">API 隐喻</span><span class="tag gold">触碰即达</span></div>
- </div>
- <!-- G3 -->
- <div class="card">
- <div class="top"><span class="id">G3</span><span class="name">传递之光</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="g3-grad" cx="35%" cy="35%" r="85%">
- <stop offset="0" stop-color="#5FF5C3"/><stop offset="1" stop-color="#00C98A"/>
- </radialGradient>
- <radialGradient id="g3-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <path d="M66 106 Q108 56 146 88" stroke="#00E5A0" stroke-width="4" stroke-dasharray="3 8" fill="none" opacity=".45" stroke-linecap="round"/>
- <circle cx="48" cy="118" r="22" fill="url(#g3-grad)"/>
- <circle cx="42" cy="112" r="6" fill="#E8ECF8" opacity=".5"/>
- <circle cx="156" cy="96" r="16" fill="#E8ECF8"/>
- <circle cx="86" cy="88" r="5" fill="#FFC24D" opacity=".4"/>
- <circle cx="102" cy="74" r="16" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".3"/>
- <circle cx="102" cy="74" r="9" fill="url(#g3-gold)"/>
- </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>
- <!-- ============ 方向 H ============ -->
- <section>
- <div class="sec-head"><h2>方向 H · 跨境桥接</h2><span class="code">CROSS-BORDER</span></div>
- <p class="sec-desc">回应"利用国内价格优势向海外提供服务":一座桥、一扇门,把平价算力从国内送到海外——跨越的是价格鸿沟,也是国界。</p>
- <div class="grid">
- <!-- H1 -->
- <div class="card">
- <div class="top"><span class="id">H1</span><span class="name">虹桥传递</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="h1-grad" cx="35%" cy="35%" r="85%">
- <stop offset="0" stop-color="#5FF5C3"/><stop offset="1" stop-color="#00C98A"/>
- </radialGradient>
- <radialGradient id="h1-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </g>
- <path d="M54 140 A 95 95 0 0 1 154 58" stroke="#00E5A0" stroke-width="10" fill="none" stroke-linecap="round" opacity=".9"/>
- <path d="M64 132 A 82 82 0 0 1 146 66" stroke="#FFC24D" stroke-width="5" fill="none" stroke-linecap="round" opacity=".5"/>
- <circle cx="40" cy="146" r="15" fill="url(#h1-grad)"/>
- <circle cx="35" cy="141" r="4" fill="#E8ECF8" opacity=".5"/>
- <circle cx="164" cy="56" r="13" fill="#E8ECF8"/>
- <circle cx="106" cy="86" r="17" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".3"/>
- <circle cx="106" cy="86" r="9" fill="url(#h1-gold)"/>
- </svg>
- </div>
- <div class="desc"><b>青主桥 + 金辅桥的双虹</b>,连接左下供给端(青球)与右上用户端(白球),金色光点正在桥上通行。桥 = 平价通道,虹 = 希望。</div>
- <div class="tags"><span class="tag">跨境</span><span class="tag">双虹</span><span class="tag gold">平价通道</span></div>
- </div>
- <!-- H2 -->
- <div class="card">
- <div class="top"><span class="id">H2</span><span class="name">拱门之光</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="h2-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <path d="M44 160 A 56 56 0 0 1 156 160" stroke="#E8ECF8" stroke-width="12" fill="none" stroke-linecap="round"/>
- <path d="M44 160 A 56 56 0 0 1 156 160" stroke="#00E5A0" stroke-width="4" fill="none" stroke-linecap="round" opacity=".35"/>
- <circle cx="100" cy="128" r="28" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".25"/>
- <circle cx="100" cy="128" r="17" fill="url(#h2-gold)"/>
- <circle cx="93" cy="121" r="4.5" fill="#FFF" opacity=".8"/>
- <g stroke="#FFC24D" stroke-width="4" stroke-linecap="round" opacity=".8">
- <line x1="100" y1="105" x2="100" y2="90"/>
- <line x1="82" y1="114" x2="70" y2="104"/>
- <line x1="118" y1="114" x2="130" y2="104"/>
- </g>
- <path d="M100 145 Q100 152 100 158" stroke="#FFC24D" stroke-width="4" stroke-linecap="round" opacity=".8"/>
- </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>
- <!-- ============ 方向 I ============ -->
- <section>
- <div class="sec-head"><h2>方向 I · 普惠成长</h2><span class="code">GROWTH FOR ALL</span></div>
- <p class="sec-desc">普惠的最终落点是"人":小企业主用上便宜算力,生意开始生长。阳光普照与嫩芽破土,都是"人人受益"的温暖语言。</p>
- <div class="grid">
- <!-- I1 -->
- <div class="card">
- <div class="top"><span class="id">I1</span><span class="name">阳光普照</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="i1-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <circle cx="100" cy="58" r="52" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".1"/>
- <circle cx="100" cy="58" r="36" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".22"/>
- <circle cx="100" cy="58" r="20" fill="url(#i1-gold)"/>
- <circle cx="92" cy="50" r="6" fill="#FFF" opacity=".85"/>
- <g stroke="#00E5A0" stroke-width="4" fill="none" opacity=".5" stroke-linecap="round">
- <path d="M100 80 Q74 118 56 150"/>
- <path d="M100 82 Q100 124 100 164"/>
- <path d="M100 80 Q126 118 144 150"/>
- </g>
- <circle cx="56" cy="150" r="10" fill="#00E5A0"/>
- <circle cx="100" cy="166" r="10" fill="#E8ECF8"/>
- <circle cx="144" cy="150" r="10" fill="#00E5A0"/>
- <circle cx="56" cy="150" r="4" fill="#0A0F1E" opacity=".55"/>
- <circle cx="100" cy="166" r="4" fill="#0A0F1E" opacity=".55"/>
- <circle cx="144" cy="150" r="4" fill="#0A0F1E" opacity=".55"/>
- </svg>
- </div>
- <div class="desc"><b>一盏暖阳在上,柔光均匀落在三个受益点</b>——不是"中心节点发指令"的技术图,是"阳光照到每个人"的普惠图。一视同仁,人人可用。</div>
- <div class="tags"><span class="tag">普照</span><span class="tag">一视同仁</span><span class="tag gold">普惠直译</span></div>
- </div>
- <!-- I2 -->
- <div class="card">
- <div class="top"><span class="id">I2</span><span class="name">萌芽之光</span></div>
- <div class="stage">
- <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="i2-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <path d="M28 172 Q100 158 172 172" stroke="#5A6B9E" stroke-width="4" fill="none" stroke-linecap="round" opacity=".7"/>
- <path d="M100 164 Q102 118 100 82" stroke="#00E5A0" stroke-width="9" fill="none" stroke-linecap="round"/>
- <path d="M100 116 Q78 104 70 84" stroke="#00E5A0" stroke-width="8" fill="none" stroke-linecap="round"/>
- <path d="M100 100 Q124 90 130 68" stroke="#00E5A0" stroke-width="8" fill="none" stroke-linecap="round"/>
- <circle cx="100" cy="72" r="17" stroke="#FFC24D" stroke-width="2" fill="none" opacity=".3"/>
- <circle cx="100" cy="72" r="9" fill="url(#i2-gold)"/>
- </svg>
- </div>
- <div class="desc"><b>嫩芽从土壤破出,芽尖亮起金光</b>——平价算力像阳光雨露,滋养小生意生长。对中小企业主客户是最有共鸣的一稿。</div>
- <div class="tags"><span class="tag">生长</span><span class="tag">滋养</span><span class="tag gold">小企业共鸣</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">方向 G 组合 · G2</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="wg-grad" cx="35%" cy="35%" r="85%">
- <stop offset="0" stop-color="#5FF5C3"/><stop offset="1" stop-color="#00C98A"/>
- </radialGradient>
- </defs>
- <g transform="translate(8,16) scale(0.9)">
- <circle cx="70" cy="115" r="32" fill="url(#wg-grad)"/>
- <circle cx="62" cy="107" r="9" fill="#E8ECF8" opacity=".5"/>
- <circle cx="117" cy="131" r="18" fill="#E8ECF8"/>
- <circle cx="100" cy="125" r="5.5" fill="#FFC24D"/>
- </g>
- <text x="124" 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">方向 H 组合 · H1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="wh-grad" cx="35%" cy="35%" r="85%">
- <stop offset="0" stop-color="#5FF5C3"/><stop offset="1" stop-color="#00C98A"/>
- </radialGradient>
- <radialGradient id="wh-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <g transform="translate(6,12) scale(0.88)">
- <path d="M54 140 A 95 95 0 0 1 154 58" stroke="#00E5A0" stroke-width="10" fill="none" stroke-linecap="round" opacity=".9"/>
- <circle cx="40" cy="146" r="15" fill="url(#wh-grad)"/>
- <circle cx="164" cy="56" r="13" fill="#E8ECF8"/>
- <circle cx="106" cy="86" r="9" fill="url(#wh-gold)"/>
- </g>
- <text x="124" 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">方向 I 组合 · I1</span><span>图标 + 字标</span></div>
- <div class="wm-stage">
- <svg viewBox="0 0 460 120" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <radialGradient id="wi-gold" cx="35%" cy="35%" r="80%">
- <stop offset="0" stop-color="#FFE3A8"/><stop offset="1" stop-color="#FFB84D"/>
- </radialGradient>
- </defs>
- <g transform="translate(8,16) scale(0.9)">
- <circle cx="100" cy="58" r="20" fill="url(#wi-gold)"/>
- <g stroke="#00E5A0" stroke-width="4" fill="none" opacity=".5" stroke-linecap="round">
- <path d="M100 80 Q74 118 56 150"/>
- <path d="M100 82 Q100 124 100 164"/>
- <path d="M100 80 Q126 118 144 150"/>
- </g>
- <circle cx="56" cy="150" r="10" fill="#00E5A0"/>
- <circle cx="100" cy="166" r="10" fill="#E8ECF8"/>
- <circle cx="144" cy="150" r="10" fill="#00E5A0"/>
- </g>
- <text x="124" 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.2.0</h2><span class="code">PALETTE</span></div>
- <p class="sec-desc">暖金(普惠的温度)+ 能量青(算力的流动)+ 深蓝底(沉稳可信)。金色比 v1.1.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,#FFE3A8,#FFB84D)"></div><div class="info"><b>暖金</b><span>#FFC24D · 普惠/光</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:#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"><circle cx="78" cy="120" r="52" fill="#00E5A0"/><circle cx="142" cy="62" r="34" fill="#E8ECF8"/><circle cx="104" cy="92" r="10" fill="#FFC24D"/></svg></div>
- <div class="fav-box fav-32"><svg viewBox="0 0 200 200" width="24" height="24"><circle cx="78" cy="120" r="52" fill="#00E5A0"/><circle cx="142" cy="62" r="34" fill="#E8ECF8"/><circle cx="104" cy="92" r="10" fill="#FFC24D"/></svg></div>
- <div class="fav-box fav-64"><svg viewBox="0 0 200 200" width="48" height="48"><circle cx="78" cy="120" r="52" fill="#00E5A0"/><circle cx="142" cy="62" r="34" fill="#E8ECF8"/><circle cx="104" cy="92" r="10" fill="#FFC24D"/></svg></div>
- </div>
- <div class="desc" style="margin-top:12px;font-size:12.5px;color:var(--muted)">示意:G2 触碰瞬间缩略版——青圆与白圆相触,金色触点。</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="74" r="15" fill="#FFC24D"/><path d="M36 144 Q36 172 66 172 L134 172 Q164 172 164 144" stroke="#E8ECF8" stroke-width="11" fill="none" stroke-linecap="round"/></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)">G1 掌心光点水印变体。浅色背景切换为深色线条 + 暖金点。</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 · AFFORDABLE AI</div>
- <div style="font-size:22px;font-weight:800;margin-top:6px">国产算力 · <span style="color:#FFD98F">全球普惠</span></div>
- </div>
- <svg viewBox="0 0 200 200" width="72" height="72"><circle cx="100" cy="58" r="20" fill="#FFC24D"/><g stroke="#00E5A0" stroke-width="4" fill="none" opacity=".55" stroke-linecap="round"><path d="M100 80 Q74 118 56 150"/><path d="M100 82 Q100 124 100 164"/><path d="M100 80 Q126 118 144 150"/></g><circle cx="56" cy="150" r="10" fill="#00E5A0"/><circle cx="100" cy="166" r="10" fill="#E8ECF8"/><circle cx="144" cy="150" r="10" fill="#00E5A0"/></svg>
- </div>
- </div>
- </div>
- </section>
- <!-- ============ 反馈指引 ============ -->
- <section>
- <div class="fb">
- <h3>如何提修改意见</h3>
- <ol>
- <li>引用编号:<code>G1</code> <code>G2</code> <code>G3</code> / <code>H1</code> <code>H2</code> / <code>I1</code> <code>I2</code></li>
- <li>可跨稿组合:<b>"G2 的触碰 + I1 的普照"</b> 等</li>
- <li>如果"普惠"的理解仍有偏差,直接说你的画面(比如"要更亲民 / 更像电商 / 要有越南元素"),我重新拆解</li>
- <li>配色 / 圆润度 / 是否保留青色均单独可调</li>
- <li>修改递增版本号(v1.2.1 / v1.3.0),历史版本保留</li>
- </ol>
- </div>
- </section>
- <footer>
- <div>DoTouch.AI · 算力中转站 — 品牌概念审阅文档</div>
- <div class="foot-ver">logo-concept-v1.2.0 · 2026-08-08 02:19 CST · 状态:待审阅</div>
- </footer>
- </div>
- </body>
- </html>
|