1. 配件清单更新: - 新增3217U CPU价格定义:¥55(i3-2代) - 新增5005U CPU价格定义:¥150(i3-5代) - 确认3855U正确价格:¥80 2. SKU价格修正(D3-4G/8G、mSATA-32G/64G): - D3-4G: ¥38 → ¥25 - D3-8G: ¥120 → ¥75 - mSATA-32G: ¥25 → ¥20 - mSATA-64G: ¥45 → ¥40 3. CPU价格修正: - 3217U: ¥65 → ¥55 - 5005U: ¥80 → ¥150 - 3855U: ¥75 → ¥80 4. Linux主机SKU更新: - 仅保留2G-16G配置 - 3855U CPU价格修正 5. 修复文件统计: - fys亚克力-双:12个SKU - fjx金属3.5寸小:24个SKU - fjd金属3.5寸大:24个SKU - 龙虾盒子:6个SKU - 挂机宝:24个SKU - win10小主机:24个SKU - 总计:102+个文件
91 lines
2.9 KiB
HTML
91 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=1000, height=1000">
|
||
<title>使用场景 - Linux主机</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, #11998e 0%, #38ef7d 100%);
|
||
padding: 40px;
|
||
}
|
||
.container {
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(135deg, #ffffff 0%, #e6fff0 100%);
|
||
border-radius: 20px;
|
||
padding: 50px;
|
||
box-shadow: 0 20px 60px rgba(17,153,142,0.3), inset 0 2px 0 rgba(255,255,255,1);
|
||
border: 2px solid #81e6d9;
|
||
}
|
||
.title {
|
||
font-size: 56px;
|
||
font-weight: bold;
|
||
color: #11998e;
|
||
text-align: center;
|
||
margin-bottom: 40px;
|
||
text-shadow: 0 2px 10px rgba(17,153,142,0.2);
|
||
}
|
||
.scene-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 30px;
|
||
}
|
||
.scene-item {
|
||
background: linear-gradient(135deg, #e6fff0 0%, #c6f6d5 100%);
|
||
border-radius: 15px;
|
||
padding: 30px;
|
||
text-align: center;
|
||
box-shadow: 0 4px 15px rgba(17,153,142,0.15);
|
||
border: 1px solid #9ae6b4;
|
||
}
|
||
.scene-icon {
|
||
font-size: 72px;
|
||
margin-bottom: 20px;
|
||
}
|
||
.scene-item h3 {
|
||
font-size: 30px;
|
||
color: #11998e;
|
||
margin-bottom: 15px;
|
||
}
|
||
.scene-item p {
|
||
font-size: 20px;
|
||
color: #276749;
|
||
line-height: 1.5;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div class="title">使用场景</div>
|
||
|
||
<div class="scene-grid">
|
||
<div class="scene-item">
|
||
<div class="scene-icon">🌐</div>
|
||
<h3>网站服务器</h3>
|
||
<p>搭建个人网站、博客、企业官网,LNMP环境一键部署</p>
|
||
</div>
|
||
<div class="scene-item">
|
||
<div class="scene-icon">💻</div>
|
||
<h3>开发环境</h3>
|
||
<p>代码调试、测试部署、Git仓库,随时随地开发</p>
|
||
</div>
|
||
<div class="scene-item">
|
||
<div class="scene-icon">🐳</div>
|
||
<h3>Docker容器</h3>
|
||
<p>运行各类Docker应用,快速部署服务</p>
|
||
</div>
|
||
<div class="scene-item">
|
||
<div class="scene-icon">📊</div>
|
||
<h3>数据库服务</h3>
|
||
<p>MySQL、PostgreSQL、MongoDB,数据存储首选</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|