初始提交 - 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

98
website/css/features.css Normal file
View File

@@ -0,0 +1,98 @@
/* ===== 特性区域 ===== */
#features {
padding: 120px 0;
position: relative;
z-index: 1;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.feature-card {
background: var(--bg-glass);
border: 1px solid var(--border);
border-radius: 20px;
padding: 32px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), transparent);
opacity: 0;
transition: opacity 0.4s;
}
.feature-card:hover {
border-color: var(--border-hover);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
width: 56px;
height: 56px;
border-radius: 14px;
background: linear-gradient(135deg, var(--cyan), var(--blue));
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: transform 0.3s;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
.feature-icon svg {
width: 28px;
height: 28px;
color: #fff;
}
.feature-card h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
}
.feature-card p {
font-size: 15px;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 20px;
}
.feature-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.feature-tags span {
padding: 4px 12px;
border-radius: 6px;
background: rgba(6, 182, 212, 0.08);
border: 1px solid rgba(6, 182, 212, 0.15);
color: var(--cyan-light);
font-size: 12px;
font-weight: 500;
}
@media (max-width: 1024px) {
.features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.features-grid { grid-template-columns: 1fr; }
}