init: sxbh.ltd 官网初始提交
- nginx 安全加固 (CSP, HSTS, 缓存策略) - 共享 style.css - 138个页面全部接入 Co-authored-by: Hermes AI <agent@hermes>
This commit is contained in:
+131
@@ -0,0 +1,131 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>博海网络科技 · 行业应用开发</title>
|
||||
<meta name="description" content="陕西博海网络科技 — 行业应用Web开发服务,企业管理系统定制开发。">
|
||||
<style>
|
||||
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html, body { height: 100%; }
|
||||
body {
|
||||
font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
||||
background: linear-gradient(135deg, #0f1f4a 0%, #1a3380 50%, #0f1f4a 100%);
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding: 24px;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
max-width: 640px;
|
||||
}
|
||||
.icon {
|
||||
font-size: 72px;
|
||||
margin-bottom: 24px;
|
||||
display: block;
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
@keyframes pulse {
|
||||
0%, 100% { transform: scale(1); opacity: 1; }
|
||||
50% { transform: scale(1.08); opacity: 0.85; }
|
||||
}
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.badge {
|
||||
display: inline-block;
|
||||
padding: 6px 20px;
|
||||
border-radius: 20px;
|
||||
background: rgba(255,255,255,.12);
|
||||
border: 1px solid rgba(255,255,255,.15);
|
||||
font-size: 13px;
|
||||
margin-bottom: 20px;
|
||||
color: #f59e0b;
|
||||
}
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.8;
|
||||
color: rgba(255,255,255,.7);
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.features {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 16px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.feature {
|
||||
background: rgba(255,255,255,.06);
|
||||
border-radius: 12px;
|
||||
padding: 20px 16px;
|
||||
border: 1px solid rgba(255,255,255,.08);
|
||||
}
|
||||
.feature .emoji { font-size: 28px; display: block; margin-bottom: 8px; }
|
||||
.feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
|
||||
.feature p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 0; }
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 14px 32px;
|
||||
border-radius: 8px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all .25s;
|
||||
background: #fff;
|
||||
color: #0f1f4a;
|
||||
}
|
||||
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
|
||||
.back-link {
|
||||
display: inline-block;
|
||||
margin-top: 24px;
|
||||
color: rgba(255,255,255,.4);
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
transition: color .2s;
|
||||
}
|
||||
.back-link:hover { color: rgba(255,255,255,.7); }
|
||||
</style>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<span class="icon">🔧</span>
|
||||
<div class="badge">📱 行业应用开发 · 正在建设中</div>
|
||||
<h1>行业应用开发服务</h1>
|
||||
<p>我们正在全力打造新一代行业应用开发服务体系,<br>为企业提供高效、稳定、可扩展的数字化解决方案。</p>
|
||||
<div class="features">
|
||||
<div class="feature">
|
||||
<span class="emoji">🌐</span>
|
||||
<h4>企业官网</h4>
|
||||
<p>品牌展示型网站</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<span class="emoji">📊</span>
|
||||
<h4>管理后台</h4>
|
||||
<p>企业管理系统定制</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<span class="emoji">📱</span>
|
||||
<h4>小程序</h4>
|
||||
<p>微信小程序开发</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<span class="emoji">⚙️</span>
|
||||
<h4>系统定制</h4>
|
||||
<p>行业专属解决方案</p>
|
||||
</div>
|
||||
</div>
|
||||
<a href="tel:09124223980" class="btn">📞 提前咨询:0912-4223980</a>
|
||||
<br>
|
||||
<a href="https://sxbh.ltd" class="back-link">← 返回博海网络科技首页</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user