Files
membank/产品/win 小主机/win10小主机/详情/win10小主机_功能描述.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>功能描述 - win10小主机</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, #0984e3 0%, #74b9ff 50%, #0984e3 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(9,132,227,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #74b9ff;
}
.title {
font-size: 56px;
font-weight: bold;
color: #0984e3;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(9,132,227,0.2);
}
.function-list {
display: flex;
flex-direction: column;
gap: 25px;
}
.function-item {
background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
border-radius: 15px;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
box-shadow: 0 4px 15px rgba(9,132,227,0.15);
border: 1px solid #90caf9;
}
.function-icon {
font-size: 50px;
flex-shrink: 0;
}
.function-text h3 {
font-size: 28px;
color: #0984e3;
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>办公应用</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 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>支持轻度游戏,流畅运行主流网游和经典游戏</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>