| 12345678910111213141516171819202122232425262728293031 |
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024">
- <defs>
- <linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0" stop-color="#26184F"/>
- <stop offset="1" stop-color="#0E0C1F"/>
- </linearGradient>
- <linearGradient id="ring" x1="0" y1="0" x2="1" y2="0">
- <stop offset="0" stop-color="#8B5CF6"/>
- <stop offset="1" stop-color="#EC4899"/>
- </linearGradient>
- <linearGradient id="spark" x1="0" y1="0" x2="0" y2="1">
- <stop offset="0" stop-color="#FFD9A0"/>
- <stop offset="1" stop-color="#FF9A3D"/>
- </linearGradient>
- </defs>
- <!-- 圆角方形底板(紫黑深空) -->
- <rect x="24" y="24" width="976" height="976" rx="240" fill="url(#bg)"/>
- <!-- 倾斜轨道环:寓意“驾驭/连接 AI”的 Harness -->
- <ellipse cx="512" cy="512" rx="330" ry="150" transform="rotate(-28 512 512)"
- fill="none" stroke="url(#ring)" stroke-width="44" stroke-linecap="round"/>
- <!-- 轨道卫星点 -->
- <circle cx="792" cy="459" r="34" fill="#EC4899"/>
- <!-- 中心四芒星火:AI 智能核心 -->
- <path d="M512 352 C528 456 568 496 672 512 C568 528 528 568 512 672
- C496 568 456 528 352 512 C456 496 496 456 512 352 Z"
- fill="url(#spark)"/>
- </svg>
|