/**代码高亮**/
/*
.entry-content pre:before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 15px 25px;
    background: #fdbc40;
}
ol.linenums:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 15px 25px;
    background: #35cd4b;
}
.entry-content pre:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fc625d;
    margin: 15px 25px;
}
.entry-content pre {
    position: relative;
    border-radius: 6px;
    padding-top: 50px;
    box-shadow: 0px 8px 20px -10px #000;
}
.entry-content pre .copy {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 20px;
    cursor: pointer;
    color: #8224e3;
}
*/
/**代码高亮**/


/**代码高亮**/
.code-toolbar {
    position: relative;
    margin: 1em 0;
    background: #282c34;
    border-radius: 6px;
    padding-top: 40px;
}
.code-toolbar:hover .toolbar {
    opacity: 1;
}
.code-toolbar pre {
    margin: 0 !important;
    border-radius: 6px;
}
.code-toolbar:before {
    content: '';
    height: 40px;
    width: 100%;
    background: #21252b;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.code-toolbar:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 25px 0 0 #ffbd2e, 50px 0 0 #27c93f;
    z-index: 1;
}
.toolbar {
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 2;
    opacity:0;
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
    .toolbar {
        position: absolute;
        top: 6px;
        right: 10px;
        opacity: 1;
        width: auto;
        display: block !important;
        pointer-events: auto !important;
    }
}
.toolbar-item button {
    padding: 5px 10px;
    color: #ffffff;
    cursor: pointer;
    background: #0e78f9;
    border-radius: 3px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 5px;
}
