新增sku-cost-profit-auditor技能动态维护SKU成本利润,优化ocr-extract增强模式与sku-designer序号模板,清理归档重复SKU,修正双盘位电源96W转60W,新增飞牛NAS 7款当前SKU

This commit is contained in:
12600k-rog-d4
2026-07-26 12:44:23 +08:00
parent 62a216299c
commit 31c3efe247
304 changed files with 718 additions and 592 deletions

View File

@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>飞牛NAS 主图1</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: 80px 60px;
}
.product-image {
width: 600px;
height: 600px;
object-fit: contain;
filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
margin-top: 60px;
}
.product-name {
font-size: 72px;
font-weight: bold;
color: #00695c;
margin-top: 40px;
text-shadow: 0 4px 20px rgba(0,105,92,0.2);
letter-spacing: 6px;
}
.storage-badge {
margin-top: 24px;
background: linear-gradient(135deg, #26a69a, #00897b);
color: #ffffff;
font-size: 32px;
font-weight: bold;
padding: 16px 40px;
border-radius: 40px;
letter-spacing: 4px;
box-shadow: 0 8px 30px rgba(38,166,154,0.4);
}
.nas-badge {
position: absolute;
top: 60px;
background: linear-gradient(135deg, #26a69a, #00897b);
color: #ffffff;
font-size: 28px;
font-weight: bold;
padding: 16px 60px;
border-radius: 30px;
letter-spacing: 4px;
box-shadow: 0 8px 30px rgba(38,166,154,0.4);
}
.corner-line {
position: absolute;
background: linear-gradient(90deg, #26a69a, transparent);
height: 4px;
width: 200px;
}
.corner-line.top { top: 120px; left: 60px; }
.corner-line.bottom { bottom: 100px; right: 60px; background: linear-gradient(90deg, transparent, #26a69a); }
</style>
</head>
<body>
<div class="container">
<div class="nas-badge">飞牛私有云NAS</div>
<img src="../image/正面_抠图.png" alt="飞牛NAS" class="product-image">
<div class="product-name">轻量化家庭NAS解决方案</div>
<div class="storage-badge">单盘最大支持 24TB</div>
</div>
</body>
</html>