feat: 更新亚克力机箱-单详情页及 skills 配置优化
This commit is contained in:
125
产品/飞牛 NAS/fyd-亚克力机箱 - 单/详情/亚克力机箱-单_包装展示.html
Normal file
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>
|
||||
Reference in New Issue
Block a user