#footer {
    box-shadow: var(--card-box-shadow);
    background: var(--light_page_color);
}

#footer-wrap {
    color: #99a9bf;
}

#footer-wrap a {
    color: #99a9bf;
}

#aside-content .card-widget {
    background: hsl(0deg 0% 100% / 80%);
    ;
    /*background: rgb(153 169 191 / 90%); */
}

[data-theme=dark] #aside-content .card-widget {
    background: hsl(0deg 0% 7% / 80%);
}

/* #recent-posts>.recent-post-item, .layout>div:first-child:not(.recent-posts), .layout_post>#page, .layout_post>#post, .read-mode .layout_post>#post{
    background: var(--light_page_color);
} */

.layout>div:first-child:not(.recent-posts) {
    background: var(--light_page_color);
}

#recent-posts>.recent-post-item {
    background: rgba(76, 175, 80, 0.1);
}

#post {
    background: rgba(255, 250, 205, 0.2);
}

[data-theme=dark] #post {
    background: hsl(0deg 0% 7% / 60%);
}

/* #page-header.full_page {
     opacity: 0.86; 
} 
*/

/* 更改标题缩进 */

#article-container.post-content h1 {
    padding-left: 0px;
}

#article-container.post-content h2 {
    padding-left: 1px;
}

#article-container.post-content h3 {
    padding-left: 5px;
}

#article-container.post-content h4 {
    padding-left: 9px;
}

#article-container.post-content h5 {
    padding-left: 13px;
}

#article-container.post-content h6 {
    padding-left: 19px;
}

#page-header.nav-fixed #nav {
    background: rgba(255, 255, 255, 0.25);
}

/* 使图片左对齐地配置更改,默认是居中 margin: 0 auto 20px */
#article-container img {
    margin: 0 auto 20px 0;
}

[data-theme=dark] blockquote {
    background-color: rgb(0 157 153 / 20%);

}


/*隐藏分类标签中的(个人知识库这个分类)*/
/*有bug,于是关闭, 随后在框架逻辑中实现->需修改此文件逻辑:node_modules/hexo-theme-butterfly/scripts/helpers/aside_categories.js*/
/* ul#aside-cat-list li:first-child {
    display: none
} */

/*隐藏原分类页面中的(博文分享这个分类)*/
/*有bug,于是关闭, 随后在框架逻辑中实现*/
/* ul.category-list li:last-child {
    display: none
} */

/*给博客目录添加了边框*/
.toc-link {
    border: 1px dotted #9acd32;
    /* #00c4b6*/
}

[data-theme=dark] .toc-link {
    border: 1px dotted #404040;
    /*dashed*/
}


/*给博客目录添加透明参考线*/

/* ul  {
    border-left: 1px groove rgba(244, 116, 102, 0.2);
} */

/* ul ul{

    border-left: 1px solid rgba(236, 246, 245, 0.3);
} */
/*给博客目录添加悬停时的透明轮廓(轮廓不占用实际空间, 不会引起原有字体的变动)*/

ul ul:hover {

    outline: 1px dotted rgba(27,68,97, 0.8);
}