Files
membank/产品/飞牛 NAS/fyd-亚克力机箱 - 单/主图/主图1-正面展示.html

200 lines
5.9 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>亚克力机箱-单 - 正面展示</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 800px;
height: 800px;
font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
background: linear-gradient(145deg, #0d2818 0%, #1a5f2a 30%, #2d8a3e 60%, #1a5f2a 100%);
position: relative;
overflow: hidden;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
/* 背景光晕效果 */
.glow {
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(144,238,144,0.15) 0%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -30%);
pointer-events: none;
}
/* 顶部标题 */
.header {
position: absolute;
top: 25px;
left: 0;
right: 0;
text-align: center;
z-index: 10;
}
.title {
font-size: 44px;
font-weight: bold;
color: #fff;
text-shadow: 0 2px 10px rgba(0,0,0,0.5);
letter-spacing: 4px;
}
.subtitle {
font-size: 22px;
color: #a8e6a8;
margin-top: 8px;
letter-spacing: 3px;
}
/* 产品展示台 */
.product-stage {
width: 520px;
height: 420px;
background: rgba(255,255,255,0.08);
border-radius: 30px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-top: 30px;
backdrop-filter: blur(5px);
border: 1px solid rgba(255,255,255,0.15);
box-shadow:
0 20px 60px rgba(0,0,0,0.3),
inset 0 1px 0 rgba(255,255,255,0.1);
}
/* 产品图片 */
.product-img-wrapper {
position: relative;
padding: 20px;
}
.product-img {
max-width: 420px;
max-height: 340px;
object-fit: contain;
border-radius: 15px;
box-shadow:
0 15px 40px rgba(0,0,0,0.4),
0 0 0 1px rgba(255,255,255,0.1);
}
/* 倒影效果 */
.product-reflection {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) scaleY(-1);
max-width: 420px;
max-height: 340px;
object-fit: contain;
opacity: 0.15;
filter: blur(3px);
mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
-webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
/* 卖点标签 */
.features {
position: absolute;
bottom: 110px;
display: flex;
gap: 15px;
z-index: 10;
}
.feature-tag {
background: linear-gradient(135deg, #fff 0%, #f0f8f0 100%);
padding: 10px 20px;
border-radius: 25px;
font-size: 18px;
color: #1a5f2a;
font-weight: bold;
box-shadow: 0 4px 20px rgba(0,0,0,0.25);
border: 1px solid rgba(255,255,255,0.5);
}
/* 底部信息 */
.footer {
position: absolute;
bottom: 35px;
text-align: center;
z-index: 10;
}
.brand {
font-size: 30px;
color: #fff;
font-weight: bold;
letter-spacing: 3px;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slogan {
font-size: 16px;
color: #a8e6a8;
margin-top: 5px;
}
/* 装饰元素 */
.deco-line {
position: absolute;
background: linear-gradient(90deg, transparent, rgba(144,238,144,0.3), transparent);
height: 1px;
}
.deco-1 {
top: 150px;
left: 100px;
right: 100px;
}
.deco-2 {
bottom: 180px;
left: 150px;
right: 150px;
}
</style>
</head>
<body>
<div class="container">
<!-- 背景光晕 -->
<div class="glow"></div>
<!-- 装饰线 -->
<div class="deco-line deco-1"></div>
<div class="deco-line deco-2"></div>
<!-- 顶部标题 -->
<div class="header">
<div class="title">飞牛 NAS 亚克力机箱</div>
<div class="subtitle">单盘位 · 迷你静音 · DIY组装</div>
</div>
<!-- 产品展示台 -->
<div class="product-stage">
<div class="product-img-wrapper">
<img src="../image/正面.jpg" alt="亚克力机箱正面" class="product-img">
<img src="../image/正面.jpg" alt="" class="product-reflection">
</div>
</div>
<!-- 卖点 -->
<div class="features">
<div class="feature-tag">亚克力透明</div>
<div class="feature-tag">迷你便携</div>
<div class="feature-tag">静音散热</div>
</div>
<!-- 底部品牌 -->
<div class="footer">
<div class="brand">飞牛 NAS</div>
<div class="slogan">专业NAS存储解决方案</div>
</div>
</div>
</body>
</html>