body{
    background-color: white;
}
/*去除页面自带的一些东西*/
#blogTitle,#top_nav,#cnblogs_ch,#cnblogs_c1,#under_post_card1,
#under_post_card2,#blog-calendar,#sidebar_shortcut,#sidebar_categories{
    display: none !important;
}
/*去除内容的阴影*/
#home{
    /* box-shadow: none; */
    background-color: transparent;
}
/*博客标题*/
.postTitle{
    font-weight: 600 !important;
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    margin-bottom: 0.25rem !important;
}
/*博客内容体加个内边距，否则有些阴影出不来*/
#cnblogs_post_body{
    padding: 5px;
}
/*背景引用*/
#cnblogs_post_body blockquote{
    margin: 1rem 0;
    padding: 0.5rem 0.5rem;
    border-left: 0.25rem solid #84cc16;
    border-radius: 2px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
/*代码块*/
#cnblogs_post_body>pre{
    background: #f6f6f6;
    position: relative !important;
    border-radius: 6px;
    z-index: 1;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}
.hljs{
    border: none;
    background-color: transparent;
}
/*行代码块*/
.cnblogs-markdown :not(pre,div,td)>code, .blogpost-body :not(pre,div,td)>code{
    background-color: rgb(243,243,243);
    color: #84cc16;
}

/*!* 隐藏浏览器默认滚动条 *!*/
/*::-webkit-scrollbar {*/
/*    display: none;*/
/*}*/

/*!* 自定义滚动条的轨道 *!*/
/*::-webkit-scrollbar-track {*/
/*    background-color: #f1f1f1;*/
/*}*/

/*!* 自定义滚动条的滑块 *!*/
/*::-webkit-scrollbar-thumb {*/
/*    background-color: #888;*/
/*    border-radius: 10px;*/
/*}*/

/*!* 滚动条鼠标悬停时的样式 *!*/
/*::-webkit-scrollbar-thumb:hover {*/
/*    background-color: #555;*/
/*}*/

/*标记高亮*/
mark{
    background-color: #84cc16;
    color: #a31515;
}
/*标题*/
#cnblogs_post_body {
    h1,h2,h3,h4,h5,h6{
        color: #84cc16;
    }
}

