 /*隐藏原网页不想要的模块*/
#google_ad_c1,#div-gpt-ad-1320933818841-0,#google_ad_c2,#div-gpt-ad-1320933818841-1,#ad_under_google, #ad_t2, #cnblogs_c1, #under_post_card1, #under_post_card1, #cnblogs_c2, #under_post_card2, #HistoryToday{
display:none;
visibility：hidden;
}

 /*修改作者信息盒子中a 标签*/
.author_profile_info a {
    color: #ddd;
    text-decoration:none !important;
}

 /*修改作者信息盒子*/
.author_profile_info {
    padding: 5px 20px 5px 10px;
    background-color: #333;
}

 /*修改随笔标题盒子左边框颜色*/
.postTitle {
    border-left: 3px solid royalblue;
}

 /*修改随笔a标签：阅读全文*/
.c_b_p_desc_readmore {
    float:right;
    margin-top: 10px;
    color: crimson !important;
}

 /*修改随笔标题颜色*/
.postTitle a:link, .postTitle a:visited {
    color: royalblue;
}

 /*修改顶栏背景颜色*/
#top_nav {
    background-color: #333;
}

 /*修改home部分背景透明度*/
#home{
    background:  rgba(255, 255, 255, .94);
}

 /*修改body背景图片*/
body {
    background: url(https://images.cnblogs.com/cnblogs_com/blogs/678360/galleries/1960911/o_210413083237006G3uKcgy1gpi6tehxxnj31sz0u07cq.jpg);
}

 /*修改字体颜色为#333*/
#navList a.menu, .blogStats, #sideBar a {
    color: #333;
 }

 /*给sideBar 里面的a下外边距5px*/
#sideBar a{
    margin-bottom: 5px;
}

 /*修改catListTitle h3标题公告*/
.catListTitle{
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
    text-align: center;
}

 /*修改sidebar_news公告，mySearch搜索*/
#sidebar_news, .mySearch, .catListLink，catListLink, .catListEssay, #sidebar_postcategory {
    background:  rgba(255, 255, 255, .6);
    padding: 10px 10px 20px;
}

 /*修改公告信息左内边距*/
#profile_block {
   padding-left: 10px;
}

 /*修改日历背景透明度*/
#blog-calendar {
   background:  rgba(255, 255, 255, .6);
}

 /*修改字体颜色为#999*/
#nav_left a{
    color: #999;
}

.catListLink ul {
    margin-left: 75px;
}
.catListLink ul li{
    width: 60px;
    margin-bottom: 1px;
}
.catListLink ul a, #sideBar h3 {
    font-size: 15px;
}


/*生成博客目录的CSS*/
/*自定制一个css3动画*/
@keyframes pulse {
    25% {
        transform: scale(1.05);
    }
    75% {
        transform: scale(.95);
    }
}
/*调整目录框的位置*/
#uprightsideBar {
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    position: fixed;  
    top: 0px;
    right: 0px;
    width: aotu;
    height: 100vh;
}
/*目录导航样式*/
#sideBarTab {
    float: left;
    width: 30px;
    padding: 30px 3px;
    font-size: 20px;
    text-align: center;
    background: #515151;
    color: #ccc;
}
/*展开后内部内容格式*/
#sideBarContents {
    float: left;
    overflow: auto;
    min-width: 0px;
    max-width: 500px;
    min-height: 200px;
    max-height: 88vh;
    background-size: 100% 100%;
    color: #79a3e5;
}
@media only screen and  (min-width: 800px) {
    #uprightsideBar {margin-top: 2vw; }
    #sideBarContents{ max-height: 90vh;}       
}
/*修改dl样式*/
#sideBarContents dl {
    margin: 0;
    padding: 0;
    color: #eee;
}
/*修改dt样式*/
#sideBarContents dt {
    padding: 3px 0 3px 5px;;
    font-size: 14px;
    background: #515151;
}
/*让鼠标经过dt和dd变成小手*/
#sideBarContents dt:hover, #sideBarContents dd:hover {cursor:pointer;}
/*修改dd样式*/
#sideBarContents dd {
    padding: 3px 0 3px 20px;
    font-size: 13px;
    background: #818181;
}