/* 二级有序列表项目符号样式 */
@counter-style parenthesized-digit-number {
    system: fixed;
    symbols: ⑴ ⑵ ⑶ ⑷ ⑸ ⑹ ⑺ ⑻ ⑼ ⑽ ⑾ ⑿ ⒀ ⒁ ⒂ ⒃ ⒄ ⒅;
    suffix: " ";
  }
  
  .md-typeset ol ol {
    list-style: parenthesized-digit-number;
  }
  
  /* 分栏内字体大小调整跟正文一样 */
  .md-typeset .admonition.col,
  .md-typeset details.col,
  .md-typeset .admonition.colonne,
  .md-typeset details.colonne,
  .md-typeset .admonition.column,
  .md-typeset details.column {
    font-size: 0.8rem;
  }

  /* 打印时分栏内的字体大小 */
  @media print {
    .md-typeset .admonition.col,
    .md-typeset details.col,
    .md-typeset .admonition.colonne,
    .md-typeset details.colonne,
    .md-typeset .admonition.column,
    .md-typeset details.column {
        font-size: .68rem
    }
  }