/*背景透明*/
body{
background::rgb(250,252,253,0.8);
}
/*缩小副标题*/
#blogTitle h2{
font-size:1.1rem;
}

/*导航栏缩小透明*/
#navigator {
    height: 40px;
    line-height: 40px;
    background:rgb(0,0,0,0.85);
}

/*预览模块透明，边框圆角，间距调整*/
.day{
background:rgb(243,255,255,0.3);
border-radius:40px;
margin: 0px 5px 30px 0;
}

/*其它部分透明*/
.newsItem,
.catListEssay, .catListLink, .catListNoteBook, .catListTag, .catListPostCategory, .catListPostArchive, .catListImageCategory, .catListArticleArchive, .catListView, .catListFeedback, .mySearch, .catListComment, .catListBlogRank, .catList, .catListArticleCategory,
#blog-calendar,
#topics,
#navigator
#blogTitle {
    background: rgb(250,252,253,0.3);
}

/*左侧边栏卡片颜色*/
.catListTitle {
    background:rgb(165,42,42,0.8);
    color: #FFFFFF;
}

/*底栏加粗*/
#footer{
font-weight:500;
}

/*隐藏不相关模块*/
#c_ad_block,#ad_t2,#under_post_news,#big_banner{
    display:none;
}

/*代码框透明*/
.cnblogs_code{
background-color:rgb(245,245,245,0.4);
}

/*评论栏高度降低*/
div.commentform textarea {
    height: 200px;
}

/*评论提交按钮*/
#btn_comment_submit {
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background:rgb(101,101,101,0.8);
    border-radius:5px;
}

/*鼠标滑过变色*/
#btn_comment_submit:hover {
    background: #141414;
}

/*评论栏大小撑满*/
.commentbox_main{
width:auto
}

/*[Ctrl+Enter快捷键提交]、相关博文字体*/
#under_post_news,div.commentform p{
    font-family: fantasy;
}

/* 引用背景 */
#topics .postBody blockquote {
    background: rgb(255,243,212,0.4);
    border: none;
    border-left: 5px solid #f6b73c;
    margin: 0;
    padding-left: 10px;
}

/* 单行代码 */
.cnblogs-markdown code {
    font-family: Consolas, "Microsoft YaHei", monospace !important;
    font-size: 16px!important;
    line-height: 20px;
    background-color: #f5f5f5!important;
    border: 1px solid #ccc!important;
    padding: 0 5px!important;
    border-radius: 3px!important;
    line-height: 1.8;
    margin: 1px 5px;
    vertical-align: middle;
    display: inline-block;
}

/* 多行代码, 引用 */
.cnblogs-markdown .hljs {
    font-family: Consolas, "Microsoft YaHei", monospace !important;
    font-size: 16px!important;
    line-height: 1.5!important;
    padding: 5px!important;
}