body {
    background-image: url("https://images.cnblogs.com/cnblogs_com/blogs/867437/galleries/2512233/o_260622060857_blog-background-compressed-hq.jpg") !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

/* 整体半透明白色背景 */
#home,
pre {
    background-color: rgba(255, 255, 255, 0.76) !important;
    border-radius: 10px;
}

/* 去掉内部纯色背景 */
#main,
#mainContent,
.forFlow,
#sideBar,
#sideBarMain,
#blogTitle,
#navigator,
.post,
.postBody,
#topics {
    background: transparent !important;
}

/* 文章标题 */
.postTitle {
    font-size: x-large !important;
}

/* 行内代码：替换原来的黑色块 */
#cnblogs_post_body :not(pre) > code {
    background-color: rgba(255, 245, 250, 0.92) !important;
    color: #c44569 !important;
    border: 1px solid rgba(196, 69, 105, 0.25);
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 0.92em;
}

/* 代码块 */
#cnblogs_post_body pre {
    background-color: rgba(255, 255, 255, 0.78) !important;
    border-radius: 10px;
    padding: 12px;
}

/* 表格 */
.table-wrapper {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
}

.table-wrapper th {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

/* 引用、折叠块 */
blockquote,
details {
    background: none !important;
    background-color: rgba(238, 238, 238, 0.55) !important;
    border-radius: 10px;
}

summary {
    border-radius: 10px;
    background-color: rgba(238, 238, 238, 0.6);
    font-size: large;
    font-weight: bold;
}

/* 侧边栏透明 */
#sideBar div {
    background-color: transparent !important;
}

/* 点击粒子 */
.click-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    animation: particle-fly 650ms ease-out forwards;
}

@keyframes particle-fly {
    from {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0.2);
    }
}