/**
 * MathJax 3 可选样式（自定义用）
 *
 * 说明：MathJax 3 的 tex-mml-chtml.js 不会提供单独的 .css 文件。
 * CHTML 输出所需的样式由 JS 在运行时自动注入到页面里，所以只引用一个 js 即可正常显示公式。
 *
 * 本文件为可选：如需调整公式的显示效果（字号、边距、颜色等），可在此写覆盖规则，
 * 并在页面中 <link href="mathjax-custom.css" rel="stylesheet"> 引入。
 */

/* 示例：调整行内公式字号 */
mjx-container[jax="CHTML"] {
  font-size: 1.1em !important;
}

/* 示例：块级公式居中、上下留白 */
mjx-container[jax="CHTML"][display="true"] {
  margin: 0.8em 0 !important;
  text-align: center !important;
}
