/* ── OpenClaw 部署页 ── */

/* 部署对比表 */
.deploy-compare {
    margin-bottom: 1.5rem;
}

.tut-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
    display: inline-block;
}

.deploy-table-wrap {
    overflow-x: auto;
}

.deploy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.deploy-table th,
.deploy-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e8eaf0;
}

.deploy-table th {
    background: #f8faff;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.deploy-table td:first-child {
    font-weight: 500;
    color: #555;
}

/* 平台标签复用安装页样式 */
.inst-platform-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.inst-tab {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    background: #fafbfc;
    color: #666;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    border-right: 1px solid #e0e0e0;
}

.inst-tab:last-child {
    border-right: none;
}

.inst-tab:hover {
    background: #f0f4ff;
    color: #2563eb;
}

.inst-tab.active {
    background: #2563eb;
    color: white;
}

/* 部署面板 */
.deploy-panel {
    display: none;
}

.deploy-panel.active {
    display: block;
}

.deploy-panel h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.deploy-step {
    margin-bottom: 1rem;
}

.deploy-step strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.4rem;
}

.inst-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.inst-hint {
    font-size: 0.82rem;
    color: #888;
    margin-top: 0.4rem;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .inst-tab {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }

    .deploy-table {
        font-size: 0.82rem;
    }
}
