/* —— 字体部分：通过 jsDelivr CDN 在线引入 —— */
@import url('https://cdn.jsdelivr.net/npm/lxgw-wenkai-webfont@1.1.0/style.css');
@import url('https://cdn.jsdelivr.net/npm/lxgw-wenkai-mono-webfont/style.css');

/* —— CSS 变量 & 过渡 ——
:root {
  --bg-color: #fafafa;
  --text-color: #333;
}
[data-theme="dark"] {
  --bg-color: #1e1e1e;
  --text-color: #ddd;
} */
html, body {
  /* margin: 0;
  padding: 0; */
  font-family: 'LXGW WenKai', 'LXGW WenKai Mono', serif !important;
  /* font-size: 16px;
  line-height: 1.75;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color .3s, color .3s; */
}

/* —— 正文卡片式样 —— */
/* .cnblogs-post-body {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: inherit;
  padding: 1.2em 1.5em;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
} */

/* —— 代码高亮 & 复制按钮 —— */
pre, code {
  font-family: 'LXGW WenKai Mono', Consolas, monospace !important;
  /* font-size: 14px;
  background: #f5f5f5;
  padding: 0.4em 0.6em;
  border-radius: 4px;
  overflow-x: auto;
  position: relative; */
}
