/* 隐藏系统默认导航菜单
#header { display: none; }
*/

#custom-sidebar-nav {
    background-color: #f5f5f5; /* 确保背景颜色 */
    padding: 20px; /* 确保有足够内边距 */
    border: 1px solid #ccc;
    border-radius: 8px; /* 添加圆角 */
    width: 47%; /* 设置适当的宽度 */
    margin: 0 auto; /* 居中 */
    margin-top: 10px;
    margin-bottom: 10px; /* 距离浏览器底部的距离 */
}
.custom-sidebar-nav-title {
    background-color: #ccc; /* 深蓝色背景 */
    color: rgb(18, 17, 17); /* 文字颜色 */
    padding: 10px; /* 内边距 */
    border-radius: 5px; /* 圆角效果 */
    margin: 0 0 10px; /* 上下边距 */
    font-size: 1.2em; /* 字体大小 */
    /* 添加其他样式以增强效果 */
    font-weight: bold; /* 加粗字体 */
    list-style-type: none; /* 保证没有默认列表样式 */
}

.custom-sidebar-nav h3 {
    border: none; /* 移除所有边框 */
    background-color: transparent; /* 移除背景 */
    background-color: #004085; /* “我的导航”背景颜色 */
    color: white; /* 文字颜色 */
    padding: 8px; /* 文字周围内边距 */
    border-radius: 5px; /* 圆角效果 */
    margin: 0 0 10px; /* 上下边距 */
}
#custom-sidebar-nav ul {
    list-style: none; /* 去掉列表样式 */
    padding: 0; /* 去掉内边距 */
    display: flex; /* 使菜单水平排列 */
}
#custom-sidebar-nav li {
    margin-right: 20px 0; /* 列表项上下间距 */
}
#custom-sidebar-nav a {
    display: block;
    padding: 8px;
    color: #333;
    text-decoration: none;
}
#custom-sidebar-nav a:hover {
    background-color: #ddd;
}

/*生成博客目录的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;
}
/*鼠标指针*/
html {
    cursor: url('https://files.cnblogs.com/files/blogs/800093/CarbonSmoothingCursor.svg'), auto;
}
