/*生成博客目录的CSS*/
#uprightsideBar{
    font-size:30px;
    font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue','Helvetica','Arial',sans-serif;
    color:#000000;
    text-align:left;
    position:fixed;/*将div的位置固定到距离top:50px，right:0px的位置，这样div就会处在最右边的位置，距离顶部50px*/
    top:50px;
    right:0px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    height:auto; 
    font-weight:bold;
    line-height:40px;
    width:40px; 
    border:8px solid #ffe201;
    border-right:none;
    border-radius: 15px 0px 0px 15px;
    text-align:center;
    background:#ffe201;
}

#sideBarContents{
    font-size:20px;
    font-weight:bold;
    float:left;
    color:#000000;
    overflow:auto; 
    overflow-x:hidden;!important;
    /* width表示固定高度 */
    /* width:200px; */
    min-height:270px;
    max-height:500px;
    min-width:200px;
    max-width:300px;
    border:5px solid #ffe201;
    border-radius: 0px 0px 0px 15px;
    border-right:none; 
    background:#ffffff;
}
#sideBarContents dl{
    margin:0;
    padding:0;
}

#sideBarContents dt{
    margin:10px 10px 10px 10px;
}

#sideBarContents dd, dt {
    cursor: pointer;
}

#sideBarContents dd:hover, dt:hover {
    color:#ff5500;
}
#sideBarContents dd{
    margin-left:20px;
}