📦 deps(skills): sync thirdparty skills
This commit is contained in:
@@ -0,0 +1,698 @@
|
||||
<!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>
|
||||
@@ -0,0 +1,444 @@
|
||||
<!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 - 我的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@300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@300;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: #FFFFFF;
|
||||
font-family: 'Noto Sans SC', 'Inter', sans-serif;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 900px;
|
||||
min-height: 600px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #FFFFFF;
|
||||
color: #1A1A1A;
|
||||
}
|
||||
|
||||
/* ===== 金色渐变工具 ===== */
|
||||
.gold-text {
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520, #B8860B);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.gold-line {
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, #B8860B, #DAA520, #B8860B);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* ===== 1. 顶部极简品牌 ===== */
|
||||
.top-bar {
|
||||
padding: 32px 56px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.top-brand {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: #CCCCCC;
|
||||
font-family: 'Inter', sans-serif;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
.top-date {
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
color: #CCCCCC;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
.top-line {
|
||||
margin: 20px 56px 0;
|
||||
}
|
||||
|
||||
/* ===== 2. 核心成就区 ===== */
|
||||
.hero {
|
||||
padding: 56px 56px 0;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
.hero-subtitle {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
letter-spacing: 0.12em;
|
||||
}
|
||||
.hero-skill-name {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
color: #1A1A1A;
|
||||
line-height: 1.15;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
/* 超大分数显示 */
|
||||
.score-display {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: center;
|
||||
gap: 16px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.score-from {
|
||||
font-size: 80px;
|
||||
font-weight: 300;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #E8E8E8;
|
||||
line-height: 1;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
.score-arrow {
|
||||
display: inline-block;
|
||||
width: 48px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #B8860B, #DAA520);
|
||||
position: relative;
|
||||
top: -30px;
|
||||
}
|
||||
.score-arrow::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
right: -2px;
|
||||
top: -5px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 10px solid #DAA520;
|
||||
border-top: 6px solid transparent;
|
||||
border-bottom: 6px solid transparent;
|
||||
}
|
||||
.score-to {
|
||||
font-size: 128px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #1A1A1A;
|
||||
line-height: 1;
|
||||
letter-spacing: -0.05em;
|
||||
}
|
||||
|
||||
.delta-display {
|
||||
display: inline-block;
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
letter-spacing: -0.02em;
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520, #B8860B);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/* ===== 3. 金色分割线 ===== */
|
||||
.divider {
|
||||
margin: 36px 56px 0;
|
||||
}
|
||||
|
||||
/* ===== 4. 最大突破区 ===== */
|
||||
.breakthrough {
|
||||
padding: 40px 56px 0;
|
||||
text-align: left;
|
||||
}
|
||||
.breakthrough-label {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.12em;
|
||||
margin-bottom: 12px;
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.breakthrough-dim {
|
||||
font-size: 36px;
|
||||
font-weight: 900;
|
||||
color: #1A1A1A;
|
||||
margin-bottom: 8px;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
.breakthrough-score-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 14px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.breakthrough-from {
|
||||
font-size: 48px;
|
||||
font-weight: 300;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #E0E0E0;
|
||||
line-height: 1;
|
||||
}
|
||||
.breakthrough-mini-arrow {
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #B8860B, #DAA520);
|
||||
position: relative;
|
||||
top: -16px;
|
||||
}
|
||||
.breakthrough-mini-arrow::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
right: -1px;
|
||||
top: -4px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 8px solid #DAA520;
|
||||
border-top: 5px solid transparent;
|
||||
border-bottom: 5px solid transparent;
|
||||
}
|
||||
.breakthrough-to {
|
||||
font-size: 64px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #1A1A1A;
|
||||
line-height: 1;
|
||||
}
|
||||
.breakthrough-pct {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
font-family: 'Inter', sans-serif;
|
||||
margin-left: 4px;
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.breakthrough-story {
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
line-height: 1.6;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
/* ===== 5. 维度网格 ===== */
|
||||
.dims {
|
||||
padding: 40px 56px 0;
|
||||
text-align: left;
|
||||
}
|
||||
.dims-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 0;
|
||||
}
|
||||
.dim-cell {
|
||||
padding: 20px 16px;
|
||||
border-bottom: 1px solid #F0F0F0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
/* 右边框:每行前3个有 */
|
||||
.dim-cell:nth-child(4n+1),
|
||||
.dim-cell:nth-child(4n+2),
|
||||
.dim-cell:nth-child(4n+3) {
|
||||
border-right: 1px solid #F0F0F0;
|
||||
}
|
||||
/* 最后一行去掉底边框 */
|
||||
.dim-cell:nth-child(n+5) {
|
||||
border-bottom: none;
|
||||
}
|
||||
.dim-name {
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: #999999;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
.dim-score-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 8px;
|
||||
}
|
||||
.dim-score {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #1A1A1A;
|
||||
line-height: 1.1;
|
||||
letter-spacing: -0.03em;
|
||||
}
|
||||
.dim-delta {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
/* ===== 6. 底部 ===== */
|
||||
.footer-line {
|
||||
margin: 48px 56px 0;
|
||||
}
|
||||
.footer {
|
||||
padding: 20px 56px 32px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.footer-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
.footer-brand {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #CCCCCC;
|
||||
font-family: 'Inter', sans-serif;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
.footer-brand .dot {
|
||||
background: linear-gradient(135deg, #B8860B, #DAA520);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.footer-slogan {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #CCCCCC;
|
||||
}
|
||||
.footer-url {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: #CCCCCC;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="card">
|
||||
|
||||
<!-- 1. 顶部极简品牌 -->
|
||||
<div class="top-bar">
|
||||
<div class="top-brand">Darwin.skill</div>
|
||||
<div class="top-date" data-field="date">2026.04.14</div>
|
||||
</div>
|
||||
<div class="gold-line top-line"></div>
|
||||
|
||||
<!-- 2. 核心成就区 -->
|
||||
<div class="hero">
|
||||
<div class="hero-subtitle">我的Skill进化报告</div>
|
||||
<div class="hero-skill-name" data-field="skill-name">审校降AI味</div>
|
||||
<div class="score-display">
|
||||
<span class="score-from" data-field="score-before">72</span>
|
||||
<span class="score-arrow"></span>
|
||||
<span class="score-to" data-field="score-after">87</span>
|
||||
</div>
|
||||
<div class="delta-display" data-field="score-delta">+15</div>
|
||||
</div>
|
||||
|
||||
<!-- 3. 金色分割线 -->
|
||||
<div class="gold-line divider"></div>
|
||||
|
||||
<!-- 4. 最大突破 -->
|
||||
<div class="breakthrough">
|
||||
<div class="breakthrough-label">最大突破</div>
|
||||
<div class="breakthrough-dim" data-field="top1-name">指令精度</div>
|
||||
<div class="breakthrough-score-row">
|
||||
<span class="breakthrough-from" data-field="top1-from">5</span>
|
||||
<span class="breakthrough-mini-arrow"></span>
|
||||
<span class="breakthrough-to" data-field="top1-to">9</span>
|
||||
<span class="breakthrough-pct" data-field="top1-pct">+80%</span>
|
||||
</div>
|
||||
<div class="breakthrough-story" data-field="top1-story">从模糊指令到精确可执行,指令精度翻了将近一倍</div>
|
||||
</div>
|
||||
|
||||
<!-- 5. 维度网格 -->
|
||||
<div class="dims">
|
||||
<div class="dims-grid">
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">元数据</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">8</span>
|
||||
<span class="dim-delta">▲ +2</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">工作流</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">8</span>
|
||||
<span class="dim-delta">▲ +3</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">边界覆盖</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">7</span>
|
||||
<span class="dim-delta">▲ +3</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">检查点</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">7</span>
|
||||
<span class="dim-delta">▲ +1</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">指令精度</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">9</span>
|
||||
<span class="dim-delta">▲ +4</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">资源整合</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">8</span>
|
||||
<span class="dim-delta">▲ +1</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">整体架构</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">8</span>
|
||||
<span class="dim-delta">▲ +2</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dim-cell">
|
||||
<div class="dim-name">实测表现</div>
|
||||
<div class="dim-score-row">
|
||||
<span class="dim-score">8</span>
|
||||
<span class="dim-delta">▲ +3</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 6. 底部 -->
|
||||
<div class="gold-line footer-line"></div>
|
||||
<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-url">github.com/alchaincyf/darwin-skill</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,616 @@
|
||||
<!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 - 我的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: #FAFAF5;
|
||||
font-family: 'Noto Sans SC', 'Inter', sans-serif;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 900px;
|
||||
min-height: 600px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #FAFAF5;
|
||||
color: #1A1A1A;
|
||||
}
|
||||
|
||||
/* ===== 1. 顶部品牌条 ===== */
|
||||
.brand-bar {
|
||||
background: #1A1A1A;
|
||||
padding: 24px 48px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.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: #888;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
/* ===== 2. 核心成就区 ===== */
|
||||
.hero-section {
|
||||
padding: 40px 48px 36px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 48px;
|
||||
background: linear-gradient(180deg, #FAFAF5 0%, #F5F0E8 100%);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* SVG圆环 */
|
||||
.ring-container {
|
||||
flex-shrink: 0;
|
||||
width: 280px;
|
||||
height: 280px;
|
||||
position: relative;
|
||||
}
|
||||
.ring-bg {
|
||||
fill: none;
|
||||
stroke: #E8E0D4;
|
||||
stroke-width: 16;
|
||||
stroke-dasharray: 8 8;
|
||||
}
|
||||
.ring-progress {
|
||||
fill: none;
|
||||
stroke: url(#orangeGradient);
|
||||
stroke-width: 18;
|
||||
stroke-linecap: round;
|
||||
stroke-dasharray: 534;
|
||||
stroke-dashoffset: 69;
|
||||
transform: rotate(-90deg);
|
||||
transform-origin: center;
|
||||
filter: drop-shadow(0 2px 8px rgba(232,89,12,0.3));
|
||||
}
|
||||
.ring-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
text-align: center;
|
||||
}
|
||||
.ring-score {
|
||||
font-size: 88px;
|
||||
font-weight: 900;
|
||||
color: #1A1A1A;
|
||||
line-height: 1;
|
||||
font-family: 'Inter', sans-serif;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
.ring-max {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: #B0A898;
|
||||
font-family: 'Inter', sans-serif;
|
||||
margin-left: 2px;
|
||||
}
|
||||
.ring-label {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #999;
|
||||
margin-top: 4px;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
/* 右侧文字区 */
|
||||
.hero-text {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.hero-title {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
line-height: 1.25;
|
||||
color: #1A1A1A;
|
||||
}
|
||||
.hero-skill-name {
|
||||
color: #E8590C;
|
||||
}
|
||||
.hero-journey {
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color: #666;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.hero-journey strong {
|
||||
color: #1A1A1A;
|
||||
font-weight: 700;
|
||||
}
|
||||
.delta-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: #E8590C;
|
||||
color: #fff;
|
||||
padding: 10px 28px;
|
||||
border-radius: 12px;
|
||||
font-size: 42px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
letter-spacing: -0.02em;
|
||||
width: fit-content;
|
||||
box-shadow: 0 4px 16px rgba(232,89,12,0.3);
|
||||
}
|
||||
.delta-badge-label {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
opacity: 0.9;
|
||||
font-family: 'Noto Sans SC', sans-serif;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
/* ===== 3. 最大突破区 ===== */
|
||||
.breakthrough-section {
|
||||
padding: 0 48px;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
.breakthrough-card {
|
||||
flex: 1;
|
||||
border-radius: 16px;
|
||||
padding: 28px 28px 24px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.breakthrough-card.primary {
|
||||
background: linear-gradient(135deg, #E8590C 0%, #FF8A4C 100%);
|
||||
color: #fff;
|
||||
flex: 1.2;
|
||||
}
|
||||
.breakthrough-card.secondary {
|
||||
background: #F0EAE0;
|
||||
color: #1A1A1A;
|
||||
border: 2px solid #E0D8CC;
|
||||
}
|
||||
.breakthrough-label {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: 12px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.breakthrough-card.primary .breakthrough-label {
|
||||
color: rgba(255,255,255,0.75);
|
||||
}
|
||||
.breakthrough-card.secondary .breakthrough-label {
|
||||
color: #999;
|
||||
}
|
||||
.breakthrough-dim {
|
||||
font-size: 24px;
|
||||
font-weight: 900;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.breakthrough-score-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.breakthrough-from {
|
||||
font-size: 36px;
|
||||
font-weight: 400;
|
||||
opacity: 0.5;
|
||||
font-family: 'Inter', sans-serif;
|
||||
text-decoration: line-through;
|
||||
text-decoration-thickness: 2px;
|
||||
}
|
||||
.breakthrough-arrow {
|
||||
font-size: 20px;
|
||||
opacity: 0.5;
|
||||
}
|
||||
.breakthrough-to {
|
||||
font-size: 52px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
line-height: 1;
|
||||
}
|
||||
.breakthrough-card.secondary .breakthrough-to {
|
||||
color: #E8590C;
|
||||
}
|
||||
.breakthrough-pct {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
.breakthrough-card.primary .breakthrough-pct {
|
||||
color: rgba(255,255,255,0.85);
|
||||
}
|
||||
.breakthrough-card.secondary .breakthrough-pct {
|
||||
color: #2B8A3E;
|
||||
}
|
||||
.breakthrough-story {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
line-height: 1.5;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.breakthrough-card.primary .breakthrough-story {
|
||||
color: rgba(255,255,255,0.9);
|
||||
}
|
||||
.breakthrough-card.secondary .breakthrough-story {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* ===== 4. 全维度速览 ===== */
|
||||
.dims-section {
|
||||
padding: 32px 48px 0;
|
||||
}
|
||||
.dims-header {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
color: #999;
|
||||
letter-spacing: 0.08em;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
.dims-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
.dim-cell {
|
||||
background: #F0EBE3;
|
||||
border-radius: 12px;
|
||||
padding: 16px 14px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
position: relative;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
.dim-cell.hot {
|
||||
background: #FFF0E6;
|
||||
border: 2px solid rgba(232,89,12,0.2);
|
||||
}
|
||||
.dim-cell.warm {
|
||||
background: #F5EEE4;
|
||||
}
|
||||
.dim-name {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
color: #888;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.dim-score-row {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 6px;
|
||||
}
|
||||
.dim-score {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #1A1A1A;
|
||||
line-height: 1;
|
||||
}
|
||||
.dim-cell.hot .dim-score {
|
||||
color: #E8590C;
|
||||
}
|
||||
.dim-old-score {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: #BBB;
|
||||
font-family: 'Inter', sans-serif;
|
||||
text-decoration: line-through;
|
||||
text-decoration-color: #CCC;
|
||||
}
|
||||
.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: #E8590C;
|
||||
color: #fff;
|
||||
}
|
||||
.dim-arrow.up-mid {
|
||||
background: rgba(232,89,12,0.15);
|
||||
color: #E8590C;
|
||||
}
|
||||
.dim-arrow.up-small {
|
||||
background: rgba(43,138,62,0.1);
|
||||
color: #2B8A3E;
|
||||
}
|
||||
|
||||
/* ===== 5. 改进摘要 ===== */
|
||||
.summary-section {
|
||||
padding: 28px 48px 0;
|
||||
}
|
||||
.summary-header {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
color: #999;
|
||||
letter-spacing: 0.08em;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.summary-items {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
.summary-item {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: #555;
|
||||
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%;
|
||||
}
|
||||
|
||||
/* ===== 6. 底部品牌区 ===== */
|
||||
.footer {
|
||||
margin-top: auto;
|
||||
background: #1A1A1A;
|
||||
padding: 28px 48px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.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: #777;
|
||||
font-weight: 500;
|
||||
}
|
||||
.footer-right {
|
||||
text-align: right;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
.footer-url {
|
||||
font-size: 14px;
|
||||
color: #aaa;
|
||||
font-family: 'Inter', monospace;
|
||||
font-weight: 600;
|
||||
}
|
||||
.footer-by {
|
||||
font-size: 13px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* 装饰性纹理 */
|
||||
.card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
background: radial-gradient(circle at top right, rgba(232,89,12,0.04) 0%, transparent 70%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
.card > * {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
</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="hero-section">
|
||||
<div class="ring-container">
|
||||
<svg viewBox="0 0 200 200" width="280" height="280">
|
||||
<defs>
|
||||
<linearGradient id="orangeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#E8590C"/>
|
||||
<stop offset="100%" stop-color="#FF8A4C"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<!-- 背景虚线环 -->
|
||||
<circle cx="100" cy="100" r="85" class="ring-bg"/>
|
||||
<!-- 进度弧 -->
|
||||
<circle cx="100" cy="100" r="85" class="ring-progress"/>
|
||||
</svg>
|
||||
<div class="ring-center">
|
||||
<div>
|
||||
<span class="ring-score" data-field="score-after">87</span><span class="ring-max">/100</span>
|
||||
</div>
|
||||
<div class="ring-label">质量总分</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hero-text">
|
||||
<div class="hero-title">
|
||||
我的Skill进化报告<br>
|
||||
<span class="hero-skill-name" data-field="skill-name">审校降AI味</span>
|
||||
</div>
|
||||
<div class="hero-journey">
|
||||
从 <strong data-field="score-before">72</strong> 分进化到 <strong>87</strong> 分<br>
|
||||
<span style="color:#999;font-size:14px;" data-field="skill-id">huashu-proofreading</span>
|
||||
</div>
|
||||
<div class="delta-badge">
|
||||
<span data-field="score-delta">+15</span>
|
||||
<span class="delta-badge-label">分</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 3. 最大突破区 -->
|
||||
<div class="breakthrough-section">
|
||||
<div class="breakthrough-card primary">
|
||||
<div class="breakthrough-label">最大突破</div>
|
||||
<div class="breakthrough-dim" data-field="top1-name">指令精度</div>
|
||||
<div class="breakthrough-score-row">
|
||||
<span class="breakthrough-from" data-field="top1-from">5</span>
|
||||
<span class="breakthrough-arrow">→</span>
|
||||
<span class="breakthrough-to" data-field="top1-to">9</span>
|
||||
</div>
|
||||
<div class="breakthrough-pct" data-field="top1-pct">+80%</div>
|
||||
<div class="breakthrough-story" data-field="top1-story">从模糊指令到精确可执行,指令精度翻了将近一倍</div>
|
||||
</div>
|
||||
<div class="breakthrough-card secondary">
|
||||
<div class="breakthrough-label">第二突破</div>
|
||||
<div class="breakthrough-dim" data-field="top2-name">工作流清晰度</div>
|
||||
<div class="breakthrough-score-row">
|
||||
<span class="breakthrough-from" data-field="top2-from">5</span>
|
||||
<span class="breakthrough-arrow">→</span>
|
||||
<span class="breakthrough-to" data-field="top2-to">8</span>
|
||||
</div>
|
||||
<div class="breakthrough-pct" data-field="top2-pct">+60%</div>
|
||||
<div class="breakthrough-story" data-field="top2-story">线性可执行步骤,每步都有明确检查点</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 4. 全维度速览 -->
|
||||
<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>
|
||||
|
||||
<!-- 5. 改进摘要 -->
|
||||
<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>
|
||||
|
||||
<!-- 6. 底部品牌区 -->
|
||||
<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>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 858 KiB |
Reference in New Issue
Block a user