Files
membank/产品/linux主机/详情/Linux主机_功能描述.html
12600k-rog-d4 90d5c516c9 修复P0系统性价格错误:配件价格调整及SKU配置更新
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+个文件
2026-04-23 00:23:11 +08:00

101 lines
3.3 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>功能描述 - 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, #4facfe 0%, #00f2fe 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #e0f7ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(79,172,254,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #7dd3fc;
}
.title {
font-size: 56px;
font-weight: bold;
color: #0284c7;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(2,132,199,0.2);
}
.feature-list {
display: flex;
flex-direction: column;
gap: 25px;
}
.feature-item {
background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 100%);
border-radius: 15px;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
box-shadow: 0 4px 15px rgba(2,132,199,0.15);
border: 1px solid #93c5fd;
}
.feature-icon {
font-size: 56px;
flex-shrink: 0;
}
.feature-content h3 {
font-size: 28px;
color: #0369a1;
margin-bottom: 8px;
}
.feature-content p {
font-size: 20px;
color: #0c4a6e;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">功能描述</div>
<div class="feature-list">
<div class="feature-item">
<div class="feature-icon">🚀</div>
<div class="feature-content">
<h3>预装LNMP开发环境</h3>
<p>预装Nginx、Apache、MySQL、PHP开箱即用快速搭建网站</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">📝</div>
<div class="feature-content">
<h3>多语言开发支持</h3>
<p>完美支持Python、Java、Go、Node.js、Rust等主流开发语言</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">🔐</div>
<div class="feature-content">
<h3>SSH远程访问</h3>
<p>支持SSH远程登录随时随地管理服务器进行开发调试</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">📂</div>
<div class="feature-content">
<h3>Git代码仓库</h3>
<p>内置Git服务轻松管理代码版本支持团队协作开发</p>
</div>
</div>
</div>
</div>
</body>
</html>