/*生成博客目录的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:20px;
}

/* 默认字体大小的CSS*/
.postBody {
    padding: 5px 2px 5px 5px;
    color: #000;
    font-size: 15px;
}


/* 回到顶部 */
#back-to-top {
    font-weight: 900;
    background-color: #fff;
    bottom: 10px;
    box-shadow: 0 0 6px #F8E5CF;
    padding: 5px 10px;
    position: fixed;
    right: 50px;
    border-radius: 8px;
   /* opacity: 0.7;*/
}
#back-to-top a{
color: #000;
}

/* 跳到底部*/
#back-to-bottom {
    font-weight: 900;
    background-color: #fff;
    top: 33px;
    box-shadow: 1px 3px 4px #FAC382;
    color: #444444;
    padding: 4px 10px;
    position: absolute;
    right: 123px;
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
}
#back-to-bottom a{
color: #EAA260;
}
