feat: 为亚克力机箱-单生成5张主图及转换脚本
This commit is contained in:
209
产品/飞牛 NAS/fyd-亚克力机箱 - 单/主图/主图4-包装展示.html
Normal file
209
产品/飞牛 NAS/fyd-亚克力机箱 - 单/主图/主图4-包装展示.html
Normal file
@@ -0,0 +1,209 @@
|
||||
<!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(180deg, #1a5f2a 0%, #2d8a3e 40%, #f8fff8 40%, #f8fff8 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
padding: 40px;
|
||||
}
|
||||
/* 顶部标题区 */
|
||||
.header {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.title {
|
||||
font-size: 44px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
||||
letter-spacing: 4px;
|
||||
}
|
||||
.subtitle {
|
||||
font-size: 24px;
|
||||
color: #90ee90;
|
||||
margin-top: 10px;
|
||||
}
|
||||
/* 包装内容区 */
|
||||
.package-section {
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
/* 左侧包装图 */
|
||||
.package-image {
|
||||
flex: 1;
|
||||
background: #fff;
|
||||
border-radius: 20px;
|
||||
padding: 25px;
|
||||
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.package-img-container {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
background: #f5f5f5;
|
||||
border-radius: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.package-img-container img {
|
||||
max-width: 90%;
|
||||
max-height: 90%;
|
||||
object-fit: contain;
|
||||
}
|
||||
.package-label {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #1a5f2a;
|
||||
}
|
||||
/* 右侧清单 */
|
||||
.checklist {
|
||||
flex: 1;
|
||||
background: #fff;
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
|
||||
}
|
||||
.checklist-title {
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
color: #1a5f2a;
|
||||
text-align: center;
|
||||
margin-bottom: 25px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 3px solid #90ee90;
|
||||
}
|
||||
.checklist-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
font-size: 22px;
|
||||
color: #333;
|
||||
}
|
||||
.check-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background: #2d8a3e;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
margin-right: 15px;
|
||||
font-size: 18px;
|
||||
}
|
||||
/* 底部保障 */
|
||||
.guarantee {
|
||||
position: absolute;
|
||||
bottom: 40px;
|
||||
left: 40px;
|
||||
right: 40px;
|
||||
background: linear-gradient(90deg, #1a5f2a, #2d8a3e);
|
||||
border-radius: 15px;
|
||||
padding: 25px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
.guarantee-item {
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
.guarantee-icon {
|
||||
font-size: 36px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.guarantee-text {
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- 顶部标题 -->
|
||||
<div class="header">
|
||||
<div class="title">专业包装 · 安全送达</div>
|
||||
<div class="subtitle">配件齐全 · 安装无忧</div>
|
||||
</div>
|
||||
|
||||
<!-- 包装内容 -->
|
||||
<div class="package-section">
|
||||
<!-- 包装图 -->
|
||||
<div class="package-image">
|
||||
<div class="package-img-container">
|
||||
<img src="../image/包装1.jpg" alt="产品包装">
|
||||
</div>
|
||||
<div class="package-label">精美包装</div>
|
||||
</div>
|
||||
|
||||
<!-- 配件清单 -->
|
||||
<div class="checklist">
|
||||
<div class="checklist-title">包装清单</div>
|
||||
<div class="checklist-item">
|
||||
<div class="check-icon">✓</div>
|
||||
<span>亚克力机箱主体</span>
|
||||
</div>
|
||||
<div class="checklist-item">
|
||||
<div class="check-icon">✓</div>
|
||||
<span>安装螺丝包</span>
|
||||
</div>
|
||||
<div class="checklist-item">
|
||||
<div class="check-icon">✓</div>
|
||||
<span>SATA数据线</span>
|
||||
</div>
|
||||
<div class="checklist-item">
|
||||
<div class="check-icon">✓</div>
|
||||
<span>电源适配器(选配)</span>
|
||||
</div>
|
||||
<div class="checklist-item">
|
||||
<div class="check-icon">✓</div>
|
||||
<span>安装说明书+视频教程</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 底部保障 -->
|
||||
<div class="guarantee">
|
||||
<div class="guarantee-item">
|
||||
<div class="guarantee-icon">🚚</div>
|
||||
<div class="guarantee-text">顺丰包邮</div>
|
||||
</div>
|
||||
<div class="guarantee-item">
|
||||
<div class="guarantee-icon">🛡️</div>
|
||||
<div class="guarantee-text">破损包赔</div>
|
||||
</div>
|
||||
<div class="guarantee-item">
|
||||
<div class="guarantee-icon">📞</div>
|
||||
<div class="guarantee-text">技术支持</div>
|
||||
</div>
|
||||
<div class="guarantee-item">
|
||||
<div class="guarantee-icon">↩️</div>
|
||||
<div class="guarantee-text">7天退换</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user