.cli-command {
    background: #f8f9fa;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 5px 5px 0;
}
.command-syntax {
    font-family: 'Consolas', monospace;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}
.option-table {
    margin: 20px 0;
}
.option-table th {
    background: #f5f5f5;
    font-weight: 600;
}
.option-table td {
    vertical-align: top;
}
.command-category {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}
.example-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}
.cli-cheatsheet {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.cheat-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}
.cheat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.command-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    margin-right: 5px;
    margin-bottom: 5px;
}
.alias {
    color: #666;
    font-style: italic;
    font-size: 0.9em;
}
.cli-flowchart {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}
.flow-step {
    display: inline-block;
    background: white;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 15px 25px;
    margin: 10px;
    position: relative;
}
.flow-arrow {
    display: inline-block;
    font-size: 24px;
    color: #2196f3;
}
.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.shortcut-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #4CAF50;
}
.deprecated {
    background: #fff3e0;
    border-left-color: #ff9800;
    position: relative;
}
.deprecated:before {
    content: "已弃用";
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
}
