/* 首页文章卡片 */
#recent-posts > div > div{
    background:rgba(255, 255, 255, 0.8)!important;
}
/* 首页侧栏卡片 */
.card-widget{
  background:rgba(255, 255, 255, 0.8)!important;
}
/* 文章页面正文背景 */
div#post{
  background: rgba(255, 255, 255, 0.8);
}
/* 分页页面 */
div#page{
  background: rgba(255, 255, 255, 0.8);
}
/* 归档页面 */
div#archive{
  background: rgba(255, 255, 255, 0.8);
}
/* 标签页面 */
div#tag{
  background: rgba(255, 255, 255, 0.8);
}
/* 分类页面 */
div#category{
  background: rgba(255, 255, 255, 0.8);
}
/* 黑夜模式下*/
[data-theme='dark'] #recent-posts > div > div{
    background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] .card-widget{
  background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] div#post{
  background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] div#page{
  background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] div#archive{
  background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] div#tag{
  background:rgba(0, 0, 0, 0.8)!important;
}
[data-theme='dark'] div#category{
  background:rgba(0, 0, 0, 0.8)!important;
}