/* 移动端适配优化 */
@media (max-width: 768px) {
    .panel-body .row > div[class*="col-"] {
        margin-bottom: 8px;
    }
    .btn-block {
        font-size: 14px;
        padding: 8px 10px;
    }
    /* 游戏画布适配 */
    canvas {
        max-width: 100% !important;
        height: auto !important;
        touch-action: none;
    }
    /* 编辑器区域 */
    textarea {
        font-size: 16px !important; /* 防止 iOS 自动缩放 */
    }
    /* 搜索框 */
    .input-group-lg > .form-control {
        font-size: 16px;
    }
    /* 比较工具 */
    .d2h-file-side-diff {
        width: 100% !important;
        display: block !important;
    }
    /* 面板间距 */
    .panel {
        margin-bottom: 12px;
    }
    .panel-heading {
        font-size: 14px;
    }
    /* 面包屑 */
    .breadcrumb {
        padding: 6px 10px;
        font-size: 12px;
    }
}
