Files
membank/产品/win 小主机/win10小主机/详情/win10小主机_商品卖点.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>商品卖点 - win10小主机</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, #0984e3 0%, #74b9ff 50%, #0984e3 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(9,132,227,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #74b9ff;
}
.title {
font-size: 56px;
font-weight: bold;
color: #0984e3;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(9,132,227,0.2);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(9,132,227,0.15);
border: 1px solid #90caf9;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #0984e3;
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>Windows系统</h3>
<p>预装Windows 10系统开机即用兼容所有Windows软件</p>
</div>
</div>
<div class="point-item">
<div class="point-icon"></div>
<div class="point-content">
<h3>强劲性能</h3>
<p>i3处理器流畅运行办公软件满足日常需求</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>