/* #top_nav {
    display:none;
} */

#footer {
    display:none;
}

#cnblogs_ch{
    display: none;
}

#under_post_card1{
    display: none;
}
#under_post_card2{
    display: none;
}

.cnblogs_code pre {
font-family: Courier New!important;
font-size: 30px!important;
word-wrap: break-word;
white-space: pre-wrap;
}
.cnblogs_code span {
font-family: Courier New!important;
font-size: 30px!important;
line-height: 1.7!important;
}
/* 博客园背景图 */
body:before {
    background: url("https://images.cnblogs.com/cnblogs_com/blogs/797539/galleries/2495853/o_260227112126_bg1.jpg") center/cover no-repeat;
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;  /* 控制透明度，可自行调整 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* 侧边栏半透明背景 */
#sideBar {
    background-color: rgba(255, 255, 255, 0.7); /* 白色背景，70%不透明度（即30%透明） */
    /* 可选：添加内边距、圆角等美化效果 */
    padding: 15px;
    border-radius: 8px;
}

/* 正文区域更透明 */
.post {
    background-color: rgba(255, 255, 255, 0.4); /* 白色背景，40%不透明度（即60%透明），比侧边栏更透明 */
    /* 可选：添加内边距、圆角等 */
    padding: 20px;
    border-radius: 8px;
}

/* 如果希望文字更醒目，可以单独设置文字颜色 */
#sideBar, .post {
    color: #333; /* 深灰色文字，保证可读性 */
}