Files
membank/产品/linux主机/详情/Linux主机_商品卖点.html
12600k-rog-d4 90d5c516c9 修复P0系统性价格错误:配件价格调整及SKU配置更新
1. 配件清单更新:
   - 新增3217U CPU价格定义:¥55(i3-2代)
   - 新增5005U CPU价格定义:¥150(i3-5代)
   - 确认3855U正确价格:¥80

2. SKU价格修正(D3-4G/8G、mSATA-32G/64G):
   - D3-4G: ¥38 → ¥25
   - D3-8G: ¥120 → ¥75
   - mSATA-32G: ¥25 → ¥20
   - mSATA-64G: ¥45 → ¥40

3. CPU价格修正:
   - 3217U: ¥65 → ¥55
   - 5005U: ¥80 → ¥150
   - 3855U: ¥75 → ¥80

4. Linux主机SKU更新:
   - 仅保留2G-16G配置
   - 3855U CPU价格修正

5. 修复文件统计:
   - fys亚克力-双:12个SKU
   - fjx金属3.5寸小:24个SKU
   - fjd金属3.5寸大:24个SKU
   - 龙虾盒子:6个SKU
   - 挂机宝:24个SKU
   - win10小主机:24个SKU
   - 总计:102+个文件
2026-04-23 00:23:11 +08:00

115 lines
3.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>商品卖点 - Linux主机</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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f3e7ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(102,126,234,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #a5b4fc;
}
.title {
font-size: 56px;
font-weight: bold;
color: #667eea;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(102,126,234,0.2);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #f3e7ff 0%, #e0d4ff 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(102,126,234,0.15);
border: 1px solid #c4b5fd;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #667eea;
margin-bottom: 10px;
}
.point-content p {
font-size: 20px;
color: #5a4b7a;
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>Linux系统</h3>
<p>预装Linux系统稳定高效适合服务器和开发环境</p>
</div>
</div>
<div class="point-item">
<div class="point-icon"></div>
<div class="point-content">
<h3>LNMP环境</h3>
<p>支持Nginx/Apache、MySQL、PHP建站首选</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💻</div>
<div class="point-content">
<h3>多语言支持</h3>
<p>支持Python、Java、Go、Node.js等主流开发语言</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🔧</div>
<div class="point-content">
<h3>开发利器</h3>
<p>完美支持Git、Docker、VS Code Server等开发工具</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">📦</div>
<div class="point-content">
<h3>便携小巧</h3>
<p>2.5寸机箱,体积小巧,节省桌面空间</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💰</div>
<div class="point-content">
<h3>超高性价比</h3>
<p>专业开发服务器,价格亲民,性价比极高</p>
</div>
</div>
</div>
</div>
</body>
</html>