165 lines
4.8 KiB
HTML
165 lines
4.8 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: 40px;
|
|
position: relative;
|
|
}
|
|
/* 顶部标题 */
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.title {
|
|
font-size: 42px;
|
|
font-weight: bold;
|
|
color: #1a5f2a;
|
|
letter-spacing: 3px;
|
|
}
|
|
.subtitle {
|
|
font-size: 22px;
|
|
color: #4a8f5a;
|
|
margin-top: 8px;
|
|
}
|
|
/* 配置列表 */
|
|
.config-section {
|
|
display: flex;
|
|
gap: 30px;
|
|
margin-top: 20px;
|
|
}
|
|
.config-card {
|
|
flex: 1;
|
|
background: #fff;
|
|
border-radius: 20px;
|
|
padding: 30px;
|
|
box-shadow: 0 8px 30px rgba(26, 95, 42, 0.15);
|
|
border: 2px solid #2d8a3e;
|
|
}
|
|
.config-title {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
color: #1a5f2a;
|
|
text-align: center;
|
|
margin-bottom: 25px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 3px solid #90ee90;
|
|
}
|
|
.config-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 18px;
|
|
font-size: 20px;
|
|
color: #333;
|
|
}
|
|
.config-label {
|
|
width: 100px;
|
|
font-weight: bold;
|
|
color: #2d8a3e;
|
|
}
|
|
.config-value {
|
|
flex: 1;
|
|
color: #555;
|
|
}
|
|
.config-tag {
|
|
display: inline-block;
|
|
background: #e8f5e9;
|
|
color: #1a5f2a;
|
|
padding: 4px 12px;
|
|
border-radius: 15px;
|
|
font-size: 16px;
|
|
margin-right: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
/* 底部强调 */
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 40px;
|
|
left: 40px;
|
|
right: 40px;
|
|
background: linear-gradient(90deg, #1a5f2a, #2d8a3e);
|
|
border-radius: 15px;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
.footer-text {
|
|
font-size: 26px;
|
|
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-item">
|
|
<span class="config-value">
|
|
<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>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="config-card">
|
|
<div class="config-title">内存配置</div>
|
|
<div class="config-item">
|
|
<span class="config-value">
|
|
<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>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 底部强调 -->
|
|
<div class="footer">
|
|
<div class="footer-text">单 SATA 接口 · 适配所有单盘位主板</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|