figure.highlight { /* 控制代码框顶栏颜色、宽度、圆角等 */
    /*
    background: #21252b;
    background: rgb(246,248,250);
    */
    background: rgb(178, 208, 239);
    border-radius: 8px;
    box-shadow: 1px 2px 22px 1px rgba(0, 0, 0, .3);
    padding-top: 30px;
    z-index:998;
}

figure.highlight::before { /* 绘制三个小圆点 */
    background: #fc625d;
    border-radius: 50%;
    box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
    content: ' ';
    height: 12px;
    left: 12px;
    margin-top: -20px;
    position: absolute;
    width: 12px;
    z-index:999;
}

/* 代码和表格设置最大高度，高度或宽度超出都不会显示在页面中，可以通过滚动条查看 */
table {
    padding: 0;
    word-break: initial;
    overflow-x: auto;
    max-height: 23em;
    overflow-y: auto !important;
}

