/* ==========================================================
   問卷填答
   接在 site.css 之後載入，沿用其色彩變數（--brand / --gold / --ink…）
   ========================================================== */

.swrap { --sq-gap: 26px; }
.swrap__inner { padding-bottom: 120px; }

/* ---------- 頁首 ---------- */
.shero {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; padding: 44px 0 40px; margin-bottom: 34px;
}
.shero__eyebrow {
  margin: 0 0 10px; font-size: 12px; letter-spacing: .24em;
  color: var(--gold); font-weight: 700;
}
.shero__title {
  font-family: var(--font-serif); font-size: clamp(23px, 3.6vw, 33px);
  margin: 0 0 8px; max-width: 30ch;
}
.shero__subtitle { margin: 0; color: rgba(255, 255, 255, .78); font-size: 15px; }

.shero__host { margin: 10px 0 0; font-size: 14px; color: rgba(255, 255, 255, .82); }
.shero__cross { margin: 14px 0 0; font-size: 14.5px; }
.shero__cross a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .5); }
.shero__cross a:hover { border-bottom-color: #fff; }

/* ---------- 開頭說明 ---------- */
.sintro { max-width: 68ch; margin-bottom: 22px; }
.sintro p { margin: 0 0 .9em; }

.sintro__sheet { max-width: 68ch; margin: -8px 0 22px; font-size: 14.5px; color: var(--ink-2); }

/* 個資同意：必須看得見，而且不能藏在收合的 details 裡——
   未展開的 details 內的 required checkbox 不可聚焦，
   瀏覽器會擋下送出卻不顯示任何訊息。 */
.sconsent {
  border: 1px solid var(--gold); border-radius: var(--radius);
  background: #fffdf6; padding: 16px 18px; margin-bottom: 22px;
}
.sconsent__box {
  display: flex; gap: 11px; align-items: flex-start;
  cursor: pointer; font-size: 14.5px; line-height: 1.75;
}
.sconsent__box input {
  margin: .3em 0 0; width: 18px; height: 18px; flex: none; accent-color: var(--brand);
}
.sconsent:has(input:checked) { border-color: var(--line); background: #fff; }
.sconsent.is-error { border-color: #b3261e; background: #fef6f5; }

.sprivacy {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 24px; font-size: 14.5px;
}
.sprivacy > summary {
  cursor: pointer; padding: 13px 18px; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.sprivacy > summary::-webkit-details-marker { display: none; }
.sprivacy > summary::after { content: "＋"; color: var(--gold); }
.sprivacy[open] > summary::after { content: "−"; }
.sprivacy .prose { padding: 0 18px 16px; color: var(--ink-2); }

.sguide {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 34px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.sguide__item {
  background: #fff; padding: 14px 18px; font-size: 13.5px; color: var(--ink-2);
}
.sguide__item strong { color: var(--brand); font-size: 15px; }

.snotice {
  border-radius: var(--radius); padding: 13px 16px; font-size: 14px;
  margin-bottom: 22px; line-height: 1.7;
}
.snotice--info { background: #eff6fb; border: 1px solid #c3dcea; color: #1d4f6b; }
.snotice--warn { background: #fffaeb; border: 1px solid #fedf89; color: #93370d; }

/* ---------- 區段 ---------- */
.ssec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 28px; margin-bottom: 22px;
}
.ssec--identity { border-color: var(--gold); box-shadow: inset 3px 0 0 var(--gold); }
.ssec--closing { background: #fbfaf7; }
.ssec__title {
  font-family: var(--font-serif); font-size: 20px; margin: 0 0 8px;
  padding-bottom: 10px; border-bottom: 2px solid var(--brand);
}
.ssec__lede { margin: 14px 0 0; color: var(--ink-2); font-size: 14.5px; }
.ssec__questions { display: flex; flex-direction: column; gap: var(--sq-gap); margin-top: 22px; }

@media (max-width: 620px) {
  .ssec { padding: 20px 16px; }
}

/* ---------- 條文對照 ---------- */
.sref {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fafaf8; margin-top: 18px;
}
.sref__summary {
  cursor: pointer; padding: 11px 16px; list-style: none;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.sref__summary::-webkit-details-marker { display: none; }
.sref__label {
  font-size: 11px; letter-spacing: .12em; font-weight: 700;
  color: #fff; background: var(--brand); padding: 2px 8px; border-radius: 3px; flex: none;
}
.sref__caption { font-size: 14px; font-weight: 600; color: var(--ink-2); flex: 1; }
.sref__toggle { flex: none; color: var(--gold); font-weight: 700; }
.sref__toggle::before { content: "收合"; font-size: 12px; font-weight: 500; }
.sref:not([open]) .sref__toggle::before { content: "展開條文"; }

.sref__pair {
  display: grid; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) { .sref__pair { grid-template-columns: 1fr 1fr; } }
.sref__col { background: #fff; padding: 16px 18px; }
.sref__col--new { background: #fdfcf9; }
.sref__colhead {
  font-size: 11.5px; letter-spacing: .08em; font-weight: 700;
  color: var(--ink-3); margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--line);
}
.sref__col--new .sref__colhead { color: var(--gold); border-bottom-color: var(--gold); }
.sref__text {
  white-space: pre-line; font-size: 14px; line-height: 1.85; color: var(--ink);
  font-feature-settings: "palt" 1;
}
.sref__empty { font-size: 14px; color: var(--ink-3); margin: 0; font-style: italic; }

/* overflow-x:auto 會讓另一軸的 visible 也算成 auto，這個容器因此是「捲動容器」，
   底下 thead 的 sticky 是相對它、不是相對視窗——所以要給高度上限才有意義。 */
.sref__scroll { overflow-x: auto; max-height: 70vh; border-top: 1px solid var(--line); background: #fff; }
.sref__table { width: 100%; border-collapse: collapse; min-width: 720px; }
/* 有指定欄寬才切固定版面，其餘表格維持瀏覽器的自動配置 */
.sref__table--fixed { table-layout: fixed; }
.sref__table--fixed td, .sref__table--fixed th { overflow-wrap: break-word; }
.sref__table th, .sref__table td {
  border: 1px solid var(--line); padding: 10px 12px; vertical-align: top; text-align: left;
}
.sref__table thead th {
  background: #f2f0eb; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  /* top 是相對 .sref__scroll 這個捲動容器，不是視窗。
     以前寫 var(--header-h) 等於把表頭整個往下推 52px，正好壓在第 1 列上面。 */
  position: sticky; top: 0; z-index: 1;
  background-clip: padding-box;
  /* border-collapse 下邊框屬於表格而非儲存格，sticky 的 th 會把邊框留在原地 */
  box-shadow: inset 0 -1px 0 var(--line);
}
.sref__table .sref__text { font-size: 13px; line-height: 1.7; }
/* 右欄以 {{…}} 標出的修正處 */
.sref__chg {
  font-weight: 700; text-decoration: underline;
  text-underline-offset: .18em; text-decoration-thickness: from-font;
}
.sref__legend { float: right; font-weight: 400; letter-spacing: 0; color: var(--ink-3); }

/* 矩陣最右欄：一格多筆條號時改列項目符號 */
.sref__cites { margin: 0; padding-left: 1.15em; font-size: 13px; line-height: 1.7; color: var(--ink); }
.sref__cites li { margin: 0 0 .25em; }
.sref__cites li:last-child { margin-bottom: 0; }
.sref__cites li::marker { color: var(--gold); }

.sref__num { width: 2.4rem; text-align: center !important; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.sref__table tbody tr:target { background: #fff8e6; }

/* 窄螢幕：矩陣對照表不橫拉，改成一列一張卡，欄名用 data-label 印在值上面。
   720px 的 min-width 在手機上一定會溢出，橫拉著讀四欄條文並不好用。 */
@media (max-width: 760px) {
  .sref__scroll { overflow-x: visible; max-height: none; }
  .sref__table { min-width: 0; display: block; }
  .sref__table--fixed { table-layout: auto; }
  .sref__table thead { display: none; }
  .sref__table tbody, .sref__table tr, .sref__table td { display: block; width: auto !important; }
  .sref__table tr { border-bottom: 1px solid var(--line); }
  .sref__table tr:last-child { border-bottom: 0; }
  .sref__table td { border: 0; padding: 10px 14px 0; }
  .sref__table tr td:last-child { padding-bottom: 14px; }
  .sref__table td::before {
    content: attr(data-label); display: block; margin-bottom: 3px;
    font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--ink-3);
  }
  /* 編號那一格當卡片的標頭，不需要欄名 */
  .sref__table td.sref__num {
    background: #f2f0eb; padding: 7px 14px; text-align: left !important;
    font-weight: 700; color: var(--ink-2);
  }
  .sref__table td.sref__num::before { content: "事由 "; display: inline; margin: 0; letter-spacing: 0; }
  .sref__table tbody tr:target td.sref__num { background: #ffeaa8; }
}

/* ---------- 題目 ---------- */
.sq { scroll-margin-top: calc(var(--header-h) + 16px); }
.sq__head { display: flex; gap: 10px; align-items: baseline; }
.sq__code {
  flex: none; font-size: 11.5px; font-weight: 700; color: var(--brand);
  background: #eef2f6; padding: 2px 7px; border-radius: 3px;
  font-variant-numeric: tabular-nums;
}
.sq__title { font-weight: 600; font-size: 15.5px; line-height: 1.7; }
.sq__req { color: #a4352a; font-size: 11.5px; font-weight: 500; margin-left: 6px; }
.sq__help { margin: 6px 0 0; font-size: 13px; color: var(--ink-3); line-height: 1.7; }

.sq__input, .sq__textarea {
  width: 100%; margin-top: 10px; padding: 10px 13px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.sq__textarea { line-height: 1.8; resize: vertical; }
.sq__input:focus, .sq__textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15, 47, 86, .12);
}
.sq__input.is-error { border-color: #c0392b; background: #fdf5f4; }
.sq__error { margin: 6px 0 0; font-size: 13px; color: #a4352a; }

/* ---------- 單選 / 複選 ---------- */
.sopts { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.sopt {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent; transition: background .12s, border-color .12s;
}
.sopt:hover { background: #f7f6f3; }
.sopt input { margin: .35em 0 0; width: 17px; height: 17px; flex: none; accent-color: var(--brand); }
.sopt:has(input:checked) { background: #eef2f6; border-color: #c9d6e0; }
.sopt__label { font-size: 15px; line-height: 1.65; }
.sopt__other {
  margin: 2px 0 6px 39px; padding: 7px 11px; font: inherit; font-size: 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  width: calc(100% - 39px); max-width: 24rem;
}

/* ---------- 矩陣題 ---------- */
.smx { margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.smx__legend, .smx__row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px;
  align-items: center;
}
.smx__legend {
  background: #f2f0eb; padding: 9px 16px;
  font-size: 12px; font-weight: 700; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.smx__opts {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 6.6rem; text-align: center;
}
.smx__legend .smx__opts span { font-size: 11.5px; line-height: 1.4; }

.smx__row { padding: 11px 16px; border-bottom: 1px solid var(--line); }
.smx__row:last-child { border-bottom: 0; }
.smx__row:nth-child(even) { background: #fbfbfa; }
.smx__row:has(input:checked) { background: #f4f7fa; }
.smx__label {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 14.5px; line-height: 1.65;
}
.smx__label--head { font-size: 12px; }
.smx__num {
  flex: none; font-size: 11.5px; font-weight: 700; color: var(--ink-3);
  min-width: 1.4rem; font-variant-numeric: tabular-nums;
}
.smx__ref {
  flex: none; font-size: 11.5px; color: var(--gold); text-decoration: none;
  border-bottom: 1px dotted currentColor; align-self: center;
}
.smx__opt {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 7px 2px; border-radius: 5px;
}
.smx__opt:hover { background: #eef2f6; }
.smx__opt input { width: 17px; height: 17px; accent-color: var(--brand); }
.smx__opt span { display: none; }

/* 窄螢幕：整列改成卡片，選項顯示文字 */
@media (max-width: 760px) {
  .smx__legend { display: none; }
  .smx__row { grid-template-columns: 1fr; gap: 10px; padding: 14px 14px; }
  .smx__opts {
    grid-auto-flow: row; grid-auto-columns: auto;
    grid-template-columns: 1fr; gap: 2px; text-align: left;
  }
  .smx__opt { justify-content: flex-start; gap: 10px; padding: 8px 10px; background: #fff; border: 1px solid var(--line); }
  .smx__opt span { display: inline; font-size: 14.5px; }
  .smx__opt:has(input:checked) { background: #eef2f6; border-color: #c9d6e0; }
}

/* ---------- 檔案上傳 ---------- */
.sfile { margin-top: 12px; }
.sfile__list { list-style: none; padding: 0; margin: 0 0 10px; }
.sfile__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; font-size: 14px; margin-bottom: 6px;
}
.sfile__name { flex: 1; word-break: break-all; }
.sfile__size { color: var(--ink-3); font-size: 12.5px; flex: none; }
.sfile__remove {
  flex: none; border: 0; background: none; color: var(--ink-3);
  cursor: pointer; font-size: 16px; padding: 0 4px; border-radius: 4px;
}
.sfile__remove:hover { color: #a4352a; }
.sfile__hint { margin-top: 8px; }
.sfile__hint.is-error { color: #a4352a; }

/* ---------- 送出 ---------- */
.ssubmit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 28px; text-align: center;
}
.ssubmit__status { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }
.ssubmit__status strong { color: var(--brand); font-size: 19px; }
.btn--lg { padding: 14px 40px; font-size: 16px; }
.ssubmit__note { margin: 14px 0 0; font-size: 13px; color: var(--ink-3); line-height: 1.7; }

/* ---------- 底部進度條 ---------- */
.sbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.sbar__inner {
  display: flex; align-items: center; gap: 22px;
  padding: 11px 24px; flex-wrap: wrap;
}
.sbar__meter { flex: 1; min-width: 220px; }
.sbar__track {
  position: relative; height: 7px; border-radius: 999px;
  background: #e8e6e0; overflow: visible;
}
.sbar__fill {
  display: block; height: 100%; border-radius: 999px;
  background: var(--brand); transition: width .25s ease;
}
.sbar__mark {
  position: absolute; top: -3px; width: 2px; height: 13px;
  background: var(--gold); border-radius: 1px;
}
.sbar__text { margin-top: 6px; font-size: 12.5px; color: var(--ink-3); }
.sbar__text strong { color: var(--brand); font-size: 14px; }
.sbar__hint { margin-left: 8px; }
.sbar__save { display: flex; align-items: center; gap: 12px; flex: none; }
.sbar__state { font-size: 12.5px; color: var(--ink-3); }
.sbar__state.is-saving { color: var(--gold); }
.sbar__state.is-saved { color: #1f7a4d; }
.sbar__resume {
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  border-radius: var(--radius); padding: 6px 13px; font: inherit; font-size: 13px; cursor: pointer;
}
.sbar__resume:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 620px) {
  .sbar__inner { padding: 9px 16px; gap: 12px; }
  .sbar__save { width: 100%; justify-content: space-between; }
}

/* ---------- 續填連結對話框 ---------- */
.sdialog {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(16, 24, 32, .5);
  display: grid; place-items: center; padding: 24px;
}
.sdialog__panel {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  max-width: 480px; width: 100%; box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .45);
}
.sdialog__panel h3 { font-family: var(--font-serif); font-size: 19px; margin: 0 0 10px; }
.sdialog__panel p { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; line-height: 1.75; }
.sdialog__url {
  width: 100%; padding: 10px 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #f7f6f3; margin-bottom: 16px;
}
.sdialog__actions { display: flex; gap: 10px; }
.sdialog__note { font-size: 12.5px; color: var(--ink-3); margin: 14px 0 0 !important; }

/* ---------- 關閉頁 ---------- */
.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px 32px; text-align: center; max-width: 520px; margin: 40px auto;
}
.scard__eyebrow { font-size: 12px; letter-spacing: .22em; color: var(--gold); font-weight: 700; margin: 0 0 12px; }
.scard__title { font-family: var(--font-serif); font-size: 25px; margin: 0 0 14px; }
.scard__body { color: var(--ink-2); margin: 0 0 20px; }
.scard__meta { font-size: 13.5px; color: var(--ink-3); margin: 0 0 24px; }

/* ---------- 回執 ---------- */
.sdone { max-width: 860px; }
.sdone__head {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid #1f7a4d;
  border-radius: var(--radius-lg); padding: 30px 32px; margin: 34px 0 20px;
}
.sdone__head--draft { border-left-color: var(--gold); }
.sdone__head .scard__title { margin-bottom: 12px; }
.sdone__head .prose { font-size: 15px; color: var(--ink-2); }

/* 報名序號：現場報到會被念出來的那個號碼，做大一點好認 */
.sdone__serial {
  margin: 0 0 14px; font-size: 15px; color: var(--ink-2);
}
.sdone__serial strong {
  font-size: 26px; font-variant-numeric: tabular-nums; letter-spacing: .02em;
  color: var(--brand); margin-left: 6px;
}
.sdone__notice {
  background: #fffaeb; border: 1px solid #fedf89; border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 22px; font-size: 14.5px; color: #7a4b0b;
}
.sdone__notice :first-child { margin-top: 0; }
.sdone__notice :last-child { margin-bottom: 0; }

.sdone__stats {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 26px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.sdone__stat { background: #fff; padding: 14px 18px; }
.sdone__k { font-size: 11.5px; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 5px; }
.sdone__v { font-size: 14.5px; line-height: 1.6; }

.stag { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.stag--ok { background: #ecfdf3; color: #085d3a; }
.stag--warn { background: #fff8e6; color: #93700a; }

.sdone__sec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-bottom: 18px;
}
.sdone__sec > h2 {
  font-family: var(--font-serif); font-size: 18px; margin: 0 0 18px;
  padding-bottom: 9px; border-bottom: 1px solid var(--line);
}
.sdone__id { display: grid; gap: 12px; margin: 0; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.sdone__id dt { font-size: 12px; color: var(--ink-3); }
.sdone__id dd { margin: 2px 0 0; font-size: 15px; }

.sdone__q { padding: 14px 0; border-bottom: 1px solid var(--line-soft, #f0eeea); }
.sdone__q:last-child { border-bottom: 0; padding-bottom: 0; }
.sdone__qt { font-weight: 600; font-size: 14.5px; line-height: 1.7; display: flex; gap: 9px; align-items: baseline; }
.sdone__code {
  flex: none; font-size: 11px; font-weight: 700; color: var(--brand);
  background: #eef2f6; padding: 2px 6px; border-radius: 3px;
}
.sdone__a { list-style: none; padding: 0; margin: 8px 0 0; }
.sdone__a li {
  display: grid; grid-template-columns: minmax(0, 1fr) 10rem; gap: 12px;
  padding: 5px 0; font-size: 14px; border-bottom: 1px dotted #eceae4;
}
.sdone__a li:last-child { border-bottom: 0; }
.sdone__a li.is-blank { color: var(--ink-3); }
.sdone__al { color: var(--ink-2); }
.sdone__av { font-weight: 600; }
.sdone__a li:not(:has(.sdone__al)) { grid-template-columns: 1fr; }
.sdone__a li:not(:has(.sdone__al)) .sdone__av { font-weight: 400; white-space: pre-line; }
@media (max-width: 620px) {
  .sdone__a li { grid-template-columns: 1fr; gap: 2px; }
  .sdone__av { font-size: 14.5px; }
}

.sdone__files { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.sdone__files li { padding: 7px 0; border-bottom: 1px dotted #eceae4; }
.sdone__actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 14px; }
.sdone__next {
  border: 1px solid var(--gold); border-radius: var(--radius);
  background: #fffdf6; padding: 22px 24px; margin: 26px 0 18px;
}
.sdone__next h2 { margin: 0 0 6px; font-family: var(--font-serif); font-size: 19px; }
.sdone__next p { margin: 0 0 16px; color: var(--ink-2); font-size: 14.5px; max-width: 56ch; }

.sdone__fine { font-size: 12.5px; color: var(--ink-3); }

/* ---------- 列印 ---------- */
@media print {
  /* .sconsent 刻意不隱藏：紙本回執要留下個資同意的紀錄 */
  .sbar, .sdialog, .sdone__actions, .shero, .sguide, .sprivacy { display: none !important; }
  .swrap__inner { padding-bottom: 0; }
  .ssec, .sdone__sec, .sdone__head, .sdone__stats { border: 1px solid #ccc; break-inside: avoid; }
  .sref { break-inside: avoid; }
  .sref__scroll { overflow: visible; }
  .sref__table { min-width: 0; font-size: 10.5px; }
  /* 紙本不需要（也不該）繼承捲動容器的 sticky 位移 */
  .sref__table thead th { position: static; box-shadow: none; }
  .sref__scroll { max-height: none; }
  body { background: #fff; }
}
