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, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(255,107,107,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #ff8e53;
}
.title {
font-size: 56px;
font-weight: bold;
color: #d63031;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(214,48,49,0.2);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(255,107,107,0.15);
border: 1px solid #ffb399;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #d63031;
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>i3处理器流畅运行Windows系统办公娱乐两不误</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">📶</div>
<div class="point-content">
<h3>无线连接</h3>
<p>标配无线网卡WiFi连接摆脱网线束缚</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🖥️</div>
<div class="point-content">
<h3>双屏输出</h3>
<p>HDMI+VGA双接口支持双屏显示提升工作效率</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>