/* 换行，对齐设置 */
body * {
    font-family: "Jetbrains Mono";
    word-wrap: break-word;
    word-break: break-all;
    text-align: justify; /* left：左对齐 right：右对齐 center：居中对齐 justify：两端对齐 */
}

/* 代码块不换行 */
.cnblogs-markdown .hljs {
    white-space: pre;
    font-family: "Courier New",sans-serif!important;
}

/* 目录不换行 */
.cnblogs-toc>.cnblogs-toc-item>.cnblogs-toc-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    padding: 0;
    margin: 0;
    white-space: nowrap;
　　text-overflow: ellipsis;
    font-weight: inherit;
}

/* 屏蔽广告 */
#ad_t2, #opt_under_post, #cnblogs_c1, #under_post_card1, #cnblogs_c2, #under_post_card2 {
    display:none;!important
}