| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Darwin Skill - 暗夜成就</title>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;700;900&display=swap" rel="stylesheet">
- <style>
- *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
- body {
- display: flex;
- justify-content: center;
- align-items: flex-start;
- min-height: 100vh;
- background: #0D0D0F;
- font-family: 'Noto Sans SC', 'Inter', sans-serif;
- padding: 0;
- }
- .card {
- width: 900px;
- min-height: 600px;
- position: relative;
- display: flex;
- flex-direction: column;
- background: #0D0D0F;
- color: #FFFFFF;
- overflow: hidden;
- }
- /* ===== 全局光效底层 ===== */
- .card::before {
- content: '';
- position: absolute;
- top: 80px;
- left: 50%;
- transform: translateX(-50%);
- width: 600px;
- height: 600px;
- background: radial-gradient(circle, rgba(232,89,12,0.12) 0%, rgba(232,89,12,0.04) 35%, transparent 70%);
- pointer-events: none;
- z-index: 0;
- }
- .card > * {
- position: relative;
- z-index: 1;
- }
- /* ===== 1. 顶部品牌条 ===== */
- .brand-bar {
- padding: 24px 48px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid rgba(255,255,255,0.06);
- }
- .brand-name {
- font-size: 22px;
- font-weight: 800;
- color: #fff;
- letter-spacing: 0.02em;
- font-family: 'Inter', 'Noto Sans SC', sans-serif;
- }
- .brand-name .dot { color: #E8590C; }
- .brand-date {
- font-size: 15px;
- font-weight: 500;
- color: #555;
- font-family: 'Inter', sans-serif;
- }
- /* ===== 2. 成就徽章区(视觉焦点) ===== */
- .achievement-section {
- padding: 36px 48px 24px;
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center;
- position: relative;
- }
- /* 徽章容器 */
- .badge-container {
- position: relative;
- width: 220px;
- height: 220px;
- margin-bottom: 20px;
- }
- /* 外圈光晕 */
- .badge-container::before {
- content: '';
- position: absolute;
- top: -30px;
- left: -30px;
- right: -30px;
- bottom: -30px;
- border-radius: 50%;
- background: radial-gradient(circle, rgba(232,89,12,0.25) 0%, rgba(255,107,53,0.08) 50%, transparent 75%);
- pointer-events: none;
- }
- .badge-svg {
- width: 240px;
- height: 240px;
- filter: drop-shadow(0 0 30px rgba(232,89,12,0.35)) drop-shadow(0 0 60px rgba(232,89,12,0.15));
- }
- .badge-ring-bg {
- fill: none;
- stroke: rgba(255,255,255,0.06);
- stroke-width: 14;
- }
- .badge-ring-glow {
- fill: none;
- stroke: url(#darkOrangeGradient);
- stroke-width: 16;
- stroke-linecap: round;
- /* 周长 = 2 * PI * 85 ≈ 534, 87% → dashoffset = 534 * 0.13 ≈ 69 */
- stroke-dasharray: 534;
- stroke-dashoffset: 69;
- transform: rotate(-90deg);
- transform-origin: center;
- }
- .badge-ring-track {
- fill: none;
- stroke: rgba(255,255,255,0.03);
- stroke-width: 14;
- stroke-dasharray: 6 6;
- }
- .badge-center {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- }
- .badge-score {
- font-size: 80px;
- font-weight: 900;
- color: #FFFFFF;
- line-height: 1;
- font-family: 'Inter', sans-serif;
- letter-spacing: -0.04em;
- text-shadow: 0 0 40px rgba(232,89,12,0.4);
- }
- .badge-max {
- font-size: 22px;
- font-weight: 600;
- color: #555;
- font-family: 'Inter', sans-serif;
- margin-left: 2px;
- }
- .badge-label {
- font-size: 13px;
- font-weight: 600;
- color: #666;
- margin-top: 4px;
- letter-spacing: 0.1em;
- }
- .achievement-title {
- font-size: 30px;
- font-weight: 900;
- line-height: 1.3;
- color: #FFFFFF;
- margin-bottom: 6px;
- }
- .achievement-skill {
- color: #FF6B35;
- text-shadow: 0 0 20px rgba(232,89,12,0.3);
- }
- .achievement-subtitle {
- font-size: 15px;
- color: #555;
- font-weight: 500;
- font-family: 'Inter', sans-serif;
- }
- /* ===== 3. 经验条区 ===== */
- .xp-section {
- padding: 28px 48px 32px;
- }
- .xp-bar-wrapper {
- background: rgba(255,255,255,0.04);
- border-radius: 16px;
- padding: 24px 28px;
- }
- .xp-labels {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- margin-bottom: 14px;
- }
- .xp-old {
- font-size: 20px;
- font-weight: 500;
- color: #555;
- font-family: 'Inter', sans-serif;
- text-decoration: line-through;
- text-decoration-color: #444;
- }
- .xp-new {
- font-size: 28px;
- font-weight: 900;
- color: #FFFFFF;
- font-family: 'Inter', sans-serif;
- }
- .xp-track {
- position: relative;
- width: 100%;
- height: 20px;
- background: rgba(255,255,255,0.06);
- border-radius: 10px;
- overflow: visible;
- }
- .xp-fill {
- height: 100%;
- width: 87%;
- background: linear-gradient(90deg, #E8590C 0%, #FF6B35 100%);
- border-radius: 10px;
- box-shadow: 0 0 20px rgba(232,89,12,0.4), 0 0 6px rgba(232,89,12,0.6);
- position: relative;
- }
- .xp-delta-badge {
- position: absolute;
- top: -32px;
- right: -8px;
- background: linear-gradient(135deg, #E8590C, #FF6B35);
- color: #fff;
- font-size: 16px;
- font-weight: 800;
- font-family: 'Inter', sans-serif;
- padding: 4px 14px;
- border-radius: 8px;
- box-shadow: 0 4px 16px rgba(232,89,12,0.4);
- white-space: nowrap;
- }
- .xp-delta-badge::after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 50%;
- transform: translateX(-50%);
- width: 0;
- height: 0;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 6px solid #FF6B35;
- }
- /* ===== 4. 最大突破卡片 ===== */
- .breakthrough-section {
- padding: 0 48px 20px;
- }
- .breakthrough-card {
- position: relative;
- border-radius: 16px;
- padding: 28px 32px;
- background: rgba(255,255,255,0.03);
- overflow: hidden;
- }
- /* 渐变边框效果 */
- .breakthrough-card::before {
- content: '';
- position: absolute;
- inset: 0;
- border-radius: 16px;
- padding: 2px;
- background: linear-gradient(135deg, #E8590C 0%, #FF6B35 40%, rgba(255,107,53,0.2) 100%);
- -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
- -webkit-mask-composite: xor;
- mask-composite: exclude;
- pointer-events: none;
- }
- .breakthrough-label {
- font-size: 12px;
- font-weight: 700;
- letter-spacing: 0.12em;
- color: #FF6B35;
- margin-bottom: 12px;
- text-transform: uppercase;
- }
- .breakthrough-content {
- display: flex;
- align-items: center;
- gap: 24px;
- }
- .breakthrough-scores {
- display: flex;
- align-items: baseline;
- gap: 12px;
- flex-shrink: 0;
- }
- .bt-from {
- font-size: 36px;
- font-weight: 400;
- color: #444;
- font-family: 'Inter', sans-serif;
- text-decoration: line-through;
- text-decoration-color: #444;
- }
- .bt-arrow {
- font-size: 20px;
- color: #555;
- }
- .bt-to {
- font-size: 52px;
- font-weight: 900;
- font-family: 'Inter', sans-serif;
- color: #FF6B35;
- line-height: 1;
- text-shadow: 0 0 24px rgba(232,89,12,0.3);
- }
- .bt-pct {
- font-size: 16px;
- font-weight: 800;
- font-family: 'Inter', sans-serif;
- color: #4ADE80;
- margin-left: 4px;
- }
- .breakthrough-text {
- flex: 1;
- }
- .bt-dim-name {
- font-size: 22px;
- font-weight: 800;
- color: #fff;
- margin-bottom: 4px;
- }
- .bt-story {
- font-size: 15px;
- font-weight: 500;
- color: #777;
- line-height: 1.5;
- }
- /* ===== 5. 维度网格 2x4 ===== */
- .dims-section {
- padding: 0 48px 16px;
- }
- .dims-header {
- font-size: 13px;
- font-weight: 700;
- color: #555;
- letter-spacing: 0.1em;
- margin-bottom: 16px;
- text-transform: uppercase;
- }
- .dims-grid {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 10px;
- }
- .dim-cell {
- background: rgba(255,255,255,0.04);
- border-radius: 12px;
- padding: 16px 12px;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 6px;
- position: relative;
- border: 1px solid rgba(255,255,255,0.04);
- }
- .dim-cell.hot {
- background: rgba(232,89,12,0.08);
- border: 1px solid rgba(232,89,12,0.2);
- box-shadow: 0 0 20px rgba(232,89,12,0.1);
- }
- .dim-cell.warm {
- background: rgba(255,255,255,0.05);
- border: 1px solid rgba(255,255,255,0.06);
- }
- .dim-name {
- font-size: 12px;
- font-weight: 700;
- color: #666;
- text-align: center;
- white-space: nowrap;
- }
- .dim-cell.hot .dim-name {
- color: #888;
- }
- .dim-score-row {
- display: flex;
- align-items: baseline;
- gap: 6px;
- }
- .dim-old-score {
- font-size: 14px;
- font-weight: 500;
- color: #444;
- font-family: 'Inter', sans-serif;
- text-decoration: line-through;
- text-decoration-color: #444;
- }
- .dim-score {
- font-size: 30px;
- font-weight: 900;
- font-family: 'Inter', sans-serif;
- color: #FFFFFF;
- line-height: 1;
- }
- .dim-cell.hot .dim-score {
- color: #FF6B35;
- text-shadow: 0 0 12px rgba(232,89,12,0.3);
- }
- .dim-arrow {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- font-size: 11px;
- font-weight: 800;
- font-family: 'Inter', sans-serif;
- padding: 2px 8px;
- border-radius: 6px;
- line-height: 1;
- }
- .dim-arrow.up-big {
- background: rgba(232,89,12,0.9);
- color: #fff;
- box-shadow: 0 0 8px rgba(232,89,12,0.3);
- }
- .dim-arrow.up-mid {
- background: rgba(232,89,12,0.2);
- color: #FF6B35;
- }
- .dim-arrow.up-small {
- background: rgba(74,222,128,0.12);
- color: #4ADE80;
- }
- /* ===== 6. 改进摘要 ===== */
- .summary-section {
- padding: 0 48px 32px;
- }
- .summary-header {
- font-size: 13px;
- font-weight: 700;
- color: #555;
- letter-spacing: 0.1em;
- margin-bottom: 14px;
- text-transform: uppercase;
- }
- .summary-items {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
- .summary-item {
- font-size: 15px;
- font-weight: 500;
- color: #888;
- line-height: 1.6;
- padding-left: 20px;
- position: relative;
- }
- .summary-item::before {
- content: '';
- position: absolute;
- left: 0;
- top: 9px;
- width: 8px;
- height: 8px;
- background: #E8590C;
- border-radius: 50%;
- box-shadow: 0 0 8px rgba(232,89,12,0.5);
- }
- /* ===== 7. 底部品牌条 ===== */
- .footer {
- margin-top: auto;
- padding: 28px 48px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-top: 1px solid rgba(255,255,255,0.06);
- }
- .footer-left {
- display: flex;
- flex-direction: column;
- gap: 6px;
- }
- .footer-brand {
- font-size: 20px;
- font-weight: 800;
- color: #fff;
- font-family: 'Inter', 'Noto Sans SC', sans-serif;
- }
- .footer-brand .dot { color: #E8590C; }
- .footer-slogan {
- font-size: 14px;
- color: #444;
- font-weight: 500;
- }
- .footer-right {
- text-align: right;
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .footer-url {
- font-size: 14px;
- color: #555;
- font-family: 'Inter', monospace;
- font-weight: 600;
- }
- .footer-by {
- font-size: 13px;
- color: #444;
- }
- </style>
- </head>
- <body>
- <div class="card">
- <!-- 1. 顶部品牌条 -->
- <div class="brand-bar">
- <div class="brand-name">Darwin<span class="dot">.</span>skill</div>
- <div class="brand-date" data-field="date">2026.04.14</div>
- </div>
- <!-- 2. 成就徽章区 -->
- <div class="achievement-section">
- <div class="badge-container">
- <svg class="badge-svg" viewBox="0 0 200 200">
- <defs>
- <linearGradient id="darkOrangeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
- <stop offset="0%" stop-color="#E8590C"/>
- <stop offset="100%" stop-color="#FF6B35"/>
- </linearGradient>
- <filter id="glow">
- <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
- <feMerge>
- <feMergeNode in="coloredBlur"/>
- <feMergeNode in="SourceGraphic"/>
- </feMerge>
- </filter>
- </defs>
- <!-- 底层虚线轨道 -->
- <circle cx="100" cy="100" r="85" class="badge-ring-track"/>
- <!-- 背景环 -->
- <circle cx="100" cy="100" r="85" class="badge-ring-bg"/>
- <!-- 发光进度环 -->
- <circle cx="100" cy="100" r="85" class="badge-ring-glow" filter="url(#glow)"/>
- </svg>
- <div class="badge-center">
- <div>
- <span class="badge-score" data-field="score-after">87</span><span class="badge-max">/100</span>
- </div>
- <div class="badge-label">质量总分</div>
- </div>
- </div>
- <div class="achievement-title">
- 我的Skill进化报告<br>
- <span class="achievement-skill" data-field="skill-name">审校降AI味</span>
- </div>
- <div class="achievement-subtitle" data-field="skill-id">huashu-proofreading</div>
- </div>
- <!-- 3. 经验条 -->
- <div class="xp-section">
- <div class="xp-bar-wrapper">
- <div class="xp-labels">
- <span class="xp-old" data-field="score-before">72</span>
- <span class="xp-new" data-field="score-after-2">87</span>
- </div>
- <div class="xp-track">
- <div class="xp-fill">
- <div class="xp-delta-badge" data-field="score-delta">+15</div>
- </div>
- </div>
- </div>
- </div>
- <!-- 4. 最大突破 -->
- <div class="breakthrough-section">
- <div class="breakthrough-card">
- <div class="breakthrough-label">最大突破</div>
- <div class="breakthrough-content">
- <div class="breakthrough-scores">
- <span class="bt-from" data-field="top1-from">5</span>
- <span class="bt-arrow">→</span>
- <span class="bt-to" data-field="top1-to">9</span>
- <span class="bt-pct" data-field="top1-pct">+80%</span>
- </div>
- <div class="breakthrough-text">
- <div class="bt-dim-name" data-field="top1-name">指令精度</div>
- <div class="bt-story" data-field="top1-story">从模糊指令到精确可执行,指令精度翻了将近一倍</div>
- </div>
- </div>
- </div>
- </div>
- <!-- 5. 八维度网格 -->
- <div class="dims-section">
- <div class="dims-header">八维度全景</div>
- <div class="dims-grid">
- <div class="dim-cell warm">
- <div class="dim-name">元数据</div>
- <div class="dim-score-row">
- <span class="dim-old-score">6</span>
- <span class="dim-score">8</span>
- </div>
- <span class="dim-arrow up-mid">+2</span>
- </div>
- <div class="dim-cell hot">
- <div class="dim-name">工作流</div>
- <div class="dim-score-row">
- <span class="dim-old-score">5</span>
- <span class="dim-score">8</span>
- </div>
- <span class="dim-arrow up-big">+3</span>
- </div>
- <div class="dim-cell hot">
- <div class="dim-name">边界覆盖</div>
- <div class="dim-score-row">
- <span class="dim-old-score">4</span>
- <span class="dim-score">7</span>
- </div>
- <span class="dim-arrow up-big">+3</span>
- </div>
- <div class="dim-cell">
- <div class="dim-name">检查点</div>
- <div class="dim-score-row">
- <span class="dim-old-score">6</span>
- <span class="dim-score">7</span>
- </div>
- <span class="dim-arrow up-small">+1</span>
- </div>
- <div class="dim-cell hot">
- <div class="dim-name">指令精度</div>
- <div class="dim-score-row">
- <span class="dim-old-score">5</span>
- <span class="dim-score">9</span>
- </div>
- <span class="dim-arrow up-big">+4</span>
- </div>
- <div class="dim-cell">
- <div class="dim-name">资源整合</div>
- <div class="dim-score-row">
- <span class="dim-old-score">7</span>
- <span class="dim-score">8</span>
- </div>
- <span class="dim-arrow up-small">+1</span>
- </div>
- <div class="dim-cell warm">
- <div class="dim-name">整体架构</div>
- <div class="dim-score-row">
- <span class="dim-old-score">6</span>
- <span class="dim-score">8</span>
- </div>
- <span class="dim-arrow up-mid">+2</span>
- </div>
- <div class="dim-cell hot">
- <div class="dim-name">实测表现</div>
- <div class="dim-score-row">
- <span class="dim-old-score">5</span>
- <span class="dim-score">8</span>
- </div>
- <span class="dim-arrow up-big">+3</span>
- </div>
- </div>
- </div>
- <!-- 6. 改进摘要 -->
- <div class="summary-section">
- <div class="summary-header">关键改进</div>
- <div class="summary-items">
- <div class="summary-item" data-field="improve-1">补充异常处理fallback路径,边界覆盖从4飙升到7</div>
- <div class="summary-item" data-field="improve-2">工作流重组为线性可执行步骤,每步可验证</div>
- <div class="summary-item" data-field="improve-3">测试prompt覆盖率从60%提升到95%,实测表现大幅进化</div>
- </div>
- </div>
- <!-- 7. 底部品牌条 -->
- <div class="footer">
- <div class="footer-left">
- <div class="footer-brand">Darwin<span class="dot">.</span>skill</div>
- <div class="footer-slogan">像训练模型一样进化你的Skills</div>
- </div>
- <div class="footer-right">
- <div class="footer-url">github.com/alchaincyf/darwin-skill</div>
- <div class="footer-by">by 花叔</div>
- </div>
- </div>
- </div>
- </body>
- </html>
|