/*随笔 - 6  文章 - 0  评论 - 0  阅读 - 13148
.sidebar-stats

//首页menu 按钮
.menu-button {

// 底部文章推荐、编辑推荐、阅读排行
#cnblogs_ch,
opt-under-post,
#under_post_card1,
#under_post_card2

//底部 推荐该文 关注博主关注博主  收藏本文 分享微信
#blog_post_info
*/
.sidebar-stats,
.sidebar-profile{
    visibility: hidden;
}
.menu-button,
#blog_post_info,
#cnblogs_ch,
opt-under-post,
#under_post_card1,
#under_post_card2{
    display:none; !important
}
body .postTitle {
    font-family: Arial, Helvetica, sans-serif!important;
}
/* styles.css */
/* 基本重置 */
/* 导航栏样式 */
.navbar {
    background-color: rgba(255, 255, 255, 0); /* 完全透明背景 */
    position: fixed;        /* 固定在页面顶部 */
    top: 0;
    left: 0;                /* 从页面左侧开始 */
    width: auto;            /* 宽度自适应 */
    z-index: 1000;          /* 确保导航栏在其他内容上面 */
    padding: 10px 20px;     /* 为导航栏添加一些内边距 */
    box-shadow: none;       /* 去掉阴影 */
}

/* 确保导航栏的列表项从左边开始排列 */
.navbar ul {
    list-style-type: none;   /* 去掉默认的列表样式 */
    margin: 0;
    padding: 0;
    display: flex;           /* 使用 flex 布局排列菜单项 */
    justify-content: flex-start; /* 确保左对齐 */
}

.navbar li {
    padding: 10px 20px; /* 每个菜单项的内边距 */
}

.navbar a {
    text-decoration: none; /* 去掉链接的下划线 */
    color: white;          /* 字体颜色为白色 */
    font-size: 18px;       /* 字体大小 */
    font-weight: bold;     /* 字体加粗 */
    display: block;        /* 让链接充满整个菜单项 */
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 鼠标悬停时，设置透明度的背景 */
}
// 防止导航栏遮挡页面内容 
