This commit is contained in:
张威33321
2026-03-26 20:44:17 +08:00
parent db0ccb0264
commit 3b12c3f2af
56 changed files with 2939 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 40px;
}
.scenario-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.scenario-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
border-radius: 15px;
padding: 30px;
text-align: center;
}
.scenario-icon {
font-size: 70px;
margin-bottom: 15px;
}
.scenario-title {
font-size: 28px;
color: #333;
font-weight: bold;
margin-bottom: 10px;
}
.scenario-desc {
font-size: 20px;
color: #666;
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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

View File

@@ -0,0 +1,103 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 40px;
}
.function-list {
display: flex;
flex-direction: column;
gap: 25px;
}
.function-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
border-radius: 15px;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
}
.function-icon {
font-size: 50px;
flex-shrink: 0;
}
.function-text h3 {
font-size: 28px;
color: #333;
margin-bottom: 8px;
}
.function-text p {
font-size: 20px;
color: #666;
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>适合各类游戏挂机,长时间稳定运行不掉线</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 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>7x24小时运行</h3>
<p>低功耗设计,支持长时间稳定运行</p>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

View File

@@ -0,0 +1,110 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 40px;
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #333;
margin-bottom: 10px;
}
.point-content p {
font-size: 20px;
color: #666;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">商品卖点</div>
<div class="points-grid">
<div class="point-item">
<div class="point-icon">💪</div>
<div class="point-content">
<h3>多种机箱选择</h3>
<p>一拖一金属机箱,一拖三亚克力机箱,满足不同需求</p>
</div>
</div>
<div class="point-item">
<div class="point-icon"></div>
<div class="point-content">
<h3>低功耗静音</h3>
<p>超低功耗设计无风扇静音运行7x24小时稳定</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🏠</div>
<div class="point-content">
<h3>超小体积</h3>
<p>小巧机身设计,节省空间,适合多场景部署</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🔧</div>
<div class="point-content">
<h3>易于维护</h3>
<p>模块化设计,拆卸方便,升级维护简单快捷</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🔄</div>
<div class="point-content">
<h3>长时间运行</h3>
<p>专为挂机设计,支持长时间稳定运行不掉线</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💰</div>
<div class="point-content">
<h3>超高性价比</h3>
<p>挂机首选,功能齐全,价格亲民</p>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 KiB

View File

@@ -0,0 +1,81 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 40px;
}
.image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
height: calc(100% - 96px);
}
.image-box {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
border-radius: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px;
}
.image-placeholder {
font-size: 120px;
margin-bottom: 20px;
}
.image-label {
font-size: 28px;
color: #666;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">商品实拍图</div>
<div class="image-grid">
<div class="image-box">
<div class="image-placeholder">📷</div>
<div class="image-label">一拖一展示</div>
</div>
<div class="image-box">
<div class="image-placeholder">📷</div>
<div class="image-label">一拖三展示</div>
</div>
<div class="image-box">
<div class="image-placeholder">📷</div>
<div class="image-label">内部结构</div>
</div>
<div class="image-box">
<div class="image-placeholder">📷</div>
<div class="image-label">接口细节</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

View File

@@ -0,0 +1,118 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.subtitle {
font-size: 28px;
color: #666;
text-align: center;
margin-bottom: 50px;
}
.config-section {
margin-bottom: 40px;
flex: 1;
}
.section-title {
font-size: 32px;
font-weight: bold;
color: #667eea;
margin-bottom: 20px;
padding-left: 20px;
border-left: 5px solid #667eea;
}
.config-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.config-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
padding: 20px 25px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-label {
font-size: 24px;
color: #333;
font-weight: bold;
}
.config-value {
font-size: 24px;
color: #667eea;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">配置清单 (1/2)</div>
<div class="subtitle">挂机宝 迷你主机系列</div>
<div class="config-section">
<div class="section-title">机箱类型</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">一拖一</span>
<span class="config-value">2.5金属机箱</span>
</div>
<div class="config-item">
<span class="config-label">一拖三</span>
<span class="config-value">亚克力机箱</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">CPU处理器可选</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">Intel 1037U</span>
<span class="config-value">双核 1.8GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel i3-3217U</span>
<span class="config-value">双核 1.8GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel i3-5005U</span>
<span class="config-value">双核 2.0GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel 3855U</span>
<span class="config-value">双核 1.6GHz</span>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

View File

@@ -0,0 +1,124 @@
<!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, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.subtitle {
font-size: 28px;
color: #666;
text-align: center;
margin-bottom: 50px;
}
.config-section {
margin-bottom: 40px;
flex: 1;
}
.section-title {
font-size: 32px;
font-weight: bold;
color: #667eea;
margin-bottom: 20px;
padding-left: 20px;
border-left: 5px solid #667eea;
}
.config-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.config-item {
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
padding: 20px 25px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-label {
font-size: 24px;
color: #333;
font-weight: bold;
}
.config-value {
font-size: 24px;
color: #667eea;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">配置清单 (2/2)</div>
<div class="subtitle">挂机宝 迷你主机系列</div>
<div class="config-section">
<div class="section-title">内存容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">DDR3 4GB</span>
<span class="config-value">入门配置</span>
</div>
<div class="config-item">
<span class="config-label">DDR3 8GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">系统盘容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">mSATA 64GB</span>
<span class="config-value">标准配置</span>
</div>
<div class="config-item">
<span class="config-label">mSATA 128GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">可选配件</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">无线网卡</span>
<span class="config-value">可选</span>
</div>
<div class="config-item">
<span class="config-label">HD 500G硬盘</span>
<span class="config-value">一拖一可选</span>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB