- 主图1: 正面图放大,周围留白统一 - 主图2: 改为竖向排列,标题改为可选CPU和可选内存硬盘 - 主图3: 大图周围留白减少,右侧卖点填充满 - 主图4: 竖向排列,修改文案(包邮、详细教程、标配等) - 主图5: 调整底部间距,避免重叠
149 lines
4.5 KiB
HTML
149 lines
4.5 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(135deg, #f8fff8 0%, #e8f5e9 100%);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 30px 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
/* 顶部标题 */
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.title {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
color: #1a5f2a;
|
|
letter-spacing: 3px;
|
|
}
|
|
.subtitle {
|
|
font-size: 16px;
|
|
color: #4a8f5a;
|
|
margin-top: 5px;
|
|
}
|
|
/* 配置列表 - 竖向排列 */
|
|
.config-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
flex: 1;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.config-card {
|
|
width: 100%;
|
|
background: #fff;
|
|
border-radius: 15px;
|
|
padding: 15px 20px;
|
|
box-shadow: 0 8px 30px rgba(26, 95, 42, 0.15);
|
|
border: 2px solid #2d8a3e;
|
|
}
|
|
.config-title {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
color: #1a5f2a;
|
|
text-align: center;
|
|
margin-bottom: 12px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 3px solid #90ee90;
|
|
}
|
|
.config-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
}
|
|
.config-tag {
|
|
display: inline-block;
|
|
background: #e8f5e9;
|
|
color: #1a5f2a;
|
|
padding: 6px 14px;
|
|
border-radius: 15px;
|
|
font-size: 15px;
|
|
}
|
|
/* 底部强调 */
|
|
.footer {
|
|
background: linear-gradient(90deg, #1a5f2a, #2d8a3e);
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
.footer-text {
|
|
font-size: 20px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
letter-spacing: 2px;
|
|
}
|
|
/* 装饰 */
|
|
.deco-line {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 8px;
|
|
background: linear-gradient(90deg, #1a5f2a, #90ee90, #1a5f2a);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="deco-line"></div>
|
|
<div class="container">
|
|
<!-- 顶部标题 -->
|
|
<div class="header">
|
|
<div class="title">亚克力机箱-单</div>
|
|
<div class="subtitle">灵活配置 · 满足多样需求</div>
|
|
</div>
|
|
|
|
<!-- 配置展示 - 竖向排列 -->
|
|
<div class="config-section">
|
|
<div class="config-card">
|
|
<div class="config-title">可选 CPU</div>
|
|
<div class="config-tags">
|
|
<span class="config-tag">N2840</span>
|
|
<span class="config-tag">N2930</span>
|
|
<span class="config-tag">AMD A4</span>
|
|
<span class="config-tag">1037U</span>
|
|
<span class="config-tag">J1900</span>
|
|
<span class="config-tag">J3160</span>
|
|
<span class="config-tag">i3</span>
|
|
</div>
|
|
</div>
|
|
<div class="config-card">
|
|
<div class="config-title">可选内存硬盘</div>
|
|
<div class="config-tags">
|
|
<span class="config-tag">2G-16G</span>
|
|
<span class="config-tag">2G-32G</span>
|
|
<span class="config-tag">4G-64G</span>
|
|
<span class="config-tag">4G-128G</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 底部强调 -->
|
|
<div class="footer">
|
|
<div class="footer-text">单 SATA 接口 · 适配所有单盘位主板</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |