/* 自定义样式 — Material for MkDocs 迁移适配 */

/* 页面日期显示 */
.md-date {
  color: var(--md-default-fg-color--light);
  font-size: 0.85em;
  margin-bottom: 1.2em;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding-bottom: 0.6em;
}
.md-date__sep {
  margin: 0 0.5em;
}

/* 图片自适应 */
.md-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* figure 标签居中 */
.md-content figure {
  text-align: center;
  margin: 1.5em 0;
}

/* 表格优化 */
.md-content table:not([class]) {
  display: table;
  width: auto;
  margin: 1em 0;
}

/* 数学公式加载前不显示 */
.MathJax_Loading {
  visibility: hidden;
}
