一切皆为插件的开发者工具运行时框架
🧩 核心特性:
- 插件热插拔 (importlib 动态加载)
- 依赖自动解析 (拓扑排序 + 循环检测)
- 企业级稳定 (熔断/降级/重试/隔离)
- 事件驱动 (发布/订阅事件总线)
- 完整配置 (YAML 配置 + 热重载)
47 lines
874 B
CSS
47 lines
874 B
CSS
/* ===== 社区区域 ===== */
|
|
#community {
|
|
padding: 120px 0;
|
|
background: var(--bg-secondary);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.community-content {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.community-links {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 24px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.community-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 20px 32px;
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.community-card:hover {
|
|
border-color: var(--border-hover);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 30px rgba(6, 182, 212, 0.1);
|
|
}
|
|
|
|
.community-card svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
color: var(--cyan);
|
|
}
|