#loading {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    background-color: #f4f5f5;
    pointer-events: none;
}

.loader-inner {
    will-change: transform;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    background-color: #3742fa;
    border-radius: 50%;
    animation: scaleout 0.6s infinite ease-in-out forwards;
    text-indent: -99999px;
    z-index: 999991;
}

@keyframes scaleout {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*隐藏RSS订阅按钮*/
.rss {
    display: none;
}

/*隐藏看板打字特效的光标*/
.typed-cursor {
    display: none;
}

/*篡改亮暗主题切换按钮图标*/
.fa-moon:before {
    content: "\f042" !important;
}

/*篡改联系按钮图标*/
.fa-paper-plane:before {
    content: "\f12d" !important;
}

/*恢复上一篇与下一篇链接并调整样式*/
#post_next_prev {
    display: block !important;
    margin-bottom: 20px !important;
}
.postDesc {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}
#post_detail {
    padding-bottom: 0 !important;
}

/*隐藏博客园链接按钮*/
#cnblog-nav a:nth-child(1) {
    display: none !important;
}

/*隐藏左侧菜单RSS订阅按钮*/
#cnblog-nav a:nth-child(6) {
    display: none !important;
}

/*修改博客首页链接按钮颜色*/
#cnblog-nav a:nth-child(2) span:before {
    color: #0984e3 !important;
}

/*隐藏右上角RSS订阅按钮*/
.stat-list li:nth-child(2) {
    display: none !important;
}

/*隐藏踩并调整样式*/
.buryit {
    display: none !important;
}
#div_digg {
    width: auto !important;
}

/*修改顶置图标*/
.custom-card.top .custom-card-title:before {
    content: "\f08d" !important;
}

/*修复代码块右上角复制按钮显示BUG*/
.cnb-code-toolbar {
    --cnb-code-toolbar-mix-blend-mode: screen !important;
}

/*修复节气图高度*/
.event-wrapper img {
    height: auto !important;
}

/*隐藏字节广告*/
.charm-bar-wrapper {
    display: none !important;
}