117 lines
3.6 KiB
HTML
117 lines
3.6 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>飞牛NAS 主图2-产品特点</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;
|
||
padding: 40px 50px;
|
||
}
|
||
.title {
|
||
font-size: 64px;
|
||
font-weight: bold;
|
||
color: #00695c;
|
||
text-align: center;
|
||
margin-bottom: 60px;
|
||
padding-bottom: 25px;
|
||
border-bottom: 6px solid #b2dfdb;
|
||
text-shadow: 0 4px 20px rgba(0,105,92,0.2);
|
||
}
|
||
.features-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 40px;
|
||
width: 100%;
|
||
}
|
||
.feature-card {
|
||
background: rgba(255,255,255,0.85);
|
||
border-radius: 24px;
|
||
padding: 35px 40px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 20px;
|
||
box-shadow: 0 6px 24px rgba(0,0,0,0.08);
|
||
border: 2px solid rgba(38,166,154,0.3);
|
||
}
|
||
.feature-icon {
|
||
font-size: 72px;
|
||
flex-shrink: 0;
|
||
}
|
||
.feature-text h3 {
|
||
font-size: 40px;
|
||
color: #00695c;
|
||
margin-bottom: 0;
|
||
text-align: center;
|
||
}
|
||
.feature-content {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 20px;
|
||
}
|
||
.feature-content p {
|
||
font-size: 28px;
|
||
color: #004d40;
|
||
line-height: 1.5;
|
||
margin: 0;
|
||
}
|
||
.optional-tag {
|
||
font-size: 28px;
|
||
color: #ff6f00;
|
||
margin-left: 4px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="title">产品特点</div>
|
||
|
||
<div class="features-grid">
|
||
<div class="feature-card">
|
||
<div class="feature-text">
|
||
<h3>体积小巧</h3>
|
||
</div>
|
||
<div class="feature-content">
|
||
<div class="feature-icon">📦</div>
|
||
<p>18×19×7cm<br>节省空间</p>
|
||
</div>
|
||
</div>
|
||
<div class="feature-card">
|
||
<div class="feature-text">
|
||
<h3>低耗静音</h3>
|
||
</div>
|
||
<div class="feature-content">
|
||
<div class="feature-icon">⚡</div>
|
||
<p>待机功耗10W<br>100小时仅1度电</p>
|
||
</div>
|
||
</div>
|
||
<div class="feature-card">
|
||
<div class="feature-text">
|
||
<h3>WiFi联网<span class="optional-tag">(选配)</span></h3>
|
||
</div>
|
||
<div class="feature-content">
|
||
<div class="feature-icon">📶</div>
|
||
<p>支持WiFi<br>无需网线</p>
|
||
</div>
|
||
</div>
|
||
<div class="feature-card">
|
||
<div class="feature-text">
|
||
<h3>来电自启<span class="optional-tag">(选配)</span></h3>
|
||
</div>
|
||
<div class="feature-content">
|
||
<div class="feature-icon">🔌</div>
|
||
<p>断电后自动开机<br>无需手动操作</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |