pre code.hljs {
    display: block;
    overflow-x: auto;
    padding: 1em
}

code.hljs {
    padding: 3px 5px
}

.hljs {
    background: #1e1e1e;
    color: #dcdcdc
}

.hljs-keyword,
.hljs-literal,
.hljs-name,
.hljs-symbol {
    color: #569cd6
}

.hljs-link {
    color: #569cd6;
    text-decoration: underline
}

.hljs-built_in,
.hljs-type {
    color: #4ec9b0
}

.hljs-class,
.hljs-number {
    color: #b8d7a3
}

.hljs-meta .hljs-string,
.hljs-string {
    color: #d69d85
}

.hljs-regexp,
.hljs-template-tag {
    color: #9a5334
}

.hljs-formula,
.hljs-function,
.hljs-params,
.hljs-subst,
.hljs-title {
    color: #dcdcdc
}

.hljs-comment,
.hljs-quote {
    color: #57a64a;
    font-style: italic
}

.hljs-doctag {
    color: #608b4e
}

.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-tag {
    color: #9b9b9b
}

.hljs-template-variable,
.hljs-variable {
    color: #bd63c5
}

.hljs-attr,
.hljs-attribute {
    color: #9cdcfe
}

.hljs-section {
    color: gold
}

.hljs-emphasis {
    font-style: italic
}

.hljs-strong {
    font-weight: 700
}

.hljs-bullet,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-selector-pseudo,
.hljs-selector-tag {
    color: #d7ba7d
}

.hljs-addition {
    background-color: #144212;
    display: inline-block;
    width: 100%
}

.hljs-deletion {
    background-color: #600;
    display: inline-block;
    width: 100%
}

/*# 追加样式 */
  /* 文章内容样式 */
  .article-content code {
    font-family: Consolas, Monaco, 'Courier New', monospace;
  }

  /* 代码块样式优化 */
  .article-content pre {
    /*padding: 16px;*/
    border-radius: 2px;
    overflow-x: auto;
    /*margin: 10px 0;*/
    /*font-size: 14px*/;
  }

  /* 图片适配 */
  .article-content img {
    max-width: 100%;
    height: auto;
  }

  /* 表格适配 */
  .article-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
  }

  .article-content table td,
  .article-content table th {
    border: 1px solid #ddd;
    padding: 8px;
  }