
ol.zh-counter {
  list-style-type: cjk-ideographic;
  /* 使用中文编号 */
}

ol.zh-counter {
  list-style-type: none;
  /* 移除默认编号 */
  counter-reset: list;
  /* 重置计数器 */
}

ol.zh-counter li {
  counter-increment: list;
  /* 计数器递增 */
}

ol.zh-counter li::before {
  content: counter(list, cjk-ideographic) ". ";
  /* 使用中文编号 */
}
