0326
This commit is contained in:
110
产品/win 小主机/挂机宝/详情/挂机宝_商品卖点.html
Normal file
110
产品/win 小主机/挂机宝/详情/挂机宝_商品卖点.html
Normal file
@@ -0,0 +1,110 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1000, height=1000">
|
||||
<title>商品卖点 - 挂机宝</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: white;
|
||||
border-radius: 20px;
|
||||
padding: 50px;
|
||||
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
||||
}
|
||||
.title {
|
||||
font-size: 56px;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.points-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 30px;
|
||||
}
|
||||
.point-item {
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
|
||||
border-radius: 15px;
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
.point-icon {
|
||||
font-size: 60px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.point-content h3 {
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.point-content p {
|
||||
font-size: 20px;
|
||||
color: #666;
|
||||
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>超低功耗设计,无风扇静音运行,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>模块化设计,拆卸方便,升级维护简单快捷</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>挂机首选,功能齐全,价格亲民</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user