0328
This commit is contained in:
119
产品/win 小主机/龙虾盒子/详情/龙虾盒子_配置清单-2.html
Normal file
119
产品/win 小主机/龙虾盒子/详情/龙虾盒子_配置清单-2.html
Normal file
@@ -0,0 +1,119 @@
|
||||
<!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: 20px;
|
||||
text-shadow: 0 2px 10px rgba(214,48,49,0.2);
|
||||
}
|
||||
.subtitle {
|
||||
font-size: 28px;
|
||||
color: #e17055;
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.config-section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
color: #d63031;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
border-left: 5px solid #ff6b6b;
|
||||
}
|
||||
.config-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
}
|
||||
.config-item {
|
||||
background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
|
||||
padding: 20px 25px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-shadow: 0 4px 15px rgba(255,107,107,0.15);
|
||||
border: 1px solid #ffb399;
|
||||
}
|
||||
.config-label {
|
||||
font-size: 24px;
|
||||
color: #2d3436;
|
||||
font-weight: bold;
|
||||
}
|
||||
.config-value {
|
||||
font-size: 24px;
|
||||
color: #d63031;
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">配置清单 (2/2)</div>
|
||||
<div class="subtitle">龙虾盒子 高性能小主机系列</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">HD 500GB</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">标配WiFi</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">电源适配器</span>
|
||||
<span class="config-value">60W</span>
|
||||
</div>
|
||||
<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">HDMI+VGA</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user