/* ============================================================
   云图床 PicBed — 主样式（浅色樱花粉主题）
   配色与风格移植自「异环 Mod 学院」：
   粉白底 #fff5f6 / 玫瑰粉主色 #e25d85 / 粉边框 #efcbd8 / 深紫褐文字 #4d2943
   ============================================================ */

* { box-sizing: border-box; }

:root {
  --bg: #fff5f6;
  --bg-2: #ffeaf0;
  --card: rgba(255, 253, 253, 0.96);
  --card-solid: #fffafa;
  --card-hover: #fff0f4;
  --border: #efcbd8;
  --border-strong: #e2b7c9;
  --text: #4d2943;
  --muted: #80667a;
  --faint: #ad94a5;
  --accent: #e25d85;
  --accent-2: #e7799c;
  --accent-hover: #ce4d76;
  --danger: #b8465e;
  --ok: #28795f;
  --grad: linear-gradient(135deg, #f7afc5, #e7799c 45%, #e25d85);
  --radius: 16px;
  --shadow: 0 13px 30px rgba(164, 76, 109, 0.12);
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace;
}

html { color-scheme: light; }

[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(135deg, #fff8f9 0%, #fff1f5 48%, #fff8f3 100%);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

::selection { background: rgba(226, 93, 133, 0.28); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #f0ced9, #e8a8bd); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
b { font-weight: 600; }
code { font-family: var(--mono); font-size: 12px; color: #bc3861; }
.muted { color: var(--muted); font-weight: 400; font-size: 13px; }
.flex1 { flex: 1; }

/* ───────── 柔和粉彩光斑背景 ───────── */

.aurora-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(226, 93, 133, 0.07), transparent 60%),
    radial-gradient(1000px 700px at -10% 20%, rgba(255, 209, 224, 0.55), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(255, 232, 240, 0.7), transparent 60%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
  animation: drift 26s ease-in-out infinite alternate;
}
.b1 { width: 46vw; height: 46vw; left: -12vw; top: -14vw; background: radial-gradient(circle, rgba(255,180,205,.55), transparent 65%); }
.b2 { width: 40vw; height: 40vw; right: -10vw; top: 6vh; background: radial-gradient(circle, rgba(231,121,156,.4), transparent 65%); animation-delay: -8s; }
.b3 { width: 42vw; height: 42vw; left: 24vw; bottom: -18vw; background: radial-gradient(circle, rgba(255,209,224,.65), transparent 65%); animation-delay: -16s; }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4vw, 3vh) scale(1.12); }
  100% { transform: translate(-3vw, -4vh) scale(0.95); }
}

/* ───────── 樱花花瓣（贴图花瓣，桌面端显示） ───────── */

.buyer-petal-layer { position: fixed; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.buyer-petal-layer__petal {
  position: absolute;
  inset-block-start: var(--petal-y);
  inset-inline-start: var(--petal-x);
  inline-size: var(--petal-size);
  block-size: var(--petal-size);
  opacity: var(--petal-opacity);
  background: url("assets/sakura-petal.png") center / contain no-repeat;
  filter: blur(var(--petal-blur));
  transform-origin: center;
  will-change: translate, rotate;
  animation:
    petal-drop var(--petal-duration) linear var(--petal-delay) infinite,
    petal-turn calc(var(--petal-duration) * .68) linear var(--petal-delay) infinite;
}
@keyframes petal-drop {
  from { translate: 0 0; }
  to { translate: var(--petal-drift) 130vh; }
}
@keyframes petal-turn {
  from { rotate: 0deg; }
  to { rotate: var(--petal-turn); }
}
@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .buyer-petal-layer { display: none; }
}

/* ───────── 令牌门禁页 ───────── */

#gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff8f9 0%, #fff1f5 48%, #fff8f3 100%);
}
.gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(320px, 86vw);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 30px 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.gate-card::before {
  content: ""; position: absolute; inset: 7px; pointer-events: none;
  border: 1px solid rgba(226, 93, 133, 0.12); border-radius: 14px;
}
.gate-logo { font-size: 46px; line-height: 1; }
.gate-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.gate-card input[type="password"] { width: 100%; text-align: center; }
.gate-card .btn { width: 100%; }

/* ───────── 顶栏 / 页脚 ───────── */

.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(255, 253, 253, 0.82);
  border-bottom: 1px solid var(--border);
}

.topbar > .logo, .topbar > nav { position: relative; z-index: 2; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 16px;
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; letter-spacing: .5px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); font-size: 17px;
  box-shadow: 0 0 22px rgba(226, 93, 133, 0.4);
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 14px rgba(226,93,133,.35); }
  50%     { box-shadow: 0 0 24px rgba(231,121,156,.55); }
}
.logo-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(226, 93, 133, 0.4);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 2px;
  vertical-align: 2px;
  letter-spacing: 1px;
  background: rgba(226, 93, 133, 0.08);
}

.topbar nav a {
  color: var(--muted);
  margin-left: 8px;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all .18s;
}
.topbar nav a:hover { color: var(--accent-hover); background: rgba(226, 93, 133, 0.08); text-decoration: none; }
.topbar nav a.on {
  background: var(--grad); color: #fff; font-weight: 700;
  box-shadow: 0 4px 0 rgba(159, 49, 85, 0.25), 0 6px 14px rgba(226, 93, 133, 0.22);
}

main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 16px 48px;
  flex: 1;
  position: relative;
  z-index: 2;
}

footer {
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  padding: 20px 16px 28px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
  background: rgba(255, 250, 250, 0.6);
}

/* ───────── 卡片 / 上传区 ───────── */

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.card::before {
  content: ""; position: absolute; inset: 7px; pointer-events: none;
  border: 1px solid rgba(226, 93, 133, 0.1); border-radius: calc(var(--radius) - 5px);
}

#dropZone {
  position: relative; z-index: 1;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 44px 20px 36px;
  text-align: center;
  cursor: pointer;
  outline: none;
  transition: border-color .18s, background .18s, transform .18s;
  background: rgba(255, 246, 249, 0.6);
}
#dropZone:hover, #dropZone:focus {
  border-color: var(--accent);
  background: rgba(226, 93, 133, 0.05);
}
#dropZone.drag {
  border-color: var(--accent);
  background: rgba(226, 93, 133, 0.1);
  transform: scale(1.01);
}
.dz-icon { color: var(--accent); margin-bottom: 10px; }
.dz-main { font-size: 16px; margin: 6px 0 4px; }
.dz-main .link { color: var(--accent); text-decoration: underline; }
.dz-sub { color: var(--muted); font-size: 13px; margin: 4px 0; }

.token-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.token-row.center { justify-content: center; margin-top: 14px; }
.token-row input { flex: 1; }

.warn {
  color: #91552b;
  background: rgba(182, 106, 56, 0.07);
  border: 1px solid rgba(182, 106, 56, 0.32);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
  margin: 12px 0 0;
  position: relative;
  z-index: 1;
}

/* ───────── 输入框 / 按钮 ───────── */

input[type="text"], input[type="password"], input[readonly], select {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 93, 133, 0.14); }
input[readonly] { font-family: var(--mono); }
.row-label { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.token-row select { flex: 1; min-width: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all .18s;
  color: var(--text);
  background: var(--card-solid);
  user-select: none;
}
.btn:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn.primary {
  background: var(--grad);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 0 rgba(159, 49, 85, 0.28), 0 8px 16px rgba(226, 93, 133, 0.18);
}
.btn.primary:hover { filter: brightness(1.06); color: #fff; }
.btn.ghost { background: transparent; }
.btn.ghost:hover { color: var(--accent-hover); }
.btn.danger { background: transparent; border-color: rgba(184, 70, 94, 0.4); color: var(--danger); }
.btn.danger:hover { background: rgba(184, 70, 94, 0.08); color: var(--danger); }
.btn.sm { padding: 5px 11px; font-size: 12.5px; border-radius: 8px; }

/* ───────── 上传队列 ───────── */

#queue { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.q-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.q-top { display: flex; align-items: center; gap: 10px; }
.q-name {
  font-size: 13.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
}
.q-size { color: var(--muted); font-size: 12px; }
.q-status { margin-left: auto; font-size: 12px; color: var(--muted); }
.q-status.ok { color: var(--ok); }
.q-status.err { color: var(--danger); }
.q-cancel {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 2px 4px;
}
.q-cancel:hover { color: var(--danger); }

.bar {
  height: 6px;
  background: rgba(226, 93, 133, 0.12);
  border-radius: 999px;
  margin-top: 9px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width .15s;
}

/* ───────── 结果卡片 / 历史记录 ───────── */

.history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 2px 12px;
}
.history-head h2 { font-size: 17px; margin: 0; font-weight: 900; }

#results { display: flex; flex-direction: column; gap: 12px; }

.result {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  animation: rise .25s ease;
  position: relative;
  overflow: hidden;
}
.result::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: .9;
}
.result.new { border-color: rgba(226, 93, 133, 0.55); }
@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.thumb {
  flex: 0 0 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff0f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
}
.thumb img, .thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb .ext {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.r-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.r-head { display: flex; align-items: baseline; gap: 10px; }
.r-name {
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r-size { color: var(--muted); font-size: 12px; flex-shrink: 0; }

.r-link { display: flex; gap: 8px; }
.r-link input { flex: 1; min-width: 0; }

.r-fmt { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.chip {
  font-family: var(--font);
  background: rgba(255, 250, 250, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  padding: 3px 11px;
  cursor: pointer;
  transition: all .16s;
}
.chip:hover { color: var(--accent-hover); border-color: rgba(226, 93, 133, 0.5); background: rgba(226, 93, 133, 0.08); }
.chip.on {
  color: #fff;
  border: none;
  background: var(--grad);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(226, 93, 133, 0.3);
}

/* ───────── 管理页 ───────── */

.login-card { max-width: 460px; margin: 60px auto; text-align: center; }
.login-card h2 { margin: 0 0 6px; }

.stats-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

/* 文件夹条 */
.folder-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.fchip {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 250, 250, 0.85);
  color: var(--muted);
  cursor: pointer;
  transition: all .16s;
}
.fchip i { font-style: normal; font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.fchip:hover { color: var(--accent-hover); border-color: rgba(226, 93, 133, 0.5); background: rgba(226, 93, 133, 0.08); }
.fchip.on {
  color: #fff;
  border: none;
  background: var(--grad);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(226, 93, 133, 0.3);
}
.fchip.on i { color: rgba(255, 255, 255, 0.85); }
.fchip.add { border-style: dashed; color: var(--accent); }
.fchip.del { color: var(--danger); border-color: rgba(184, 70, 94, 0.4); }
.fchip.del:hover { color: var(--danger); background: rgba(184, 70, 94, 0.08); border-color: rgba(184, 70, 94, 0.6); }

/* 存储条（Windows 此电脑驱动器风格，粉色） */
.storage-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px 14px;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.storage-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.storage-head .muted { font-weight: 400; font-variant-numeric: tabular-nums; }
.storage-track {
  position: relative;
  height: 18px;
  border-radius: 9px;
  background: #ffe9f0;
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.storage-fill {
  height: 100%;
  width: 0;
  border-radius: 9px 0 0 9px;
  background: var(--grad);
  box-shadow: inset 0 -3px 0 rgba(159, 49, 85, 0.22);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.storage-fill.warn { background: linear-gradient(135deg, #f2a4b8, #d9647e); }
.storage-fill.danger { background: linear-gradient(135deg, #d9576f, #b8465e); }
.storage-ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to right, transparent 0 calc(10% - 1px), rgba(77, 41, 67, 0.16) calc(10% - 1px) 10%);
}
.storage-sub { margin-top: 7px; font-size: 12px; }

/* 类型 / 时间筛选条 */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fgroup { display: flex; align-items: center; gap: 6px; }
.flabel { font-size: 12.5px; color: var(--faint); }
.filter-bar .fchip { padding: 4px 12px; font-size: 12.5px; }
.filter-bar select { padding: 5px 10px; font-size: 12.5px; border-radius: 8px; }

#grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.g-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all .2s ease;
}
.g-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.g-thumb {
  height: 130px;
  background: #fff0f4;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: zoom-in;
  position: relative;
  font: inherit;
  display: block;
  width: 100%;
}
.g-thumb img, .g-thumb video {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.g-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  background: rgba(77, 41, 67, 0.35);
  opacity: 0;
  transition: opacity .15s;
}
.g-thumb:hover .g-zoom { opacity: 1; }
.g-folder {
  font-size: 11px;
  color: var(--accent);
  background: rgba(226, 93, 133, 0.08);
  border: 1px solid rgba(226, 93, 133, 0.25);
  border-radius: 999px;
  padding: 0 8px;
  margin-left: 4px;
  white-space: nowrap;
}
.g-thumb .ext { color: var(--faint); font-size: 12px; letter-spacing: 1px; }
.g-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.g-name {
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g-meta { color: var(--muted); font-size: 11.5px; }
.g-actions { display: flex; gap: 6px; margin-top: auto; }
.g-actions .btn { flex: 1; }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
}

/* ───────── Toast ───────── */

#toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%) translateY(90px);
  background: #4d2943;
  border: 1px solid #7d4869;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  z-index: 200; /* 必须高于悬浮窗(120)，否则提醒会被毛玻璃遮罩挡住 */
  max-width: 86vw;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.err { border-color: rgba(184, 70, 94, 0.6); color: #ffd9e1; }

/* ───────── 预览悬浮窗 ───────── */

body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(77, 41, 67, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: min(860px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--card-solid);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: 0 24px 70px -18px rgba(164, 76, 109, 0.45);
  animation: rise .25s ease;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 253, 253, 0.92);
  color: var(--text);
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: all .15s;
}
.modal-close:hover { color: var(--accent-hover); transform: rotate(90deg); }

.modal-media {
  display: grid;
  place-items: center;
  background: #2b1e2e;
  min-height: 160px;
}
.modal-media img {
  max-width: 100%;
  max-height: 60vh;
  display: block;
}
.modal-media video {
  width: 100%;
  max-height: 60vh;
  display: block;
  background: #000;
}

.modal-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.m-name { font-weight: 800; font-size: 15px; word-break: break-all; }
.m-meta { font-size: 12.5px; }
.m-link { display: flex; gap: 8px; }
.m-link input { flex: 1; min-width: 0; }
.m-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.m-move {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin-right: auto;
}
.m-move select { padding: 6px 10px; font-size: 12.5px; border-radius: 8px; }

/* ───────── 移动端 ───────── */

@media (max-width: 640px) {
  .result { flex-direction: column; }
  .thumb { flex-basis: auto; width: 100%; height: 160px; }
  .q-name { max-width: 45%; }
}
