/*生成博客目录的CSS*/
#uprightsideBar{
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;/*将div的位置固定到距离top:50px，right:0px的位置，这样div就会处在最右边的位置，距离顶部50px*/
    top:50px;
    right:0px;
    width: auto;
    height: auto; 
}

#sideBarTab{
    float:left;
    width:30px; 
    border:1px solid #e5e5e5;
    border-right:none;
    text-align:center;
    background:#ffffff;
}

#sideBarContents{
    float:left;
    overflow:auto; 
    overflow-x:hidden;!important;
    width:200px;
    min-height:108px;
    max-height:460px;
    border:1px solid #e5e5e5;
    border-right:none; 
    background:#ffffff;
}

#sideBarContents dl{
    margin:0;
    padding:0;
}

#sideBarContents dt{
    margin-top:5px;
    margin-left:5px;
}

#sideBarContents dd, dt {
    cursor: pointer;
}

#sideBarContents dd:hover, dt:hover {
    color:#A7995A;
}

#sideBarContents dd{
    margin-left:25px;
}

/*字体设置*/
#cnblogs_post_body {
    color: #494949;
    font-size: 14px;
    line-height: 25px;
}

/*标题设置*/
#cnblogs_post_body h3 {
    font-size:21px;
    font-weight:bold;
    line-height:1.5;
    background-color:#5FBDCE;
    color:#015666;
    // border-radius:8px;
    padding:5px;
}

#cnblogs_post_body h4 {
    font-size:16px;
    font-weight:bold;
    line-height:1.5;
    background-color:#5FBDCE;
    color:#015666;
    // border-radius:8px;
    padding:5px;
}

/*图片样式*/
p img {
    border:1px solid #ccc;
    box-shadow:0 0 10px rgba(0,0,0,.35);
}

/*超链接不显示下划线CSS*/
.postCon a, .postBody a, .feedbackCon a {
    border-bottom:0px dotted #333
}

/*博客代码块区域圆角显示*/
.cnblogs_code {
    border-radius:12px;
    line-height:1;
}

/*右侧导航栏-目录导航设置*/
h2 {
    background-color:#5FBDCE;
    color:#015666;
    // border-radius:8px;
}

/*推荐按钮*/
#div_digg{
    position:fixed;
    bottom:5px;
    width:140px;
    right:10px;
    border:2px solid #6FA833;
    padding:10px;
    background-color:#fff;
    border-radius:5px 5px 5px 5px !important;
    box-shadow:0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}

/*引用样式*/
.postBody blockquote {
    background:#f0f0f0;
    border-radius:10px;
    margin:20px;
    padding:20px 50px;    
}