.editor-content-view {
  color: var(--text-color-regular);
  font-size: 16px;
}
.editor-content-view p,
.editor-content-view li {
  white-space: pre-wrap;
  /* 保留空格 */
  color: inherit;
}
.editor-content-view blockquote {
  border-left: 8px solid var(--theme-primary-op-8);
  padding: 10px 10px;
  margin: 10px 0;
  background-color: var(--blockquote-bg-color);
}
.editor-content-view code {
  font-family: monospace;
  background-color: var(--code-bg-color);
  padding: 3px;
  border-radius: 3px;
}
.editor-content-view pre > code {
  display: block;
  padding: 10px;
}
.editor-content-view ul,
.editor-content-view ol {
  padding-left: 2em;
  /* 恢复左内边距，模拟默认缩进 */
  margin: 0.5em 0;
  /* 恢复上下外边距 */
}
/* 无序列表：恢复实心圆点 */
.editor-content-view ul {
  list-style-type: disc;
}
/* 有序列表：恢复数字编号 */
.editor-content-view ol {
  list-style-type: decimal;
}
.editor-content-view input[type="checkbox"] {
  margin-right: 5px;
}
.editor-content-view sub {
  vertical-align: sub;
  /* 下标基线对齐 */
}
.editor-content-view sup {
  vertical-align: super;
  /* 上标基线对齐 */
}
/** 表格样式 */
.editor-content-view table {
  border-collapse: collapse;
  width: 100% !important;
  border: 1.5px solid var(--blog-search-border-color);
  border-spacing: 0;
}
.editor-content-view tbody {
  border-collapse: separate;
}
.editor-content-view td,
.editor-content-view th {
  border: 1px solid var(--blog-search-border-color);
  min-width: 50px;
  height: 20px;
  padding: 5px 10px;
  border-right-color: transparent;
  border-left-color: transparent;
  text-align: center;
}
.editor-content-view th {
  background: var(--table-th-bg-color);
}
.editor-content-view tr {
  transition: all 0.2s;
}
.editor-content-view tr:nth-child(odd) {
  background: var(--table-tr-bg-color-odd);
}
.editor-content-view tr:hover {
  background: var(--table-tr-bg-color-hover);
}
