body {
     cursor:pointer;    
 }


/* important section */
.jsmind-inner {
    position: relative;
    overflow: auto;
    width: 100%;
    height: 100%;
    outline: none;
}
.jsmind-inner {
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jsmind-inner canvas {
    position: absolute;
}

/* z-index:1 */
svg.jsmind {
    position: absolute;
    z-index: 1;
}
canvas.jsmind {
    position: absolute;
    z-index: 1;
}



/* 我自己加的 */
/* ---------- */

.mypanel {
    position: fixed;
    top: 30px;
    left: 30px;
    list-style: none;
    z-index: 9999;
}

.jsmind, .theme-primary { /* 全靠左太难看，放右边一点 */
    /* margin-left: 30%; */
}
.jsmind-inner.jmnode-overflow-wrap {
    background: #b1b1b1;
}

/* ---------- */
/* end */



/* z-index:2 */
jmnodes {
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
} /*background color is necessary*/
jmnode {
    position: absolute;
    cursor: default;
    max-width: 400px;
}
jmexpander {
    position: absolute;
    width: 11px;
    height: 11px;
    display: block;
    overflow: hidden;
    line-height: 12px;
    font-size: 10px;
    text-align: center;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
}

.jmnode-overflow-wrap jmnodes {
    min-width: 420px;
}

.jmnode-overflow-hidden jmnode {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* default theme */
jmnode {
    padding: 10px;
    background-color: #e8ecff;
    color: #333;
    border-radius: 5px;
    font: 16px/1.125 Verdana, Arial, Helvetica, sans-serif;
}
jmnode:hover {
    background-color: #ebebeb;
    color: #333;
    cursor: pointer;
}
jmnode.selected {
    background-color: #cacaca;
jmnode.root {
    font-size: 24px;
}
jmexpander {
    border-color: gray;
}
jmexpander:hover {
    border-color: #000;
}

@media screen and (max-device-width: 1024px) {
    jmnode {
        padding: 5px;
        border-radius: 3px;
        font-size: 14px;
    }
    jmnode.root {
        font-size: 21px;
    }
}
