Files
membank/产品/win 小主机/龙虾盒子/详情/龙虾盒子_配置清单.html
张威33321 3b12c3f2af 0326
2026-03-26 20:44:17 +08:00

138 lines
4.5 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, #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);
display: flex;
flex-direction: column;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.subtitle {
font-size: 28px;
color: #666;
text-align: center;
margin-bottom: 50px;
}
.config-section {
margin-bottom: 40px;
flex: 1;
}
.section-title {
font-size: 32px;
font-weight: bold;
color: #667eea;
margin-bottom: 20px;
padding-left: 20px;
border-left: 5px solid #667eea;
}
.config-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.config-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
padding: 20px 25px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-label {
font-size: 24px;
color: #333;
font-weight: bold;
}
.config-value {
font-size: 24px;
color: #667eea;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">配置清单</div>
<div class="subtitle">龙虾盒子 迷你主机系列</div>
<div class="config-section">
<div class="section-title">CPU处理器可选</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">Intel i3-5005U</span>
<span class="config-value">双核 2.0GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel 3855U</span>
<span class="config-value">双核 1.6GHz</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">内存容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">DDR3 4GB</span>
<span class="config-value">入门配置</span>
</div>
<div class="config-item">
<span class="config-label">DDR3 8GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">系统盘容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">mSATA 64GB</span>
<span class="config-value">标准配置</span>
</div>
<div class="config-item">
<span class="config-label">mSATA 128GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">标准配件</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">无线网卡</span>
<span class="config-value">标配</span>
</div>
<div class="config-item">
<span class="config-label">电源适配器</span>
<span class="config-value">60W</span>
</div>
</div>
</div>
</div>
</body>
</html>