Files
membank/产品/win 小主机/龙虾盒子/详情/龙虾盒子_功能描述.html
张威33321 398fcf9aff 0328
2026-03-28 18:08:56 +08:00

107 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>功能描述 - 龙虾盒子</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, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(255,107,107,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #ff8e53;
}
.title {
font-size: 56px;
font-weight: bold;
color: #d63031;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(214,48,49,0.2);
}
.function-list {
display: flex;
flex-direction: column;
gap: 25px;
}
.function-item {
background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
border-radius: 15px;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
box-shadow: 0 4px 15px rgba(255,107,107,0.15);
border: 1px solid #ffb399;
}
.function-icon {
font-size: 50px;
flex-shrink: 0;
}
.function-text h3 {
font-size: 28px;
color: #d63031;
margin-bottom: 8px;
}
.function-text p {
font-size: 20px;
color: #636e72;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">功能描述</div>
<div class="function-list">
<div class="function-item">
<div class="function-icon">💻</div>
<div class="function-text">
<h3>Windows系统</h3>
<p>预装Windows系统开机即用兼容所有Windows软件</p>
</div>
</div>
<div class="function-item">
<div class="function-icon">🎮</div>
<div class="function-text">
<h3>轻度游戏</h3>
<p>支持轻度游戏,流畅运行主流网游和经典游戏</p>
</div>
</div>
<div class="function-item">
<div class="function-icon">📺</div>
<div class="function-text">
<h3>影音娱乐</h3>
<p>4K视频播放连接电视变身家庭影院中心</p>
</div>
</div>
<div class="function-item">
<div class="function-icon">💼</div>
<div class="function-text">
<h3>办公应用</h3>
<p>流畅运行Office办公软件满足日常办公需求</p>
</div>
</div>
<div class="function-item">
<div class="function-icon">🌐</div>
<div class="function-text">
<h3>网络浏览</h3>
<p>流畅浏览网页,在线视频,社交媒体一网打尽</p>
</div>
</div>
</div>
</div>
</body>
</html>