91 lines
3.1 KiB
HTML
91 lines
3.1 KiB
HTML
<!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);
|
|
}
|
|
.scenario-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
}
|
|
.scenario-item {
|
|
background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 15px rgba(255,107,107,0.15);
|
|
border: 1px solid #ffb399;
|
|
}
|
|
.scenario-icon {
|
|
font-size: 70px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.scenario-title {
|
|
font-size: 28px;
|
|
color: #d63031;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
.scenario-desc {
|
|
font-size: 20px;
|
|
color: #636e72;
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="title">使用场景</div>
|
|
|
|
<div class="scenario-grid">
|
|
<div class="scenario-item">
|
|
<div class="scenario-icon">🏠</div>
|
|
<div class="scenario-title">家庭娱乐</div>
|
|
<div class="scenario-desc">连接电视,变身家庭影院,享受影音娱乐</div>
|
|
</div>
|
|
<div class="scenario-item">
|
|
<div class="scenario-icon">💼</div>
|
|
<div class="scenario-title">移动办公</div>
|
|
<div class="scenario-desc">小巧便携,随身携带,随时随地办公</div>
|
|
</div>
|
|
<div class="scenario-item">
|
|
<div class="scenario-icon">🎮</div>
|
|
<div class="scenario-title">轻度游戏</div>
|
|
<div class="scenario-desc">流畅运行主流网游,享受游戏乐趣</div>
|
|
</div>
|
|
<div class="scenario-item">
|
|
<div class="scenario-icon">📚</div>
|
|
<div class="scenario-title">在线学习</div>
|
|
<div class="scenario-desc">流畅观看网课,在线学习,提升自我</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |