133 lines
4.3 KiB
HTML
133 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=1000, height=1000">
|
|
<title>配件清单 - 飞牛NAS 亚克力机箱-单</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, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
|
|
padding: 40px;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(255, 255, 255, 0.85);
|
|
border-radius: 20px;
|
|
padding: 50px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.1), inset 0 0 100px rgba(255,255,255,0.5);
|
|
backdrop-filter: blur(10px);
|
|
border: 2px solid rgba(255,255,255,0.6);
|
|
}
|
|
.title {
|
|
font-size: 56px;
|
|
font-weight: bold;
|
|
color: #00695c;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
|
}
|
|
.subtitle {
|
|
font-size: 28px;
|
|
color: #4db6ac;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.accessories-image {
|
|
width: 100%;
|
|
height: 480px;
|
|
object-fit: contain;
|
|
border-radius: 12px;
|
|
margin-bottom: 25px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
|
background: rgba(255, 255, 255, 0.5);
|
|
}
|
|
.accessories-list {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
border-radius: 12px;
|
|
padding: 25px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
|
border: 1px solid rgba(38,166,154,0.3);
|
|
}
|
|
.list-title {
|
|
font-size: 28px;
|
|
color: #00796b;
|
|
font-weight: bold;
|
|
margin-bottom: 18px;
|
|
text-align: center;
|
|
padding-bottom: 10px;
|
|
border-bottom: 2px solid #b2dfdb;
|
|
}
|
|
.list-items {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 12px;
|
|
}
|
|
.list-item {
|
|
background: rgba(0, 150, 136, 0.05);
|
|
padding: 12px 18px;
|
|
border-radius: 8px;
|
|
font-size: 20px;
|
|
color: #004d40;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
border: 1px solid rgba(38,166,154,0.2);
|
|
}
|
|
.item-icon {
|
|
font-size: 22px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="title">配件清单</div>
|
|
<div class="subtitle">齐全配件 · 轻松组装</div>
|
|
|
|
<img src="../image/配件清单.jpg" alt="配件清单" class="accessories-image">
|
|
|
|
<div class="accessories-list">
|
|
<div class="list-title">📦 标准配件列表</div>
|
|
<div class="list-items">
|
|
<div class="list-item">
|
|
<span class="item-icon">🔧</span>
|
|
<span>亚克力机箱板材套装</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">💻</span>
|
|
<span>CPU主板套装</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">🔋</span>
|
|
<span>内存条</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">💾</span>
|
|
<span>mSATA系统盘</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">🔌</span>
|
|
<span>电源适配器 12V 5A</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">📡</span>
|
|
<span>SATA数据线</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">🔋</span>
|
|
<span>CR2032电池</span>
|
|
</div>
|
|
<div class="list-item">
|
|
<span class="item-icon">🌐</span>
|
|
<span>千兆网线</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|