This commit is contained in:
张威33321
2026-03-28 18:08:56 +08:00
parent 3b12c3f2af
commit 398fcf9aff
195 changed files with 4845 additions and 549 deletions

View File

@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>商品卖点 - 3.5金属小</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, #dfe6e9 0%, #b2bec3 50%, #dfe6e9 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 2px 0 rgba(255,255,255,1);
border: 1px solid #e0e0e0;
}
.title {
font-size: 56px;
font-weight: bold;
color: #2d3436;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1);
border: 1px solid #e0e0e0;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #2d3436;
margin-bottom: 10px;
}
.point-content p {
font-size: 20px;
color: #636e72;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">商品卖点</div>
<div class="points-grid">
<div class="point-item">
<div class="point-icon">📦</div>
<div class="point-content">
<h3>紧凑小巧</h3>
<p>精致小巧机身,节省桌面空间,摆放灵活</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💪</div>
<div class="point-content">
<h3>金属坚固</h3>
<p>优质金属材质,坚固耐用,散热性能优异</p>
</div>
</div>
<div class="point-item">
<div class="point-icon"></div>
<div class="point-content">
<h3>低功耗静音</h3>
<p>超低功耗设计无风扇静音运行7x24小时稳定</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🔧</div>
<div class="point-content">
<h3>易于维护</h3>
<p>抽拉式硬盘架设计,更换硬盘方便快捷</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🏠</div>
<div class="point-content">
<h3>入门首选</h3>
<p>适合NAS入门用户价格亲民功能齐全</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💰</div>
<div class="point-content">
<h3>超高性价比</h3>
<p>专业级NAS体验价格亲民性价比极高</p>
</div>
</div>
</div>
</div>
</body>
</html>