/* 1. 隐藏顶部导航栏和底部页脚
#top_nav, .navbar.forpc {
    display: none !important;
}
#footer {
    display: none !important;
}
#div_digg {
    display: none !important;
}
#EntryTag .post-meta-item.post-meta-disclaimer {
    display: none !important;
}
#blog_post_info_block {
    display: none !important;
}
#topics .postDesc {
    display: none !important;
}
#comment_nav {
    display: none !important;
}
#commentform_title {
    display: none !important;
}
#comment_form_container p:last-of-type {
    display: none !important;
}
#cnblogs_ch {
    display: none !important;
}
#under_post_card1 {
    display: none !important;
}
#commentform_title {
    display: none !important;
}
#tip_comment2 {
    display: none !important;
}
#tip_comment {
    display: none !important;
}

/* 2. 为“公告”区域 (#sidebar_news) 添加圆角和透明背景（仅背景透明）
#sidebar_news {
    border-radius: 20px !important; /* 圆角20px
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f0f0f0 !important;
    background-color: rgba(255, 255, 255, 0.8) !important; /* 仅背景80%不透明
}

/* 3. 为公告内部区域统一背景 
#sidebar_news .newsItem,
#sidebar_news #blog-news,
#sidebar_news #sidebar_news_container {
    background-color: transparent !important; /* 继承父容器的半透明背景 
}

/* 4. 为文章列表 (.forFlow 的直接子元素) 添加圆角和透明背景（仅背景透明） 
.forFlow > * {
    border-radius: 20px !important; /* 圆角20px 
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 20px !important;
    background-color: rgba(255, 255, 255, 0.000000001) !important;
}

/* 5. 为侧边栏卡片添加统一透明和圆角（仅背景透明）
#sidebar_shortcut,
#sidebar_toptags,
#sidebar_links0,
#sidebar_postarchive,
#blog-calendar,
.catList,
.sidebar-block {
    border-radius: 12px !important; /* 圆角12px，与公告区域区分 
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(240, 240, 240, 0.7) !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 15px !important;
}*/