/* 用于取消页面左下角的Hexo水印 */
/*
.relative.text-center.lg\:absolute.lg\:left-\[20px\].lg\:top-1\/2.lg\:-translate-y-1\/2.lg\:text-left {
    display: none;
}
*/

/* 用于设置自定义背景 */
.light-mode .page-container::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url(https://honaisu.cd.bcebos.com/images/website/background.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(15px);
    transform: scale(1.25);
}
.dark-mode .page-container::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url(https://honaisu.cd.bcebos.com/images/website/background-black.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(15px);
    transform: scale(1.25);
}
@media (min-width: 640px) {
    .light-mode .page-container::before, .dark-mode .page-container::before {
        transform: scale(1.1);
    }
}

/* 用于设置文章目录面板、书签页面半透明等 */
.light-mode .toc-content-container, .light-mode .py-8.sm\:py-0 {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px !important;
    padding: 24px !important;
}
.dark-mode .toc-content-container, .dark-mode .py-8.sm\:py-0 {
    background: rgba(32, 33, 36, 0.8);
    border-radius: 12px !important; 
    padding: 24px !important;
}

/* 文章内容面板、归档、一般模板页面半透明 */
.light-mode .article-content-container, .light-mode .archive-container, .light-mode .page-template-container {
    background: rgba(255, 255, 255, 0.8);
}
.dark-mode .article-content-container, .dark-mode .archive-container, .dark-mode .page-template-container {
    background: rgba(32, 33, 36, 0.8);
}

/* 用于处理页脚在添加自定义背景后变透明的问题 */
.light-mode .main-content-footer {
    background-color: #FFFFFF;
    z-index: 1;
}
.dark-mode .main-content-footer {
    background-color: #202124;
    z-index: 1;
}