.single-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-content {
    margin: 42px 0 28px 0px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main-color);
    padding-bottom: 1rem;
}

.post-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1250px;
    padding: 0 16px;
    box-sizing: border-box;
}

.article-info {
    padding: 20px 20px 1px 20px;

    .article-tag {
        margin-bottom: 6px;
    }
}

.tag-bg {
    font-size: 1rem;
    font-weight: 400;
    height: 25px;
    line-height: 24px;
    border-radius: 15px;
    margin-right: 5px;
    margin-bottom: 2px;
    padding: 1px 5px;
    color: #fff;
    background-color: var(--blog-tag-bg-color);
}

.tag-border {
    font-size: 1rem;
    font-weight: 400;
    height: 25px;
    line-height: 24px;
    border-radius: 15px;
    margin-right: 5px;
    margin-bottom: 2px;
    padding: 1px 5px;
    color: var(--blog-tag-bg-color);
    border: 1px solid var(--blog-tag-bg-color);
}

.post-info {
    color: var(--blog-info-text-color);
    display: flex;

    div {
        padding-right: 15px;
    }
}

.content {
    padding: 0 30px 20px 32px;
    color: var(--markdown-text-color);

    .article-content {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
}

/* 文章Markdown内容 */
blockquote {
    border-left: 5px solid #E2BCB7;
    padding: 0.5rem 0.8rem 0.5rem 0.5rem;
    color: var(--blog-quote-text-color);
    background-color: var(--blog-quote-bg-color);
    margin: 1rem 0 1rem;
}

blockquote p {
    text-indent: 0.2rem;
    font-size: 1.1rem;
    line-height: 1.85rem;
}

ul {
    display: block;
    padding-left: 2em !important;
    word-spacing: 0.05rem;

}

/* 转载信息 */
.reprint {
    color: var(--blog-info-text-color);
    margin: 30px 0 0.4rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid #eee;
    line-height: 2;
    transition: box-shadow 0.3s ease-in-out
}

.reprint:hover {
    box-shadow: 0 0 10px 0 rgba(232, 237, 250, .6), 0 4px 8px 0 rgba(232, 237, 250, .5)
}

.reprint a {
    font-size: 1.2rem;
    color: var(--blog-tag-bg-color);
    font-weight: 500;
}

/* 前后篇 */
.prev-next {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.comments-container {
    width: 100%;
    max-width: 1250px;
    padding: 22px 16px;
    box-sizing: border-box;
    margin-top: 52px;

    .card {
        padding: 22px 36px;
    }
}

/* 代码块*/
.codeblock {
    width: 88%;
    margin: auto;
    position: relative;
    padding: var(--card-padding);
    background-color: var(--pre-background-color);
    border-radius: 0.35rem;

    pre {
        padding: 1rem 1rem 1rem 1rem !important;
        border-radius: 0.35rem;
        tab-size: 4;

        overflow-x: auto;
        display: block;
        background-color: var(--pre-background-color);
        color: var(--pre-text-color);
        font-family: var(--code-font-family);
        line-height: 1.428571429;
        word-break: break-all;
    }

    .code-lang {
        color: var(--markdown-text-color);
        position: absolute;
        top: 1.2rem;
        right: 20px;
        z-index: 1;
        filter: invert(50%);
        cursor: pointer;
        line-height: 0;
        font-size: 16px;
    }

    code {
        font-family: LXGW;
        color: unset;
        border: none;
        background: none;
        padding: 0;
    }

    code[class*="language-"],
    pre[class*="language-"] {
        color: #8f8e8e;
        font-size: 16px;
    }


}

/* 苹果窗口样式 */
/* .codeblock::after {
    content: " ";
    position: absolute;
    border-radius: 50%;
    background: #ff5f56;
    width: 12px;
    height: 12px;
    top: 0;
    left: 12px;
    margin-top: 12px;
    -webkit-box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
    box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
} */


/* code {
    padding: 1px 5px;
    top: 13px !important;
    
    color: #e96900;
    background-color: #f8f8f8;
    border-radius: 2px;
} */

summary {
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: var(--collapsible-summary-color);

}

details {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: #E2BCB7 0px 0px 2px 0px;
    font-size: 1.1rem;
}

/* 正文大小1rem-16px，引用1.1rem */