14 lines
691 B
XML
14 lines
691 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="chem-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#3b82f6;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#chem-grad)"/>
|
||
|
|
<!-- 烧杯图标 -->
|
||
|
|
<path d="M12 8 L12 14 L10 20 Q10 22, 12 22 L20 22 Q22 22, 22 20 L20 14 L20 8 Z" stroke="white" stroke-width="1.5" fill="none"/>
|
||
|
|
<line x1="11" y1="8" x2="21" y2="8" stroke="white" stroke-width="1.5"/>
|
||
|
|
<circle cx="16" cy="18" r="2" fill="white" opacity="0.6"/>
|
||
|
|
</svg>
|