#home {
    width: 80%;
}

/* 定制生成博客目录的CSS样式 */
#uprightsideBar{
    font-size:16px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;
    /*
    将div的位置固定到距离top:150px，right:0px的位置，
    这样div就会处在最右边的位置，距离顶部150px，
    当然这两个值你可以自己改。
    */
    top:150px;
    right:0px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    width:25px; 
    box-shadow: 0 0 7px 0px #877788;
    border-right:none;
    text-align:center;
    background:#f5f5f5;
    padding:7px 2px;
    border-radius: 10px 0px 0px 10px;
}
#sideBarContents{
    padding: 3px 6px;
    float:left;
    overflow:auto; 
    overflow-x:hidden;
    !important;
    width: 250px;
    min-height:100px;
    max-height:410px;
    border:1px solid #e5e5e5;
    border-right:none; 
    background:#ffffff;
    border-radius: 10px 0px 0px 10px;
}
#sideBarContents dl{
    margin:0;
    padding:0;
}
/* 一级 */
#sideBarContents dt{ 
    margin:6px 0px;
    padding:3px 0px 3px 14px
}
#sideBarContents dd, dt {
    cursor: pointer;
    font-size:12px;
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: 
    ellipsis;width:100%;
}
#sideBarContents dd:hover, dt:hover {
    color:#00f;
    background:#f8f8f8
}
/* 二级 */
#sideBarContents dd{
    margin-left:20px;
    padding:3px 0px 3px 24px
}