初始提交 - FutureOSS v1.0 插件化运行时框架

一切皆为插件的开发者工具运行时框架

🧩 核心特性:
  - 插件热插拔 (importlib 动态加载)
  - 依赖自动解析 (拓扑排序 + 循环检测)
  - 企业级稳定 (熔断/降级/重试/隔离)
  - 事件驱动 (发布/订阅事件总线)
  - 完整配置 (YAML 配置 + 热重载)
This commit is contained in:
Falck
2026-04-06 09:57:10 +08:00
commit 76147bae94
174 changed files with 15626 additions and 0 deletions

52
website/css/stats.css Normal file
View File

@@ -0,0 +1,52 @@
/* ===== 统计区域 ===== */
#stats {
padding: 80px 0;
position: relative;
z-index: 1;
background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.05));
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
max-width: 1000px;
margin: 0 auto;
text-align: center;
}
.stat-card {
padding: 24px;
}
.stat-number {
font-size: 48px;
font-weight: 900;
background: linear-gradient(135deg, var(--cyan), var(--blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-suffix {
font-size: 32px;
font-weight: 800;
background: linear-gradient(135deg, var(--cyan), var(--blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
display: block;
margin-top: 8px;
font-size: 16px;
color: var(--text-muted);
font-weight: 500;
}
@media (max-width: 768px) {
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}