/*top-img黑色透明玻璃效果移除，不建议加，除非你执着于完全一图流或者背景图对比色明显 */

#page-header:not(.not-top-img):before {
    background-color: transparent !important;
}


/* 页脚透明 */

#footer {
    /* background: transparent !important; */
    background: rgba(255, 255, 255, 0);
}


/* 头图透明 */

#page-header {
    /* background: transparent !important; */
    background: rgba(255, 255, 255, 0);
}

#rightside>div>button {
    border-radius: 5px;
}


/* 所有页面背景 */

#aside_content .card-widget,
#recent-posts>.recent-post-item,
.layout_page>div:first-child:not(.recent-posts),
.layout_post>#page,
.layout_post>#post,
.read-mode .layout_post>#post {
    /* 以下代表透明度为0.5 */
    background: rgba(255, 255, 255, 0.7);
}


/* 首页侧栏卡片 */

#aside-content .card-widget {
    background: rgb(255, 255, 255, 0.7);
}


/*说说、  侧边卡片的透明度 */

:root {
    --card-bg: rgba(255, 255, 255, 0.7);
}


/* 文章页面正文背景 */

div#post {
    background: rgba(255, 255, 255, 0.7);
}


/* 分页页面 */

div#page {
    background: rgba(255, 255, 255, 0.7);
}


/* 归档页面 */

div#archive {
    background: rgba(255, 255, 255, 0.7);
}


/* 标签页面 */

div#tag {
    background: rgba(255, 255, 255, 0.7);
}


/* 分类页面 */

div#category {
    background: rgba(255, 255, 255, 0.7);
}


/*夜间模式伪类遮罩层透明*/

[data-theme="dark"] #recent-posts>.recent-post-item {
    background: #121212;
}

[data-theme="dark"] .card-widget {
    background: #121212 !important;
}

[data-theme="dark"] div#post {
    background: #121212 !important;
}

[data-theme="dark"] div#tag {
    background: #121212 !important;
}

[data-theme="dark"] div#archive {
    background: #121212 !important;
}

[data-theme="dark"] div#page {
    background: #121212 !important;
}

[data-theme="dark"] div#category {
    background: #121212 !important;
}

[data-theme="dark"] div#category {
    background: transparent !important;
}


/* 菜单栏魔改 */


/* 顶部导航栏 */

#nav {
    background: rgba(255, 255, 255, 0.8);
}

#nav a {
    color: #010101;
}


/* 页面宽度修改*/

.layout {
    max-width: 1400px;
}

#nav #nav-group {
    max-width: 1376px;
    justify-content: center
}

.layout.hide-aside {
    max-width: 1200px;
}


/* .aside-content {
    max-width: 312px;
    min-width: 300px;
} */


/* 页面宽度修改END */


/*页脚自定义字段字体颜色,也就是配置文件里的footer_custom_text*/

.footer_custom_text {
    color: #000000;
}


/* a标签默认颜色 */

a {
    color: #002b90;
    /* text-decoration: none; */
}

#article-container a {
    color: #002b90;
    /* text-decoration: none; */
}


/* 鼠标悬停时的颜色 */

#article-container a:hover {
    color: #5768ff;
}