This commit is contained in:
12600k-rog-d4
2026-04-03 01:30:36 +08:00
parent 989af85df0
commit 6a486edde8
69 changed files with 2059 additions and 25 deletions

View File

@@ -0,0 +1,107 @@
<!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, #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: 40px;
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
}
.content-wrapper {
display: flex;
gap: 40px;
height: calc(100% - 96px);
}
.image-section {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
}
.image-section img {
max-width: 100%;
max-height: 100%;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.list-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.list-title {
font-size: 32px;
font-weight: bold;
color: #00695c;
margin-bottom: 10px;
text-align: center;
}
.accessory-item {
background: rgba(255, 255, 255, 0.9);
padding: 20px 25px;
border-radius: 10px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
border: 1px solid rgba(38,166,154,0.3);
font-size: 24px;
color: #00796b;
}
.accessory-item:before {
content: "✓";
color: #26a69a;
font-weight: bold;
font-size: 28px;
}
</style>
</head>
<body>
<div class="container">
<div class="title">配件清单</div>
<div class="content-wrapper">
<div class="image-section">
<img src="image/配件清单.jpg" alt="配件清单">
</div>
<div class="list-section">
<div class="list-title">📋 标准配置清单</div>
<div class="accessory-item">亚克力机箱 - 单 SATA 口 × 1</div>
<div class="accessory-item">60W 电源适配器 × 1</div>
<div class="accessory-item">SATA 数据线 × 1</div>
<div class="accessory-item">硬盘固定螺丝 × 4</div>
<div class="accessory-item">机箱脚垫 × 4</div>
<div class="accessory-item">主板固定铜柱 × 若干</div>
<div class="accessory-item">使用说明书 × 1</div>
</div>
</div>
</div>
</body>
</html>