Files
membank/产品/win 小主机/挂机宝/详情/挂机宝_商品卖点.html
张威33321 398fcf9aff 0328
2026-03-28 18:08:56 +08:00

114 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>商品卖点 - 挂机宝</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, #00b894 0%, #55efc4 50%, #00b894 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,184,148,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #55efc4;
}
.title {
font-size: 56px;
font-weight: bold;
color: #00b894;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(0,184,148,0.2);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #f0fff4 0%, #e3f9e7 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(0,184,148,0.15);
border: 1px solid #81ecec;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #00b894;
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>专为游戏挂机设计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>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 class="point-item">
<div class="point-icon">💰</div>
<div class="point-content">
<h3>超高性价比</h3>
<p>专业挂机设备,价格亲民,性价比极高</p>
</div>
</div>
</div>
</div>
</body>
</html>