
/* 文章内容主题样式 */
#home>#main {
    margin-top: 30px;
    background-color: transparent;
}

/* 文章主体样式 */
#mainContent {
    border-radius: 12px;
    /* 解决主页文章列表第一篇文章没有圆角，超出父元素 */
    overflow:hidden;
}


/* 右侧 */
#sideBar {
    width: 230px;
    margin-left: 30px;
    background-color: #fff;
    box-shadow: 0 0 8px #999;
    border-radius: 12px;
}

/* 下一页样式 开始 */
/* .topicListFooter {
    padding: 0px 32px 10px;
    margin-top: 0px;
}

.topicListFooter #nav_next_page {
    height: 60px;
    text-align: center;
    background-color: rgba(121,262,200, 0.1);
}

.topicListFooter #nav_next_page a {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 60px;
} */
/* 下一页样式 结束 */

/* h1样式 */
h1.postTitle {
    font-size: 32px;
    font-weight: 700;
    border: none;
    padding-left: 0px;
}

/* h3样式 */
#cnblogs_post_body h3{
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

/* h4样式 */
#cnblogs_post_body h4{
    font-size: 20px;
    background-color: transparent;
    color: #333;
    padding: 0;
}

/* h5样式 */
#cnblogs_post_body h5{
    font-size: 16px;
    color: #666;
}

/* pre代码块、P标签样式 */
#cnblogs_post_body>pre, 
#cnblogs_post_body p {
    margin: 20px 0;
}

/* code 短行代码样式 */
.cnblogs-markdown :not(pre,div,td)>code, .blogpost-body :not(pre,div,td)>code {
    background-color:#fff5f5;
    color: #ff502c;
}

/* 有序列表、无序列表的样式 */
#cnblogs_post_body li { 
    margin-top: 20px;
    padding-left: 10px;
}

/* 代码块 */
code.language-JS.highlighter-hljs.hljs.hljs-line-numbers {
    padding-left: 0px;
}
/* 代码块的行数显示 */
code.language-JS.highlighter-hljs.hljs.hljs-line-numbers tr>td:first-child {
    padding: 0 10px 0 14px;
}
code.language-JS.highlighter-hljs.hljs.hljs-line-numbers tr>td:last-child {
    padding-left: 10px;
    border-left: 1px solid #c5c5c5;
}