::selection {
    color: white;
    background: #0aa284;
}

h2 {
    color: #ee5048;
    border-bottom:5px solid #ee5048;
}
h3{
    color: #ee5048;
}
body {
        font-family: "courier new", courier;
}
thead{
    font-weight: bold;
}
/*生成博客目录的CSS*/
#catalog{
    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;
}
#catalogTab{
    float:left;
    width:40px;
    border:1px solid #e5e5e5;
    border-right:none;
    text-align:center;
    background:#ffffff;
    font-size:18px;
}

#catalogContents{
    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;
}
#catalogContents dl{
    margin:0;
    padding:0;
}

#catalogContents dt{
    margin-top:10px;
    margin-left:5px;
    color: #333;
}
#catalogContents dd{
    margin-top:5px;
    margin-left:15px;
}
#catalogContents dd, dt {
    cursor: pointer;
}

#catalogContents dd:hover, #catalogContents dt:hover {
    color:#0f7fe0;
}