| 12345678910111213141516171819202122232425262728293031 |
- <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
- <defs>
- <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
- <stop offset="0%" style="stop-color:#FFE5F1;stop-opacity:1" />
- <stop offset="100%" style="stop-color:#FFECF3;stop-opacity:1" />
- </linearGradient>
- <linearGradient id="iconGrad" x1="0%" y1="0%" x2="100%" y2="100%">
- <stop offset="0%" style="stop-color:#E91E63;stop-opacity:0.6" />
- <stop offset="100%" style="stop-color:#FF6B9D;stop-opacity:0.4" />
- </linearGradient>
- </defs>
-
- <!-- 背景圆 -->
- <circle cx="100" cy="100" r="100" fill="url(#bgGrad)" />
-
- <!-- 头像图标 -->
- <!-- 头部 -->
- <circle cx="100" cy="75" r="25" fill="url(#iconGrad)" />
-
- <!-- 身体 -->
- <ellipse cx="100" cy="140" rx="40" ry="30" fill="url(#iconGrad)" />
-
- <!-- 装饰边框 -->
- <circle cx="100" cy="100" r="98" fill="none" stroke="rgba(233, 30, 99, 0.2)" stroke-width="2" />
- </svg>
|