24 lines
950 B
XML
24 lines
950 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0" stop-color="#0c1426"/>
|
|
<stop offset="1" stop-color="#0a2a3b"/>
|
|
</linearGradient>
|
|
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
|
|
<feGaussianBlur stdDeviation="2" result="blur"/>
|
|
<feMerge>
|
|
<feMergeNode in="blur"/>
|
|
<feMergeNode in="SourceGraphic"/>
|
|
</feMerge>
|
|
</filter>
|
|
</defs>
|
|
<!-- 背景圆 -->
|
|
<circle cx="32" cy="32" r="30" fill="#ffffff" stroke="#00d4ff" stroke-width="3"/>
|
|
<!-- 牛字标识 -->
|
|
<g fill="#0C2435" font-family="'Microsoft YaHei','Arial'" font-weight="800" text-anchor="middle" filter="url(#glow)">
|
|
<text x="32" y="44" font-size="40">牛</text>
|
|
</g>
|
|
<!-- 亮边描边 -->
|
|
<circle cx="32" cy="32" r="30" fill="none" stroke="rgba(0,212,255,0.35)" stroke-width="2"/>
|
|
</svg>
|