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, #00b894 0%, #55efc4 50%, #00b894 100%);
|
||
padding: 40px;
|
||
}
|
||
.container {
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
|
||
border-radius: 20px;
|
||
padding: 50px;
|
||
box-shadow: 0 20px 60px rgba(0,184,148,0.3), inset 0 2px 0 rgba(255,255,255,1);
|
||
border: 2px solid #55efc4;
|
||
}
|
||
.title {
|
||
font-size: 56px;
|
||
font-weight: bold;
|
||
color: #00b894;
|
||
text-align: center;
|
||
margin-bottom: 40px;
|
||
text-shadow: 0 2px 10px rgba(0,184,148,0.2);
|
||
}
|
||
.scenario-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 30px;
|
||
}
|
||
.scenario-item {
|
||
background: linear-gradient(135deg, #f0fff4 0%, #e3f9e7 100%);
|
||
border-radius: 15px;
|
||
padding: 30px;
|
||
text-align: center;
|
||
box-shadow: 0 4px 15px rgba(0,184,148,0.15);
|
||
border: 1px solid #81ecec;
|
||
}
|
||
.scenario-icon {
|
||
font-size: 70px;
|
||
margin-bottom: 15px;
|
||
}
|
||
.scenario-title {
|
||
font-size: 28px;
|
||
color: #00b894;
|
||
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">7x24小时稳定运行,无需人工值守</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |