html {
  scrollbar-gutter: stable;
}

body {
    font-family: "SF Pro SC", "PingFang SC", -apple-system, "Hiragino Sans GB", STXihei, "Microsoft YaHei", Heiti, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #503214;
    background-color: #e9dec8;
}

.container {
    width: clamp(500px, calc(100% - 400px), 750px);
    background-color: #faf5e3;
    margin: 30px auto;
    padding: 50px 55px;
    box-shadow: 0 5px 10px 4px rgba(0, 0, 0, .13);
}

.copyright {
    width: clamp(500px, calc(100% - 400px), 750px);
    font-size: 14px;
    margin: 30px auto;
    text-align: center;
}

.dot-divider .dot-divider-light {
    margin: 0 5px;
}

a {
    text-decoration: none;
}

a:link, a:visited{
    color: #c58e04;
}

a:hover {
    color: rgb(235, 171, 10, 1);
}

.copyright a,
.nav-menu a,
.post-list a {
    color: #503214;
}

.copyright a:hover,
.nav-menu a:hover,
.post-list a:hover {
    color: rgb(235, 171, 10, 1);
}

h1 {
    margin: 10px 0;
}

.page-nav, .back-home{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    font-size: 16px;
}

.dot-divider-light {
    color: #8c62399f;
}

.post-list {
    padding-left: 15px;
}

.post-list-item {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 1em; /* 给伪元素留空间 */
}

.post-list-item::before {
    content: "•";       /* 自定义圆点 */
    position: absolute;
    left: 0;
}

.post-list-date {
    font-size: 16px;
    color: #a86a2bc0;
}

.page-header {
    margin-bottom: 20px;
}

.back-home {
    margin-bottom: 25px;
}

.back-home {
    font-size: 15px;
    border-bottom: 1px solid rgba(154, 128, 92, .7);
}

.post-info {
    font-size: 15px;
    margin: 20px 0;
}

.highlight, .highlight .hll {
    background-color: #f5efe4;
}

pre {
    padding: 15px 20px;
    margin: 20px auto;
    overflow: auto;
    word-spacing: 0;
}

code, pre, pre code {
    font-family: Menlo, "Roboto Mono", "Source Code Pro", Consolas, monospace;
    font-size: 18px;
}

.highlight .k,
.highlight .kt,
.highlight .cp,
.highlight .k {
    font-weight: 600;
}

blockquote {
    padding: 0 16px;
    margin: 25px auto;
    color: rgba(80, 50, 20, .8);
    border-left: 4px solid rgba(227, 142, 23, .8);
}

a h1 {
    color: #503214;
}

.marked-background {
    background: #f4d03f;
}

.marked {
    border-bottom: 2px solid #f4d03f;
}