/* ============================================================
   课程知识问答 Agent · 设计系统
   极简模块风：白/浅灰分区 + 1px 发丝线 + 单一强调色
   ============================================================ */

:root {
  --ink: #0B1220;
  --body: #4B5563;
  --muted: #8B95A7;
  --bg: #F7F8FA;
  --panel: #FFFFFF;
  --line: #E7EAEF;
  --line-strong: #D6DDEA;
  --accent: #1D4ED8;
  --accent-ink: #1740B8;
  --accent-soft: #EEF2FF;
  --warn: #B45309;
  --warn-soft: #FFF7ED;
  --danger: #B91C1C;
  --danger-soft: #FEF2F2;
  --ok: #047857;
  --ok-soft: #ECFDF5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 10px -6px rgba(11, 18, 32, .22);
  --shadow-lg: 0 24px 60px -30px rgba(11, 18, 32, .35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC",
          "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum";
}

h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 650; letter-spacing: -.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
a { color: var(--accent); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: #D8DEE9; border-radius: 999px; border: 3px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: #C2CBDA; background-clip: content-box; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------------------------------------------------------- 顶栏 */

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 24px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.brand__mark {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, #1D4ED8, #3B82F6);
  color: #fff; display: grid; place-items: center;
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 6px 16px -10px rgba(29, 78, 216, .9);
}

.brand__text { min-width: 0; }

.brand__title {
  font-size: 15.5px; font-weight: 650; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.brand__sub {
  font-size: 12px; color: var(--muted); line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.topbar__spacer { flex: 1; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 550;
  border: 1px solid var(--line-strong); background: var(--panel); color: var(--body);
  white-space: nowrap;
}

.pill--ok { border-color: #A7F3D0; background: var(--ok-soft); color: var(--ok); }
.pill--warn { border-color: #FED7AA; background: var(--warn-soft); color: var(--warn); }
.pill--btn:hover { border-color: var(--accent); color: var(--accent); }

.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }

/* ---------------------------------------------------------- 布局 */

.app {
  display: grid;
  grid-template-columns: 316px minmax(0, 1fr);
  height: calc(100vh - 64px);
}

.side {
  border-right: 1px solid var(--line);
  background: var(--panel);
  overflow-y: auto;
  padding: 22px 20px 40px;
}

.side__section { margin-bottom: 26px; }

.side__kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}

.side__kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.stat {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 12px; background: #FCFDFE;
}

.stat b { display: block; font-size: 18px; color: var(--ink); font-weight: 680; line-height: 1.3; }
.stat span { font-size: 11.5px; color: var(--muted); }

.lv { margin-bottom: 16px; }

.lv__head {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; font-weight: 650; color: var(--ink); margin-bottom: 7px;
}

.lv__head em {
  font-style: normal; font-size: 11px; color: var(--muted); font-weight: 500;
}

.lv__courses { display: flex; flex-direction: column; gap: 2px; }

.course-link {
  text-align: left; border: 0; background: none; padding: 5px 8px 5px 10px;
  border-radius: 8px; font-size: 12.5px; color: var(--body); line-height: 1.5;
  position: relative; transition: background .15s, color .15s;
}

.course-link::before {
  content: ""; position: absolute; left: 2px; top: 50%; width: 3px; height: 3px;
  margin-top: -1.5px; border-radius: 50%; background: var(--line-strong);
}

.course-link:hover { background: var(--accent-soft); color: var(--accent-ink); }
.course-link.is-star::before { background: var(--accent); }

.side__note {
  font-size: 12px; color: var(--muted); line-height: 1.7;
  border-left: 2px solid var(--line-strong); padding-left: 12px;
}

.side__note--tight { margin-bottom: 8px; }

/* 体系目录之外的分组（特色课程）：与三个层级并列，
   用浅底卡片把它和「层级」这种大类区分开，标题也给强调色 */

.lv--special {
  padding: 12px 12px 10px; background: #FCFDFE;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}

.lv--special .lv__head { color: var(--accent-ink); }

/* 分组清单页入口（特色课程合辑） */
.lv__more {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 10px;
  padding: 4px 9px; border-radius: 8px; background: var(--accent-soft);
  font-size: 12px; font-weight: 600; color: var(--accent); text-decoration: none;
}

.lv__more:hover { background: #E3EAFE; }

/* 使用指引：告诉访客「点课程名看简介」「提问用输入框」「点编号看原文」 */

.guide { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }

.guide li {
  position: relative; padding: 9px 11px 9px 30px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #FCFDFE; font-size: 12px; line-height: 1.62; color: var(--muted);
}

.guide li::before {
  content: ""; position: absolute; left: 13px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.guide b { display: block; color: var(--ink); font-size: 12.5px; font-weight: 640; margin-bottom: 2px; }
.guide span { display: block; }

/* ---------------------------------------------------------- 对话区 */

/* min-height:0 是必须的：.chat 是 .app 这个 grid 的子项，而 grid/flex 子项默认
   min-height:auto —— 内容一高就把自己撑开（欢迎区 6 张快捷卡在矮窗口下就够），
   于是 .app 固定高度被突破、整个文档变高、页面级滚动把顶栏顶出视口。
   整屏打开时屏幕通常够高，看不出来；站点右下角浮窗（高约 560px）必现，
   表现为「课程列表 / 模型设置」工具条凭空消失。让它能收缩，滚动就回到
   .chat__scroll 内部，顶栏永远在顶部。 */
.chat { display: flex; flex-direction: column; min-width: 0; min-height: 0; }

.chat__scroll { flex: 1; overflow-y: auto; padding: 32px 0 12px; min-height: 0; }

.wrap { width: min(880px, 100%); margin: 0 auto; padding: 0 28px; }

/* 空状态 */

.hero { padding: 26px 0 30px; }

.hero__kicker {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(24px, 3.4vw, 33px); line-height: 1.28; margin-bottom: 12px;
}

.hero p { max-width: 62ch; }

.samples { margin-top: 26px; display: grid; gap: 10px; }

.sample {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
  border: 1px solid var(--line); background: var(--panel);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: var(--body); font-size: 14px; line-height: 1.6;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}

.sample:hover {
  border-color: var(--line-strong); transform: translateY(-1px);
  box-shadow: var(--shadow); color: var(--ink);
}

.sample__no {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  margin-top: 1px;
}

/* 消息 */

.msg { margin-bottom: 26px; }

.msg__role {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}

.msg--user .msg__role { color: var(--accent); }

.msg__role i {
  font-style: normal; width: 18px; height: 18px; border-radius: 6px;
  display: grid; place-items: center; font-size: 10px;
  background: var(--line); color: var(--body);
}

.msg--user .msg__role i { background: var(--accent-soft); color: var(--accent); }

.msg--user .msg__body {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 17px; color: var(--ink);
  font-weight: 500;
}

.msg__body { font-size: 15px; }

/* markdown */

.md > * + * { margin-top: 11px; }
.md ul, .md ol { margin: 0; padding-left: 20px; }
.md li + li { margin-top: 5px; }
.md li::marker { color: var(--muted); }
.md strong { color: var(--ink); font-weight: 640; }
.md h3, .md h4 { font-size: 15px; margin-top: 18px; }
.md code {
  font-family: var(--mono); font-size: 12.5px;
  background: #F1F3F7; border: 1px solid var(--line);
  border-radius: 5px; padding: 1px 5px; color: var(--ink);
}
.md hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

.cite {
  display: inline-block; font-size: 11px; font-weight: 700;
  vertical-align: 1px; margin-left: 2px; padding: 0 5px;
  border-radius: 5px; background: var(--accent-soft); color: var(--accent);
  text-decoration: none; line-height: 16px;
}

.cursor {
  display: inline-block; width: 7px; height: 15px; margin-left: 2px;
  background: var(--accent); vertical-align: -2px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink { to { visibility: hidden; } }

/* 思考中 */

.thinking { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; }

.thinking i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: bounce 1.2s ease-in-out infinite;
}

.thinking i:nth-child(2) { animation-delay: .15s; opacity: .7; }
.thinking i:nth-child(3) { animation-delay: .3s; opacity: .45; }

@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }

/* 引用来源 */

.sources { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 13px; }

.sources__head {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
  display: flex; align-items: center; gap: 8px;
}

.src {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #FCFDFE; margin-bottom: 6px; overflow: hidden;
}

/* 一行 = 可展开的标题（左）+ 课程主页入口（右）。
   <a> 不能塞进 <button> 里，所以两者做成兄弟节点，靠 .src__row 排一行。 */
.src__row { display: flex; align-items: center; }

.src__head {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 9px; width: 100%;
  border: 0; background: none; text-align: left; padding: 9px 13px;
  font-size: 13px; color: var(--ink);
}

.src__head:hover { background: var(--accent-soft); }

.src__page {
  flex: none; padding: 9px 12px; font-size: 11.5px; font-weight: 600;
  color: var(--accent); text-decoration: none; white-space: nowrap;
  border-left: 1px solid var(--line);
}

.src__page:hover { background: var(--accent-soft); color: var(--accent-ink); }

.src__no {
  flex: none; font-size: 10.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); border-radius: 5px; padding: 1px 6px;
}

.src__title { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.src__sec {
  flex: 1; min-width: 0; font-size: 12px; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.src__chev { flex: none; color: var(--muted); font-size: 10px; transition: transform .18s; }
.src.is-open .src__chev { transform: rotate(90deg); }

.src__text {
  display: none; padding: 0 13px 12px 13px;
  font-size: 13px; color: var(--body); white-space: pre-wrap;
  border-top: 1px dashed var(--line); margin-top: 0; padding-top: 10px;
}

.src.is-open .src__text { display: block; }

/* 提示条 */

.notice {
  border-radius: var(--radius-sm); padding: 12px 15px; font-size: 13.5px;
  border: 1px solid var(--line-strong); background: var(--panel);
  display: flex; gap: 11px; align-items: flex-start;
}

.notice--warn { border-color: #FED7AA; background: var(--warn-soft); color: var(--warn); }
.notice--err { border-color: #FECACA; background: var(--danger-soft); color: var(--danger); }
.notice b { color: inherit; }
.notice a { color: inherit; text-decoration: underline; }
.notice__actions { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------------------------------------------------------- 课程简介卡 */

/* 点左侧课程名时插进对话流的卡片：层级 / 时长 / 授课对象 + 课程主页入口。
   卡内按钮用的是全站 .btn，只有主按钮（查看课程主页）带 .btn--primary。 */

.msg--card .msg__role i { background: var(--accent-soft); color: var(--accent); }
.msg--card { margin-bottom: 22px; }

.ccard {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: linear-gradient(180deg, #FCFDFF, #F6F9FF);
  padding: 18px 20px 16px;
}

.ccard__kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}

.ccard__title { font-size: 18px; line-height: 1.45; }

.ccard__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

.chip {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 600; color: var(--body);
  border: 1px solid var(--line-strong); background: var(--panel);
  border-radius: 999px; padding: 3px 10px; line-height: 1.5;
}

.chip--star { border-color: #BFD3FF; background: var(--accent-soft); color: var(--accent-ink); }
.chip--wide { color: var(--muted); font-weight: 500; }

.ccard__desc { margin-top: 12px; font-size: 14px; color: var(--body); }
.ccard__kw { margin-top: 9px; font-size: 12.5px; color: var(--muted); }

/* 课纲名 ≠ 站点页名时补一行出处（例：课纲《敏捷实战…》= 站点页《敏捷之道…》），
   访客在引用来源里看到另一个名字时就不至于是两门课 */
.ccard__alt {
  margin-top: 9px; font-size: 12px; color: var(--muted);
  padding-top: 9px; border-top: 1px dashed var(--line);
}

.ccard__acts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}

.ccard__none { font-size: 12.5px; color: var(--muted); }
.btn__arrow { font-weight: 400; }

/* ---------------------------------------------------------- 课程主页入口 */

/* 回答下方的「课程主页」胶囊：把这一答里涉及的课程一次列出来 */
.rel { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }

.rel__k {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-right: 2px;
}

.rel__item {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 550; text-decoration: none;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 4px 12px; background: var(--panel); color: var(--accent-ink);
  transition: border-color .15s, background .15s;
}

.rel__item:hover { border-color: var(--accent); background: var(--accent-soft); }
.rel__item--lv { color: var(--body); }

/* 正文里出现的课程名 → 课程主页 */
.ilink { color: var(--accent-ink); text-decoration: none; border-bottom: 1px solid #C7D5F8; }
.ilink:hover { border-bottom-color: var(--accent); }

/* 模型设置入口默认不出现，只有地址带 ?cfg=1 时（讲师自用调试）才显示 */
html:not(.is-cfg) #cfgBtn { display: none; }

/* ---------------------------------------------------------- 输入区 */

.composer { border-top: 1px solid var(--line); background: var(--panel); padding: 15px 0 18px; }

.composer__box {
  border: 1px solid var(--line-strong); border-radius: 14px; background: var(--panel);
  padding: 11px 12px 9px 15px; transition: border-color .15s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(11, 18, 32, .03);
}

.composer__box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.composer textarea {
  width: 100%; border: 0; outline: 0; resize: none; font: inherit;
  color: var(--ink); background: none; max-height: 168px; line-height: 1.65;
}

.composer textarea::placeholder { color: #A8B1C0; }

.composer__foot { display: flex; align-items: center; gap: 10px; margin-top: 9px; }

.composer__hint { font-size: 11.5px; color: var(--muted); flex: 1; }

.btn {
  border: 1px solid var(--line-strong); background: var(--panel); color: var(--body);
  height: 34px; padding: 0 15px; border-radius: 9px; font-size: 13.5px; font-weight: 550;
  transition: border-color .15s, background .15s, color .15s;
}

.btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.btn--primary {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.btn--primary:hover:not(:disabled) { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }

.btn--ghost { border-color: transparent; background: none; }

/* ---------------------------------------------------------- 设置面板 */

.mask {
  position: fixed; inset: 0; background: rgba(11, 18, 32, .42);
  display: none; align-items: center; justify-content: center; z-index: 60; padding: 24px;
  backdrop-filter: blur(2px);
}

.mask.is-open { display: flex; }

.modal {
  width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--panel); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px 28px 24px;
}

.modal__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.modal__head h2 { font-size: 18px; }
.modal__head p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.modal__close {
  margin-left: auto; border: 0; background: none; font-size: 20px; line-height: 1;
  color: var(--muted); padding: 2px 4px;
}
.modal__close:hover { color: var(--ink); }

.field { margin-bottom: 15px; }

.field label {
  display: block; font-size: 12.5px; font-weight: 620; color: var(--ink); margin-bottom: 6px;
}

.field input, .field select {
  width: 100%; height: 38px; padding: 0 12px; font: inherit; font-size: 13.5px;
  color: var(--ink); background: var(--panel);
  border: 1px solid var(--line-strong); border-radius: 9px; outline: 0;
}

.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.field small { display: block; font-size: 11.5px; color: var(--muted); margin-top: 5px; line-height: 1.6; }

.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.modal__foot {
  display: flex; align-items: center; gap: 10px; margin-top: 20px;
  padding-top: 17px; border-top: 1px solid var(--line);
}

.modal__foot .btn:last-child { margin-left: auto; }

.status { font-size: 12.5px; color: var(--ok); font-weight: 550; }
.status--err { color: var(--danger); }

/* ---------------------------------------------------------- 响应式 */

.menu-btn { display: none; }

@media (max-width: 960px) {
  .app { grid-template-columns: minmax(0, 1fr); height: calc(100vh - 64px); }

  .side {
    position: fixed; top: 64px; bottom: 0; left: 0; width: 300px; z-index: 40;
    transform: translateX(-102%); transition: transform .22s ease;
    box-shadow: var(--shadow-lg);
  }

  .side.is-open { transform: none; }

  .menu-btn { display: inline-flex; }

  .topbar { padding: 0 16px; gap: 10px; }
  .topbar .brand__sub { display: none; }
  .wrap { padding: 0 18px; }
  .chat__scroll { padding-top: 22px; }
  .field--row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand__title { font-size: 14px; }
  .pill--hide-sm { display: none; }
}

/* 窄屏：顶栏只保留品牌 + 菜单 + 设置，模式状态在输入框提示里显示 */
@media (max-width: 700px) {
  #modePill { display: none; }
  .topbar { padding: 0 12px; gap: 8px; height: 58px; }
  .brand { gap: 9px; }
  .brand__mark { width: 32px; height: 32px; border-radius: 10px; font-size: 13px; }
  .brand__title { font-size: 14px; }
  #cfgBtn { padding: 0 11px; font-size: 12px; }
  .app { height: calc(100vh - 58px); }
  .side { top: 58px; }
  .wrap { padding: 0 14px; }
  .composer__box { padding: 9px 10px 8px 12px; }
}

/* ============================================================
   嵌入模式（?embed=1）—— 被站点右下角浮窗装进 iframe 时生效
   ------------------------------------------------------------
   浮窗自带一行标题栏（应用名 + 新窗口打开 + 关闭），助手这层若再显示
   品牌区，同一个名称会连出两遍、还白占 30px 高度。
   嵌入时顶栏缩成一条工具条：左「课程列表」（窄屏下打开课程抽屉的入口，
   原来只有个 ☰ 图标，脱离独立页后没有上下文，补上文字），右「模型设置」。
   只改 display，元素仍在 —— app.js 里 $('homeBtn') / $('brandSub')
   是直接绑定与赋值的，删 DOM 会报错。
   ============================================================ */
html.is-embed .brand { display: none; }
html.is-embed .topbar { padding: 0 12px; gap: 8px; height: 48px; }
/* 嵌入时页面级标题在站点那一栏，这边顶栏只剩「课程列表 / 状态 / 新对话」，
   64px 会空一大截，压到 48px；.app 与抽屉顶边跟着改。 */
html.is-embed .app { height: calc(100vh - 48px); }
@media (max-width: 960px) {
  html.is-embed .side { top: 48px; }
  html.is-embed .menu-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0 12px; font-size: 12.5px; font-weight: 600;
  }
  html.is-embed .menu-btn::after { content: "课程列表"; }
}
