Files
membank/产品/飞牛 NAS/fyd-亚克力机箱 - 单/主图/主图5-尺寸展示.html
12600k-rog-d4 5981a34e9c 优化亚克力机箱-单产品SKU配置和主图设计
- 删除N2840的2G-32G、4G-64G、4G-128G配置
- 删除AMD-A4的4G-128G配置
- 更新产品价格汇总表(32款→28款)
- 完善主图和详情页设计
- 添加来电自启功能说明
- 清理冗余图片文件
2026-04-08 01:06:45 +08:00

104 lines
3.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>飞牛NAS 主图5-尺寸展示</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%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: 80px 60px;
}
.nas-badge {
position: absolute;
top: 60px;
background: linear-gradient(135deg, #26a69a, #00897b);
color: #ffffff;
font-size: 28px;
font-weight: bold;
padding: 16px 60px;
border-radius: 30px;
letter-spacing: 4px;
box-shadow: 0 8px 30px rgba(38,166,154,0.4);
}
.main-title {
font-size: 72px;
font-weight: bold;
color: #00695c;
text-shadow: 0 4px 20px rgba(0,105,92,0.2);
letter-spacing: 6px;
margin-bottom: 20px;
}
.subtitle {
font-size: 48px;
color: #e65100;
font-weight: bold;
margin-bottom: 50px;
}
.product-images {
display: flex;
gap: 40px;
margin-bottom: 50px;
align-items: center;
justify-content: center;
}
.product-image {
width: 400px;
height: 300px;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.size-info {
text-align: center;
}
.size-label {
font-size: 36px;
color: #004d40;
margin-bottom: 15px;
}
.size-value {
font-size: 56px;
color: #00695c;
font-weight: bold;
letter-spacing: 4px;
}
</style>
</head>
<body>
<div class="container">
<div class="nas-badge">飞牛私有云NAS</div>
<div class="main-title">亚克力机箱—单盘位</div>
<div class="subtitle">适配3.5/2.5寸机械硬盘</div>
<div class="product-images">
<img src="../image/侧面.jpg" alt="侧面" class="product-image">
<img src="../image/俯视图.jpg" alt="俯视" class="product-image">
</div>
<div class="size-info">
<div class="size-label">单盘位机箱尺寸</div>
<div class="size-value">19cm × 18cm × 7cm</div>
</div>
</div>
</body>
</html>