| 12345678910111213141516 |
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
- <defs>
- <linearGradient id="washGrad" x1="0" y1="0" x2="1" y2="1">
- <stop offset="0%" stop-color="#409EFF"/>
- <stop offset="100%" stop-color="#1D7BE5"/>
- </linearGradient>
- </defs>
- <!-- 圆形底盘 -->
- <circle cx="16" cy="16" r="15" fill="url(#washGrad)" opacity="0.12"/>
- <!-- 水滴1 - 左 -->
- <path d="M10.5 19.5c0 2 1.5 3.5 3 3.5s3-1.5 3-3.5c0-2.5-3-5.5-3-5.5s-3 3-3 5.5z" fill="url(#washGrad)" transform="translate(-1,-1) scale(0.9)"/>
- <!-- 水滴2 - 右 -->
- <path d="M16.5 19.5c0 2 1.5 3.5 3 3.5s3-1.5 3-3.5c0-2.5-3-5.5-3-5.5s-3 3-3 5.5z" fill="url(#washGrad)" opacity="0.65" transform="translate(4.5,-1) scale(0.85)"/>
- <!-- 弧线水花 -->
- <path d="M6 15c2-3 4.5-5 8-5s7 2.5 9 6" fill="none" stroke="url(#washGrad)" stroke-width="2" stroke-linecap="round" opacity="0.6"/>
- </svg>
|