feat: 更新亚克力机箱-单详情页及 skills 配置优化
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 4.2 MiB |
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 3.2 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 3.7 MiB |
|
Before Width: | Height: | Size: 500 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 566 KiB |
|
Before Width: | Height: | Size: 754 KiB |
|
Before Width: | Height: | Size: 584 KiB |
|
Before Width: | Height: | Size: 925 KiB |
|
Before Width: | Height: | Size: 847 KiB |
|
Before Width: | Height: | Size: 1005 KiB |
|
Before Width: | Height: | Size: 614 KiB |
|
Before Width: | Height: | Size: 635 KiB |
|
Before Width: | Height: | Size: 543 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
@@ -1,97 +0,0 @@
|
||||
<!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);
|
||||
}
|
||||
.image-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-rows: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
height: calc(100% - 96px);
|
||||
}
|
||||
.image-box {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.image-box img {
|
||||
width: 100%;
|
||||
flex: 1;
|
||||
object-fit: cover;
|
||||
}
|
||||
.image-label {
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
font-size: 24px;
|
||||
color: #00796b;
|
||||
font-weight: bold;
|
||||
background: rgba(255,255,255,0.95);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">包装展示</div>
|
||||
|
||||
<div class="image-grid">
|
||||
<div class="image-box">
|
||||
<img src="image/包装.jpg" alt="包装展示">
|
||||
<div class="image-label">包装展示</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/包装1.jpg" alt="包装细节">
|
||||
<div class="image-label">包装细节</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/包装2.jpg" alt="泡沫保护">
|
||||
<div class="image-label">泡沫保护</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/包装3.jpg" alt="配件包装">
|
||||
<div class="image-label">配件包装</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/包装5.jpg" alt="成品包装">
|
||||
<div class="image-label">成品包装</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/配件清单.jpg" alt="配件清单">
|
||||
<div class="image-label">配件清单</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 800 KiB |
|
Before Width: | Height: | Size: 3.2 MiB |
@@ -1,107 +0,0 @@
|
||||
<!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>
|
||||
|
Before Width: | Height: | Size: 336 KiB |
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1000, height=1000">
|
||||
<title>商品实拍图 - 亚克力机箱-单</title>
|
||||
<title>产品实拍图 - 飞牛NAS 亚克力机箱-单</title>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
@@ -28,69 +28,72 @@
|
||||
font-weight: bold;
|
||||
color: #00695c;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
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: 40px;
|
||||
}
|
||||
.image-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 20px;
|
||||
height: calc(100% - 96px);
|
||||
}
|
||||
.image-box {
|
||||
.image-card {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 12px;
|
||||
padding: 12px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
text-align: center;
|
||||
}
|
||||
.image-box img {
|
||||
.image-card img {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.image-label {
|
||||
padding: 20px 15px 15px;
|
||||
text-align: center;
|
||||
font-size: 24px;
|
||||
font-size: 22px;
|
||||
color: #00796b;
|
||||
font-weight: bold;
|
||||
background: rgba(255,255,255,0.95);
|
||||
margin-top: auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">商品实拍图</div>
|
||||
<div class="title">产品实拍图</div>
|
||||
<div class="subtitle">真实拍摄 · 所见即所得</div>
|
||||
|
||||
<div class="image-grid">
|
||||
<div class="image-box">
|
||||
<img src="image/正面.jpg" alt="正面视图">
|
||||
<div class="image-label">正面视图</div>
|
||||
<div class="image-card">
|
||||
<img src="../image/正面.jpg" alt="正面图">
|
||||
<div class="image-label">正面展示</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/侧面.jpg" alt="侧面视图">
|
||||
<div class="image-label">侧面视图</div>
|
||||
<div class="image-card">
|
||||
<img src="../image/侧面.jpg" alt="侧面图">
|
||||
<div class="image-label">侧面展示</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/俯视图.jpg" alt="俯视图">
|
||||
<div class="image-label">俯视图</div>
|
||||
<div class="image-card">
|
||||
<img src="../image/俯视图.jpg" alt="俯视图">
|
||||
<div class="image-label">俯视展示</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/底面.jpg" alt="底面视图">
|
||||
<div class="image-label">底面视图</div>
|
||||
<div class="image-card">
|
||||
<img src="../image/接口.jpg" alt="接口图">
|
||||
<div class="image-label">接口展示</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/接口.jpg" alt="接口细节">
|
||||
<div class="image-label">接口细节</div>
|
||||
</div>
|
||||
<div class="image-box">
|
||||
<img src="image/竖放.jpg" alt="竖放展示">
|
||||
<div class="image-card">
|
||||
<img src="../image/竖放.jpg" alt="竖放图">
|
||||
<div class="image-label">竖放展示</div>
|
||||
</div>
|
||||
<div class="image-card">
|
||||
<img src="../image/底面.jpg" alt="底面图">
|
||||
<div class="image-label">底面展示</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
BIN
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_产品实拍图.png
Normal file
|
After Width: | Height: | Size: 586 KiB |
@@ -1,92 +0,0 @@
|
||||
<!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);
|
||||
}
|
||||
.scenario-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 30px;
|
||||
}
|
||||
.scenario-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.scenario-icon {
|
||||
font-size: 70px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.scenario-title {
|
||||
font-size: 28px;
|
||||
color: #004d40;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.scenario-desc {
|
||||
font-size: 20px;
|
||||
color: #00796b;
|
||||
line-height: 1.5;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">使用场景</div>
|
||||
|
||||
<div class="scenario-grid">
|
||||
<div class="scenario-item">
|
||||
<div class="scenario-icon">🏠</div>
|
||||
<div class="scenario-title">家庭数据中心</div>
|
||||
<div class="scenario-desc">集中存储家庭照片、视频、文档,全家共享访问</div>
|
||||
</div>
|
||||
<div class="scenario-item">
|
||||
<div class="scenario-icon">💼</div>
|
||||
<div class="scenario-title">小型办公</div>
|
||||
<div class="scenario-desc">团队文件共享,数据集中管理,提升工作效率</div>
|
||||
</div>
|
||||
<div class="scenario-item">
|
||||
<div class="scenario-icon">🎬</div>
|
||||
<div class="scenario-title">影音娱乐</div>
|
||||
<div class="scenario-desc">搭建家庭影院,存储高清电影,随时观看</div>
|
||||
</div>
|
||||
<div class="scenario-item">
|
||||
<div class="scenario-icon">📚</div>
|
||||
<div class="scenario-title">学习资料库</div>
|
||||
<div class="scenario-desc">存储学习资料、电子书籍,构建个人知识管理系统</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 156 KiB |
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1000, height=1000">
|
||||
<title>功能描述 - 亚克力机箱</title>
|
||||
<title>功能描述 - 飞牛NAS 亚克力机箱-单</title>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
@@ -28,18 +28,18 @@
|
||||
font-weight: bold;
|
||||
color: #00695c;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
margin-bottom: 50px;
|
||||
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
||||
}
|
||||
.function-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 25px;
|
||||
gap: 30px;
|
||||
}
|
||||
.function-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
padding: 25px 30px;
|
||||
padding: 28px 35px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 25px;
|
||||
@@ -47,16 +47,16 @@
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.function-icon {
|
||||
font-size: 50px;
|
||||
font-size: 55px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.function-text h3 {
|
||||
font-size: 28px;
|
||||
font-size: 30px;
|
||||
color: #004d40;
|
||||
margin-bottom: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.function-text p {
|
||||
font-size: 20px;
|
||||
font-size: 22px;
|
||||
color: #00796b;
|
||||
line-height: 1.5;
|
||||
}
|
||||
@@ -70,39 +70,46 @@
|
||||
<div class="function-item">
|
||||
<div class="function-icon">💾</div>
|
||||
<div class="function-text">
|
||||
<h3>私有云存储</h3>
|
||||
<p>搭建个人私有云,安全存储照片、视频、文档等重要资料</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">🔄</div>
|
||||
<div class="function-text">
|
||||
<h3>数据备份</h3>
|
||||
<p>自动备份手机、电脑数据,防止数据丢失,多重保护</p>
|
||||
<h3>NAS网络存储</h3>
|
||||
<p>支持飞牛NAS系统,打造家庭私有云,数据安全可控</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">🌐</div>
|
||||
<div class="function-text">
|
||||
<h3>千兆网络</h3>
|
||||
<p>配备千兆网口,传输速度快,满足日常文件共享需求</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">💿</div>
|
||||
<div class="function-text">
|
||||
<h3>单盘位设计</h3>
|
||||
<p>支持1块3.5寸机械硬盘,单SATA接口,灵活扩展</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">⚡</div>
|
||||
<div class="function-text">
|
||||
<h3>低功耗静音</h3>
|
||||
<p>超低功耗CPU,无风扇设计,静音运行7x24小时</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">🎨</div>
|
||||
<div class="function-text">
|
||||
<h3>透明亚克力</h3>
|
||||
<p>高透光亚克力机箱,清晰展示内部结构,科技感十足</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">📱</div>
|
||||
<div class="function-text">
|
||||
<h3>远程访问</h3>
|
||||
<p>随时随地远程访问,在外也能查看家中文件资料</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">👥</div>
|
||||
<div class="function-text">
|
||||
<h3>家庭共享</h3>
|
||||
<p>家庭成员共享存储空间,照片视频轻松分享</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="function-item">
|
||||
<div class="function-icon">🤖</div>
|
||||
<div class="function-text">
|
||||
<h3>智能家居</h3>
|
||||
<p>支持Home Assistant,打造智能家居控制中心</p>
|
||||
<p>支持手机、电脑远程访问,随时随地查看和管理文件</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
|
Before Width: | Height: | Size: 169 KiB After Width: | Height: | Size: 191 KiB |
125
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_包装展示.html
Normal file
@@ -0,0 +1,125 @@
|
||||
<!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: 35px;
|
||||
}
|
||||
.image-showcase {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 18px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
.showcase-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 12px;
|
||||
padding: 12px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.showcase-item img {
|
||||
width: 100%;
|
||||
height: 180px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.highlight-section {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 25px;
|
||||
border-radius: 12px;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.highlight-title {
|
||||
font-size: 28px;
|
||||
color: #00796b;
|
||||
font-weight: bold;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.highlight-list {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
.highlight-item {
|
||||
background: rgba(0, 150, 136, 0.1);
|
||||
padding: 10px 18px;
|
||||
border-radius: 8px;
|
||||
font-size: 20px;
|
||||
color: #004d40;
|
||||
font-weight: bold;
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">包装展示</div>
|
||||
<div class="subtitle">专业包装 · 安全送达</div>
|
||||
|
||||
<div class="image-showcase">
|
||||
<div class="showcase-item">
|
||||
<img src="../image/包装.jpg" alt="包装展示1">
|
||||
</div>
|
||||
<div class="showcase-item">
|
||||
<img src="../image/包装1.jpg" alt="包装展示2">
|
||||
</div>
|
||||
<div class="showcase-item">
|
||||
<img src="../image/包装2.jpg" alt="包装展示3">
|
||||
</div>
|
||||
<div class="showcase-item">
|
||||
<img src="../image/包装3.jpg" alt="包装展示4">
|
||||
</div>
|
||||
<div class="showcase-item">
|
||||
<img src="../image/包装5.jpg" alt="包装展示5">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="highlight-section">
|
||||
<div class="highlight-title">✨ 包装承诺</div>
|
||||
<div class="highlight-list">
|
||||
<div class="highlight-item">✓ 五层瓦楞纸箱</div>
|
||||
<div class="highlight-item">✓ 气泡膜防护</div>
|
||||
<div class="highlight-item">✓ 泡沫填充</div>
|
||||
<div class="highlight-item">✓ 独立包装</div>
|
||||
<div class="highlight-item">✓ 破损包赔</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_包装展示.png
Normal file
|
After Width: | Height: | Size: 383 KiB |
@@ -1,115 +0,0 @@
|
||||
<!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);
|
||||
}
|
||||
.points-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 30px;
|
||||
}
|
||||
.point-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.point-icon {
|
||||
font-size: 60px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.point-content h3 {
|
||||
font-size: 28px;
|
||||
color: #004d40;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.point-content p {
|
||||
font-size: 20px;
|
||||
color: #00796b;
|
||||
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>透明亚克力材质</h3>
|
||||
<p>高透光亚克力,清晰展示内部结构,科技感十足</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-item">
|
||||
<div class="point-icon">🎨</div>
|
||||
<div class="point-content">
|
||||
<h3>时尚外观设计</h3>
|
||||
<p>简约现代设计,透明机身,美观大方,适合各种环境</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-item">
|
||||
<div class="point-icon">⚡</div>
|
||||
<div class="point-content">
|
||||
<h3>低功耗静音</h3>
|
||||
<p>超低功耗设计,无风扇静音运行,7x24小时稳定</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-item">
|
||||
<div class="point-icon">🔧</div>
|
||||
<div class="point-content">
|
||||
<h3>易于维护</h3>
|
||||
<p>透明设计便于观察,拆卸方便,升级维护简单</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-item">
|
||||
<div class="point-icon">🌡️</div>
|
||||
<div class="point-content">
|
||||
<h3>散热优良</h3>
|
||||
<p>开放式设计,散热效果优异,保证系统稳定运行</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-item">
|
||||
<div class="point-icon">💰</div>
|
||||
<div class="point-content">
|
||||
<h3>超高性价比</h3>
|
||||
<p>入门级NAS首选,功能齐全,价格亲民</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 185 KiB |
|
Before Width: | Height: | Size: 139 KiB |
130
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_常见问题.html
Normal file
@@ -0,0 +1,130 @@
|
||||
<!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: 45px;
|
||||
}
|
||||
.qa-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 18px;
|
||||
}
|
||||
.qa-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 12px;
|
||||
padding: 22px 28px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.question {
|
||||
font-size: 24px;
|
||||
color: #004d40;
|
||||
font-weight: bold;
|
||||
margin-bottom: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
.question-icon {
|
||||
font-size: 26px;
|
||||
}
|
||||
.answer {
|
||||
font-size: 20px;
|
||||
color: #00796b;
|
||||
line-height: 1.6;
|
||||
padding-left: 36px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">常见问题</div>
|
||||
<div class="subtitle">答疑解惑 · 选购无忧</div>
|
||||
|
||||
<div class="qa-list">
|
||||
<div class="qa-item">
|
||||
<div class="question">
|
||||
<span class="question-icon">❓</span>
|
||||
产品是否支持双CPU?
|
||||
</div>
|
||||
<div class="answer">
|
||||
不支持。本产品采用单CPU设计,主板仅支持安装一颗CPU处理器。
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="qa-item">
|
||||
<div class="question">
|
||||
<span class="question-icon">❓</span>
|
||||
产品是否支持双内存条?
|
||||
</div>
|
||||
<div class="answer">
|
||||
不支持。主板仅有1个内存插槽,最大支持单条4G DDR3内存。
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="qa-item">
|
||||
<div class="question">
|
||||
<span class="question-icon">❓</span>
|
||||
产品是否支持双硬盘?
|
||||
</div>
|
||||
<div class="answer">
|
||||
不支持。亚克力机箱-单盘位设计,仅有1个SATA接口。如需双盘位,请选择双盘位产品。
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="qa-item">
|
||||
<div class="question">
|
||||
<span class="question-icon">❓</span>
|
||||
亚克力机箱组装难吗?
|
||||
</div>
|
||||
<div class="answer">
|
||||
组装简单。提供详细安装视频教程,约15-20分钟即可完成组装。亚克力板采用卡扣设计,无需胶水。
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="qa-item">
|
||||
<div class="question">
|
||||
<span class="question-icon">❓</span>
|
||||
产品是否需要自己安装系统?
|
||||
</div>
|
||||
<div class="answer">
|
||||
是的。产品已安装好硬件,系统需自行安装。我们提供飞牛NAS系统安装教程,操作简单。
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_常见问题.png
Normal file
|
After Width: | Height: | Size: 178 KiB |
86
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_购买须知.html
Normal file
@@ -0,0 +1,86 @@
|
||||
<!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: 60px;
|
||||
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);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.title {
|
||||
font-size: 60px;
|
||||
font-weight: bold;
|
||||
color: #00695c;
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
||||
}
|
||||
.notice-box {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 15px;
|
||||
padding: 40px;
|
||||
margin-bottom: 30px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.notice-title {
|
||||
font-size: 32px;
|
||||
color: #00796b;
|
||||
font-weight: bold;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 2px solid #b2dfdb;
|
||||
}
|
||||
.notice-content {
|
||||
font-size: 26px;
|
||||
color: #004d40;
|
||||
line-height: 1.8;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">购买须知</div>
|
||||
|
||||
<div class="notice-box">
|
||||
<div class="notice-title">
|
||||
📦 关于亚克力机箱
|
||||
</div>
|
||||
<div class="notice-content">
|
||||
亚克力机箱需要自己组装,店铺会提供安装视频
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="notice-box">
|
||||
<div class="notice-title">
|
||||
💰 关于产品
|
||||
</div>
|
||||
<div class="notice-content">
|
||||
受成本限制,产品无法做到十全十美,完美主义者慎拍
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_购买须知.png
Normal file
|
After Width: | Height: | Size: 140 KiB |
132
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_配件清单.html
Normal file
@@ -0,0 +1,132 @@
|
||||
<!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>
|
||||
BIN
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_配件清单.png
Normal file
|
After Width: | Height: | Size: 570 KiB |
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1000, height=1000">
|
||||
<title>配置清单 - 亚克力机箱</title>
|
||||
<title>配置清单 (1/2) - 飞牛NAS 亚克力机箱-单</title>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
@@ -18,44 +18,42 @@
|
||||
height: 100%;
|
||||
background: rgba(255, 255, 255, 0.85);
|
||||
border-radius: 20px;
|
||||
padding: 50px;
|
||||
padding: 45px;
|
||||
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-size: 52px;
|
||||
font-weight: bold;
|
||||
color: #00695c;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 15px;
|
||||
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
||||
}
|
||||
.subtitle {
|
||||
font-size: 28px;
|
||||
font-size: 26px;
|
||||
color: #4db6ac;
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.config-section {
|
||||
margin-bottom: 40px;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
color: #00796b;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
margin-bottom: 18px;
|
||||
padding-left: 18px;
|
||||
border-left: 5px solid #26a69a;
|
||||
}
|
||||
.config-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
gap: 15px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.config-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 20px 25px;
|
||||
padding: 15px 20px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@@ -64,12 +62,12 @@
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.config-label {
|
||||
font-size: 24px;
|
||||
font-size: 20px;
|
||||
color: #004d40;
|
||||
font-weight: bold;
|
||||
}
|
||||
.config-value {
|
||||
font-size: 24px;
|
||||
font-size: 20px;
|
||||
color: #26a69a;
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -78,51 +76,71 @@
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">配置清单 (1/2)</div>
|
||||
<div class="subtitle">亚克力机箱 透明系列</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">单SATA口</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">亚克力-双</span>
|
||||
<span class="config-value">双SATA口</span>
|
||||
</div>
|
||||
<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">CPU主板套装</span>
|
||||
<span class="config-value">6种可选</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">内存条</span>
|
||||
<span class="config-value">2G/4G</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">系统盘</span>
|
||||
<span class="config-value">16G-128G</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">电源适配器</span>
|
||||
<span class="config-value">12V 5A</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">硬盘线</span>
|
||||
<span class="config-value">SATA套装</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">CR2032电池</span>
|
||||
<span class="config-value">主板供电</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">网线</span>
|
||||
<span class="config-value">千兆网线</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="config-section">
|
||||
<div class="section-title">CPU处理器(可选)</div>
|
||||
<div class="config-grid">
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel N2840</span>
|
||||
<span class="config-value">双核 2.16GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel N2930</span>
|
||||
<span class="config-value">四核 1.83GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">AMD A4</span>
|
||||
<span class="config-value">双核 2.0GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel 1037U</span>
|
||||
<span class="config-value">双核 1.8GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel J1900</span>
|
||||
<span class="config-value">四核 2.0GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel J3160</span>
|
||||
<span class="config-value">四核 1.6GHz</span>
|
||||
</div>
|
||||
<div class="section-title">💾 可选CPU配置</div>
|
||||
<div class="config-grid">
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel N2840</span>
|
||||
<span class="config-value">双核 2.16GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel N2930</span>
|
||||
<span class="config-value">四核 1.83GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">AMD A4</span>
|
||||
<span class="config-value">双核 2.0GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel 1037U</span>
|
||||
<span class="config-value">双核 1.8GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel J1900</span>
|
||||
<span class="config-value">四核 2.0GHz</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">Intel J3160</span>
|
||||
<span class="config-value">四核 1.6GHz</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
|
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 201 KiB |
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=1000, height=1000">
|
||||
<title>配置清单 - 亚克力机箱</title>
|
||||
<title>配置清单 (2/2) - 飞牛NAS 亚克力机箱-单</title>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
@@ -24,7 +24,7 @@
|
||||
border: 2px solid rgba(255,255,255,0.6);
|
||||
}
|
||||
.title {
|
||||
font-size: 56px;
|
||||
font-size: 52px;
|
||||
font-weight: bold;
|
||||
color: #00695c;
|
||||
text-align: center;
|
||||
@@ -37,9 +37,6 @@
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.config-section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
@@ -51,11 +48,12 @@
|
||||
.config-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
gap: 18px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.config-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 20px 25px;
|
||||
padding: 18px 22px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@@ -64,12 +62,12 @@
|
||||
border: 1px solid rgba(38,166,154,0.3);
|
||||
}
|
||||
.config-label {
|
||||
font-size: 24px;
|
||||
font-size: 22px;
|
||||
color: #004d40;
|
||||
font-weight: bold;
|
||||
}
|
||||
.config-value {
|
||||
font-size: 24px;
|
||||
font-size: 22px;
|
||||
color: #26a69a;
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -78,47 +76,47 @@
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="title">配置清单 (2/2)</div>
|
||||
<div class="subtitle">亚克力机箱 透明系列</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">DDR3 2GB</span>
|
||||
<span class="config-value">入门配置</span>
|
||||
</div>
|
||||
<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 class="section-title">🔧 内存和存储选项</div>
|
||||
<div class="config-grid">
|
||||
<div class="config-item">
|
||||
<span class="config-label">内存容量</span>
|
||||
<span class="config-value">2G DDR3</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">内存容量</span>
|
||||
<span class="config-value">4G DDR3</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">系统盘容量</span>
|
||||
<span class="config-value">16G mSATA</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">系统盘容量</span>
|
||||
<span class="config-value">32G mSATA</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">系统盘容量</span>
|
||||
<span class="config-value">64G mSATA</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">系统盘容量</span>
|
||||
<span class="config-value">128G mSATA</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="config-section">
|
||||
<div class="section-title">系统盘容量(可选)</div>
|
||||
<div class="config-grid">
|
||||
<div class="config-item">
|
||||
<span class="config-label">mSATA 16GB</span>
|
||||
<span class="config-value">入门配置</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">mSATA 32GB</span>
|
||||
<span class="config-value">标准配置</span>
|
||||
</div>
|
||||
<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 class="section-title">💾 数据盘支持</div>
|
||||
<div class="config-grid">
|
||||
<div class="config-item">
|
||||
<span class="config-label">硬盘接口</span>
|
||||
<span class="config-value">单SATA口</span>
|
||||
</div>
|
||||
<div class="config-item">
|
||||
<span class="config-label">支持硬盘</span>
|
||||
<span class="config-value">3.5寸机械盘</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
|
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 167 KiB |