/* ============================================================
   LoveBeyond.com 复刻纪念版样式
   原版: 2004-2014 table 布局, 776px 定宽
   复刻: H5 Grid/Flex 布局, 全设备自适应, 视觉 1:1 保留
   配色忠实原版: #003366 深蓝 / #FFCC66 黄 / #DFFFFF 浅蓝 / #D7F2FF
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #003366;      /* 原版主蓝 */
  --link: #000000;      /* 原版正文字链接 */
  --hover: #FF0000;     /* 原版 hover 红 */
  --card-yellow: #FFCC66;
  --card-blue: #DFFFFF;
  --sep-light: #D7F2FF;
  --gray: #666666;
  --font: "宋体", SimSun, "Microsoft YaHei", sans-serif;
}

body {
  font-family: var(--font);
  font-size: 12px;
  color: #000;
  background: #fff;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--hover); text-decoration: underline; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.wrap { width: 776px; max-width: 100%; margin: 0 auto; padding: 0 8px; }

/* ===== 顶部 ===== */
.top-bar { padding: 6px 0; }
.top-inner { display: flex; align-items: center; gap: 12px; }
.logo { flex: 0 0 139px; }
.banner { flex: 1; text-align: center; }
/* Banner 轮播：多条时叠在同一格子里淡入淡出（grid 堆叠，容器高度取最高一张） */
.banner { display: grid; }
.banner .bn-item { grid-area: 1 / 1; opacity: 0; transition: opacity .9s ease; line-height: 0; }
.banner .bn-item.on { opacity: 1; }
.banner .bn-item img { max-width: 100%; height: auto; }
.top-links { flex: 0 0 auto; text-align: right; line-height: 1.9; }
.top-links a { display: block; color: var(--navy); }

/* ===== 主导航 (原版 LI2.JPG 蓝色渐变条 + L22.JPG 右侧分割) =====
   注意：这两张图实际放在 assets/images/site/ 下，
        写成 ../images/ 会 404，导航背景条就"消失"了。 */
.main-nav { background: url("../images/site/LI2.JPG") repeat-x; height: 26px; }
.main-nav ul { display: flex; flex-wrap: wrap; }
.main-nav li { flex: 1; text-align: center; border-right: 1px solid #999;
  background: url("../images/site/L22.JPG") no-repeat right center; }
.main-nav li:last-child { border-right: 0; background: none; }
.main-nav a { display: block; line-height: 26px; color: #000; font-weight: bold; }
.main-nav a:hover { color: var(--hover); text-decoration: none; }
.main-nav a.on { color: var(--hover); }

/* ===== 三栏布局 (原版 table 181 + 594[410+180内嵌] → Grid 184/1fr/180) =====
   真身（用户提供的 2004/2005 截图）里右栏就是窄栏（站内公告/最新行程/歌迷刊物），
   歌迷会与 HOT MUSIC 另起一行横跨「中栏+右栏」—— 见 .home-extras。 */
.layout {
  display: grid;
  grid-template-columns: 184px 1fr 180px;
  gap: 10px;
  padding-top: 10px;
}

/* --- 左栏 --- */
/* 原版卡片定宽 166px (bbs_1/CHAT 系列图都是 166 宽), 居中放置 */
.card { margin: 0 auto 10px; width: 166px; }
.card-top, .card-bottom { display: block; width: 100%; }

.bbs-body {
  background: var(--card-yellow);
  text-align: center;
  padding: 8px 6px;
  line-height: 1.7;
}
.bbs-title { color: #f43C00; font-size: 13px; display: block; margin-bottom: 4px; }
.bbs-title:hover { color: #f43C00; }
.bbs-body p { color: #333; }
.bbs-body .welcome { color: #dd3C00; margin-top: 4px; }

/* 聊天室卡: 结构照抄原版 — 第一行"昵称:输入框", 第二行登录按钮右对齐,
   CHAT2.GIF 是 166x58 完整背景图(自带 LOVEBEYOND 装饰字), 严禁平铺 */
.chat-body {
  background: var(--card-blue) url("../images/site/CHAT2.GIF") no-repeat center top;
  height: 58px;
  padding-top: 6px;
  overflow: hidden;
}
.chat-row1 {
  display: flex; justify-content: center; align-items: center; gap: 2px;
  white-space: nowrap;
}
.chat-label { color: var(--navy); white-space: nowrap; flex: 0 0 auto; }
.chat-row2 { width: 90px; margin: 3px auto 0; text-align: right; }
.chat-row2 img { cursor: pointer; }
.chat-input {
  width: 86px; height: 18px; border: 1px solid var(--navy);
  color: var(--navy); font-size: 12px; padding: 0 4px;
}

.koma-link { display: block; margin-bottom: 10px; }
.koma-link img { width: 168px; display: block; margin: 0 auto; }

.forum-list { margin-bottom: 8px; }
.forum-list > img { display: block; width: 100%; }
.forum-list li {
  background: url("../images/site/LT2.GIF") repeat-x;
  height: 22px; line-height: 22px; padding-left: 20px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.forum-list li::before { content: ""; display: inline-block;
  width: 15px; height: 7px; margin-right: 4px;
  background: url("../images/site/LT5.GIF") no-repeat; }
.forum-list li a { color: var(--link); }

.bbs-rec-title { text-align: left; font-weight: bold; margin: 4px 0; }

/* --- 中栏 --- */
.col-main { padding-top: 4px; }
.sec-title { display: block; margin: 14px 0 6px; }
.sec-title:first-child { margin-top: 0; }

.news-list li {
  display: flex; align-items: baseline; gap: 6px;
  padding: 4px 2px;
  border-bottom: 1px dotted #ddd;
}
.news-list img { flex: 0 0 4px; align-self: center; }
/* 原版日期紧跟标题(不贴右), 标题不强制撑满 */
.news-list a { flex: 0 1 auto; }
.news-list time { color: var(--gray); font-size: 11px; white-space: nowrap; flex: 0 0 auto; }

/* ============================================================
   歌迷文章列表 (.art-list) —— 对齐原站 article.htm 的表格版式
   原站是 <table width=400> 三列:
     ① td width=12  圆点图 04_A.GIF
     ② td width=300 标题链接（左对齐，自然宽度）
     ③ td width=77  作者名（在右侧定宽列）
   也就是"左标题、右作者"。原来的写法把 <span class="author">
   紧跟在链接后面（flex 顺序排下来），作者就贴到标题尾巴上了，
   跟原版完全不是一回事。这里用「标题撑满 + 作者固定右列」还原。
   ============================================================ */
.art-list li { gap: 0; }
.art-list li > .dot {
  flex: 0 0 12px;
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
}
.art-list li > .dot img { flex: none; }
/* 标题：占满剩余宽度，向左对齐 —— 作者因此被推到最右 */
.art-list li > a { flex: 1 1 auto; min-width: 0; text-align: left; }
/* 作者：定宽右列，紧跟标题之后但不贴标题文字 */
.art-list .author {
  flex: 0 0 77px;
  text-align: left;
  color: var(--gray);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .art-list .author { flex: 0 0 60px; font-size: 10.5px; }
}

/* --- 右栏 --- */
.col-right img { display: block; max-width: 100%; }
.col-right > img { margin-bottom: 4px; }
/* 原版公告盒: 浅蓝底圆角边框, 文字居中 (gg.gif 标题 + GG2.JPG 底条之间)
   ⚠ 别再用固定 height:100px + overflow:hidden —— 公告一长就整段被吃掉、
   或撑破边框溢到框外（用户反馈「公告框都超出来了」）。
   改成 min-height 兜底 + 自动增高 + 长词强制折行。 */
.gg-box {
  background: #EAF6FF;
  border: 1px solid #A5CFE8;
  border-radius: 6px;
  padding: 10px 8px;
  min-height: 100px;
  font-size: 11px; line-height: 1.7;
  text-align: center;
  overflow-wrap: anywhere;   /* 超长英文/无空格串也能折行 */
  word-break: break-word;
}
.gg-box > :first-child { margin-top: 0; }
.gg-box > :last-child { margin-bottom: 0; }
.gg-box img, .gg-box table { max-width: 100% !important; }
.gg-box p { margin: 0 0 6px; }
.gg-box .red { color: red; }
.gg-box .gray { color: #999; }

/* 公告过长时的自动滚动：外层定高裁剪，内层由 JS 做无缝上滚。
   只有加 .gg-scroll（服务端按字数判断）才滚，短公告保持静态。
   内层用 padding 顶出上下留白，这样滚到边界时文字不会贴框。 */
.gg-box.gg-scroll { height: 100px; overflow: hidden; position: relative; }
.gg-box.gg-scroll .gg-inner { padding: 10px 0; will-change: transform; }
.gg-more { text-align: right; margin: 2px 0 0; font-size: 11px; }
.gg-more a { color: #003366; }
.gg-more a:hover { color: #FF0000; }
.mt5 { margin-top: 5px; }

.xc-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.xc-table td { height: 20px; border-bottom: 1px solid #EDEDED; padding: 2px 0; }
.xc-table .d { width: 62px; color: #333; }

.zz-table { width: 100%; border-collapse: collapse; }
.zz-table img { float: left; margin-right: 6px; }
.zz-txt { background: #F7F7F7; padding: 6px; text-align: center; line-height: 1.6; }

/* ============================================================
   底部区：歌迷会 + HOT MUSIC
   ------------------------------------------------------------
   真身依据：用户提供的 2004 / 2005 两版首页截图。
   这两块**横跨「中栏 + 右栏」**，压在中栏正文（歌迷文章）与右栏
   （歌迷刊物）的下方，左右并排 —— 歌迷会占左半、HOT MUSIC 占右半，
   各有一条蓝色横线压在自己的框上。

   实现要点：它必须落在 .layout 这个 grid 里，用
   `grid-column: 2 / 4` 跨第 2、3 列（= 中栏 + 右栏），
   这样左边缘才和「最新消息 / 站内公告」那排对齐。
   （上一版把它塞进 200px 的右栏，挤到变形 —— 那是错的。）
   ============================================================ */
.home-extras {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 左右各半：歌迷会 | HOT MUSIC */
  gap: 0 14px;
  align-items: start;
  padding-top: 2px;
}
.he-col { min-width: 0; }
.he-title { display: block; max-width: 100%; height: auto; }

/* --- 歌迷会（左半）--- */
.he-gmh { text-align: center; }
.gmh-city {
  width: 100%; max-width: 274px; margin: 6px auto 0;
  border-collapse: collapse;
  border: 1px solid #C9C9C9; background: #FCFCFC;
}
.gmh-city td { text-align: center; padding: 2px; }
.gmh-city td.k { line-height: 1.7; font-size: 12px; }
.gmh-city a { color: var(--link); }

/* --- HOT MUSIC（右半，真身是 2 列 × 5 行）--- */
.he-music { text-align: center; }
.song-table {
  width: 100%; max-width: 290px; margin: 4px auto 0;
  border-collapse: collapse;
  border: 1px solid #C9C9C9; background: #FCFCFC;
}
.song-table td { padding: 3px 2px; text-align: left; font-size: 12px; vertical-align: middle; }
.song-table td.ico { width: 20px; text-align: center; line-height: 0; }
.song-table td.nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-table td.nm a { color: var(--link); }
.he-music .more { width: 100%; max-width: 290px; margin: 4px auto 0; text-align: right; }
.he-music .more img { display: inline-block; }

/* --- 兼容旧的 .bottom-row / .gmh / .music 写法（其他页面可能还在用）--- */
.line { display: block; margin: 18px auto 12px; width: 560px; max-width: 100%; }
.bottom-row { display: grid; grid-template-columns: 295px 295px; justify-content: center; }
.gmh { text-align: center; }
.gmh > a img, .gmh > img { display: block; margin: 0 auto; }
.music { text-align: center; }
.music > img { display: block; margin: 0 auto; }
.more { width: 281px; margin: 4px auto 0; text-align: right; }

/* ===== 页脚 ===== */
.footer-sep { width: 100%; border-collapse: collapse; }
.footer-sep td { height: 2px; background: var(--navy); }
.footer-sep td.light { height: 3px; background: var(--sep-light); }

.site-footer { text-align: center; padding: 18px 0 30px; line-height: 2; }
.copyright b { font-family: Verdana, sans-serif; font-size: 11px; }
.charity a { color: var(--link); }

/* ============================================================
   内页通用: 面包屑 / 当前位置
   原版: "当前位置: LoveBeyond首页 >> Beyond 相 册" (#172E5B 蓝)
   ============================================================ */
.crumb {
  margin: 5px 0 8px;
  padding: 3px 10px;
  background: #fff;
  border: 1px solid #444;
  color: #333;
  font-size: 12px;
}
.crumb a { color: #0000cc; }
.crumb a:hover { color: var(--hover); }
.crumb .sep { color: #888; margin: 0 2px; }

/* 内页标题条 (原版 519px 卡片组) */
.page-title {
  width: 100%; max-width: 519px; margin: 0 auto 10px;
  text-align: center; color: var(--navy);
  font-size: 14px; font-weight: bold; letter-spacing: 2px;
}

/* ============================================================
   新闻 / 文章 详情页正文 (老站 BR 排版 -> <p>)
   ============================================================ */
.news-date {
  display: block; text-align: center; color: var(--gray);
  font-size: 11px; margin: 0 auto 12px;
}
.news-content {
  max-width: 620px; margin: 0 auto;
  font-size: 13px; line-height: 1.9; color: #333;
  word-break: break-word;
}
.news-content p { margin: 0 0 8px; text-indent: 0; }
.news-content .news-img {
  display: block; max-width: 100%; height: auto;
  margin: 10px auto; border: 1px solid #ddd;
}
.news-content .news-video {
  max-width: 620px; margin: 10px auto; padding: 10px;
  background: #f7f7f7; border: 1px dashed #bbb;
  font-size: 12px; color: #666; text-align: center;
}
.news-content .news-video a { color: var(--navy); word-break: break-all; }
@media (max-width: 640px) {
  .news-content { font-size: 14px; line-height: 1.95; padding: 0 2px; }
  .news-content p { margin-bottom: 10px; }
}

/* 相册主页顶部大字图 (原版 images/01.gif 356x44)。
   注: 该图曾一度以为丢失 —— CDX 登记了 10 条 200 记录, 但逐一取回全是 404。
   后来改用"目录清单"(CDX 一次拉全 photo/images/*)拿到的 timestamp 重试, 一次成功,
   实体 356x44 与源页 width/height 完全吻合。留此备忘: 单条 URL 的 CDX 与目录 * 查询
   结果可能不一致, 取不到时先用目录清单核对一遍再判"无存档"。 */
.ph-bigtitle { text-align: center; margin: 6px 0 12px; }
.ph-bigtitle img { width: 356px; max-width: 90%; }

/* ============================================================
   相册: 分类卡片 (原版 519px table, 02/03/04/05/06.gif 拼框)
   ============================================================ */
.ph-wrap { max-width: 519px; margin: 0 auto; }

.ph-cat {
  width: 100%; max-width: 519px; margin: 0 auto 14px;
  border: 1px solid #C9D6E4; background: #fff;
}
/* 卡头: 03.gif 背景条 + #172E5B 分类名 */
.ph-cat-head {
  background: url("../images/photo/03.gif") repeat-x;
  background-color: #EAF1FA;
  min-height: 21px; line-height: 21px;
  padding-left: 18px;
  color: #172E5B; font-weight: bold;
}
.ph-cat-body {
  padding: 8px 12px 10px;
  color: #172E5B; line-height: 1.9;
  font-size: 12px;
}
.ph-cat-body a { color: #172E5B; margin-right: 2px; }
.ph-cat-body a:hover { color: var(--hover); }
.ph-mark { color: #172E5B; margin-right: 4px; }
.ph-sep { display: inline-block; width: 8px; }

/* ============================================================
   相册: 照片网格 (原版 table 缩略图 + 文字说明)
   ============================================================ */
.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 10px;
  margin-top: 6px;
}
.ph-item { text-align: center; }
.ph-item a { display: block; color: var(--link); }
.ph-thumb {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border: 1px solid #B9C8DA; background: #F2F5F9;
  display: block;
}
.ph-item a:hover .ph-thumb { border-color: var(--hover); }
.ph-cap {
  display: block; margin-top: 3px; font-size: 11px;
  color: #172E5B; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* 图片还没下载下来时的占位 (老站图缺失很常见, 保留原版 none.gif 语义) */
.ph-thumb.missing {
  background: #F2F5F9 url("../images/site/04_A.GIF") no-repeat center;
}

/* 相册子页分页条 */
.ph-pager {
  margin: 14px auto 0; padding: 8px 4px;
  border-top: 1px dotted #C9D6E4;
  text-align: center; line-height: 2; font-size: 12px;
}
.ph-pager a { color: var(--navy); margin: 0 6px; }
.ph-pager a:hover { color: var(--hover); }
.ph-pager .on { color: var(--hover); font-weight: bold; }

.ph-back { text-align: center; margin: 10px 0 0; }
.ph-back a { color: var(--navy); }

/* 相册说明文字 (分类下的引言) */
.ph-note {
  max-width: 519px; margin: 0 auto 12px;
  color: #172E5B; font-size: 12px; line-height: 1.8;
  text-align: center;
}

/* ============================================================
   灯箱 (原版 show.asp 弹出大图窗口的现代等价)
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0, 0, 0, .88);
  display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.lb.show { display: flex; }
.lb-img {
  max-width: 92vw; max-height: 82vh;
  border: 3px solid #fff; background: #fff;
}
.lb-cap { color: #ddd; font-size: 12px; margin-top: 8px; }
.lb-x {
  position: absolute; top: 12px; right: 16px;
  color: #fff; font-size: 16px;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 42px; line-height: 1;
  padding: 0 14px; text-decoration: none;
}
.lb-nav:hover { color: #FFCC66; text-decoration: none; }
.lb-prev { left: 2vw; }
.lb-next { right: 2vw; }
@media (max-width: 640px) {
  .lb-nav { font-size: 32px; padding: 0 8px; }
}

/* ============================================================
   自适应断点
   ============================================================ */
@media (max-width: 900px) {
  .layout { grid-template-columns: 160px 1fr; }
  .col-right { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; align-items: start; }
  .col-right > img, .col-right > .mt5 { display: none; }  /* 平板隐藏装饰小图 */
  .gg-box { border-top: 1px solid #ccc; height: auto; min-height: 0; }
  /* 底部区在窄屏下也退成单列，避免两块并排挤成豆腐块 */
  .home-extras { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 14px 0; }
}

@media (max-width: 900px) {
  .ph-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .ph-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 8px; }
  .ph-cat-head { padding-left: 10px; }
  .ph-cat-body { padding: 6px 8px 8px; line-height: 2.1; }
  .top-inner { flex-direction: column; }
  .top-links { display: flex; gap: 14px; }
  .main-nav { height: auto; }
  .main-nav ul { flex-wrap: wrap; }
  .main-nav li { flex: 1 0 20%; border-bottom: 1px solid #ccc; }
  .layout { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .col-right { grid-template-columns: 1fr; }
  .home-extras { grid-template-columns: 1fr; gap: 16px 0; }
  .banner img { width: 100%; }
  .koma-link img, .card { width: 100%; max-width: 200px; margin-left: auto; margin-right: auto; }
  .forum-list { max-width: 200px; margin-left: auto; margin-right: auto; }
}

/* 高分屏下老 GIF 图发虚的兜底: 禁用平滑保持像素风 */
img[src$=".gif"] { image-rendering: -webkit-optimize-contrast; }

/* ============================================================
   未存档栏目说明页 (zl / video / orther / bbs / blog / mail / liuyan / beyondweb)
   ============================================================ */
.archive-notice {
  max-width: 620px;
  margin: 24px auto 32px;
  padding: 32px 28px 28px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fafafa;
  text-align: center;
  line-height: 1.9;
}
.archive-notice .an-icon {
  font-size: 30px;
  letter-spacing: 6px;
  color: #bbb;
  margin: 0 0 14px;
}
.archive-notice .an-main {
  font-size: 15px;
  color: #333;
  margin: 0 0 14px;
}
.archive-notice .an-main b { color: #b03a2e; }
.archive-notice .an-sub {
  font-size: 13px;
  color: #666;
  margin: 8px 0 0;
}
.archive-notice .an-sub a { color: #0000ff; text-decoration: none; }
.archive-notice .an-sub a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .archive-notice { margin: 16px 10px 24px; padding: 24px 16px 20px; }
  .archive-notice .an-main { font-size: 14px; }
  .archive-notice .an-sub { font-size: 12px; }
}

/* ============================================================
   老站表格内容 (about.htm 等): 来自原站 644px 定宽布局的 table
   响应式下需限宽 + 允许横向滚动, 否则会撑破容器
   ============================================================ */
.news-content > table,
.news-content table {
  max-width: 100% !important;
  border-collapse: collapse;
}
.news-content table img { max-width: 100%; height: auto; }
.news-content { overflow-x: auto; }

@media (max-width: 640px) {
  .news-content table { font-size: 12px; }
  .news-content td { padding: 2px 4px !important; }
}

/* 无存档的老 GIF: onerror 隐藏后不留 alt 文字 / 破图图标 */
img[onerror] { color: transparent; font-size: 0; }
.ph-bigtitle img { display: inline-block; }
.ph-bigtitle img[style*="display: none"] { display: none !important; }

/* ============================================================
   资料栏目 (zl/) —— 抓自 2011 年存档, 老站表格布局
   老站是 777px 定宽 <table>, 直接搬过来要限宽 + 允许横滚
   ============================================================ */
.zl-content { overflow-x: auto; }
.zl-crumb { color: #888; font-size: 13px; margin: 10px 0 14px; }
.zl-title {
  font-size: 22px; color: #b00; margin: 0 0 16px;
  border-bottom: 2px solid #b00; padding-bottom: 8px;
}

/* 资料首页六大入口 */
.zl-list { list-style: none; margin: 0; padding: 0; }
.zl-list > li { margin-bottom: 10px; }
.zl-list a {
  display: block; padding: 12px 16px;
  background: #faf7f2; border: 1px solid #e6ddd0; border-left: 4px solid #b00;
  text-decoration: none; color: inherit;
  transition: background .15s, transform .15s;
}
.zl-list a:hover { background: #fff5f5; transform: translateX(3px); }
.zl-name { display: block; font-size: 16px; font-weight: bold; color: #b00; margin-bottom: 4px; }
.zl-desc { display: block; font-size: 13px; color: #666; line-height: 1.6; }

/* 资料内页: 老站表格正文 */
.zl-content table { max-width: 100% !important; border-collapse: collapse; }
.zl-content table img { max-width: 100%; height: auto; }
.zl-content img { max-width: 100%; height: auto; }
.zl-content p, .zl-content td { line-height: 1.8; font-size: 14px; }

@media (max-width: 640px) {
  .zl-content table { font-size: 12px; }
  .zl-content td { padding: 2px 4px !important; }
  .zl-title { font-size: 18px; }
}

/* ============================================================
   资料首页底部跨栏目条 —— 原站 zl/ 顶部那条 01~07.gif 图条的
   文字等价版 (原图在部分存档里缺失, 用文字保证入口不丢)
   ============================================================ */
.zl-cross {
  margin-top: 26px; padding: 12px 14px;
  background: #faf7f2; border: 1px solid #e6ddd0;
  font-size: 13px; line-height: 2;
}
.zl-cross-label { color: #888; margin-right: 6px; }
.zl-cross a {
  display: inline-block; margin: 0 4px; padding: 2px 10px;
  color: #b00; text-decoration: none;
  border: 1px solid #e0d5c5; background: #fff; border-radius: 3px;
}
.zl-cross a:hover { background: #b00; color: #fff; border-color: #b00; }

/* ============================================================
   资料首页 zl/index.html —— 还原原站 2011 版版式
   原站：777 定宽；上 bann2.jpg 横幅；下左 167 导航 iframe +
   1px 竖线 + 右 580 正文；正文 6 板块，每板块 = 细线 + 浅底 + 一行
   「文字 / 图」左右互换。
   这里保留视觉，但改成自适应：窄屏时侧栏折到正文上方。
   ============================================================ */
.zl-wrap { margin: 10px 0 20px; }

/* 顶部大横幅：原站 777×117，等比缩放到容器宽 */
.zl-bann { text-align: center; margin-bottom: 8px; }
.zl-bann img { width: 100%; max-width: 777px; height: auto; display: inline-block; }

/* 左栏 + 竖线 + 右栏 */
.zl-cols {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 777px;
  margin: 0 auto;
}

.zl-side {
  flex: 0 0 171px;
  width: 171px;
  text-align: center;
  padding-top: 0;
}
.zl-side img { max-width: 167px; height: auto; }
.zl-side table { margin: 0 auto; }

.zl-divider {
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: #993300;
  margin: 0 8px 0 0;
}

.zl-main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 580px;
  overflow-x: auto;            /* 原站内页残留的固定宽 table 不再撑破页面 */
}
.zl-main img { max-width: 100%; height: auto; }
.zl-main table { max-width: 100%; }

/* 移动端: 内页遗留的 width=500 表格压缩到屏宽 */
@media (max-width: 700px) {
  .zl-main table { width: 100% !important; min-width: 0 !important; }
  .zl-main td, .zl-main th { white-space: normal !important; word-break: break-word; overflow-wrap: anywhere; }
  .zl-main iframe { max-width: 100%; }
}

/* 6 个板块之间的分隔细线（原站 bgcolor #C5886D 的 1px 行） */
.zl-rule {
  border: 0;
  border-top: 1px solid #C5886D;
  margin: 0;
  height: 0;
}
/* 原站每段细线下面那条 5px 浅粉底 #EFDED7 */
.zl-gap { height: 5px; background: #EFDED7; }

/* 一行「文字 / 图」。默认文字在左，.zl-row-rev 让图在左 */
.zl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 6px;
  text-decoration: none;
  color: inherit;
  min-height: 80px;
}
.zl-row-rev { flex-direction: row-reverse; }

.zl-txt { flex: 1 1 auto; min-width: 0; text-align: center; }
.zl-h {
  display: block;
  color: #993300;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.4px;
}
.zl-p {
  display: block;
  color: #333;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 4px;
}
.zl-row img {
  flex: 0 0 auto;
  max-width: 159px;
  height: auto;
}
.zl-row:hover .zl-h { color: #c00; text-decoration: underline; }
.zl-row:hover .zl-p { color: #000; }

@media (max-width: 760px) {
  /* 窄屏：侧栏折到正文上方，横向排列导航图，竖线隐藏 */
  .zl-cols { flex-direction: column; }
  .zl-side {
    flex: none; width: 100%;
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 4px; margin-bottom: 10px;
  }
  .zl-side table,
  .zl-side table tr,
  .zl-side table td { display: block; }
  .zl-side br { display: none; }
  .zl-side table img { display: inline-block; margin: 0; }
  .zl-side > img { margin-top: 6px; }
  .zl-divider { display: none; }
  .zl-main { max-width: 100%; width: 100%; }
  .zl-bann img { width: 100%; }
  .zl-row { padding: 12px 2px; gap: 8px; }
  .zl-h { font-size: 14px; }
  .zl-p { font-size: 12.5px; }
  .zl-row img { max-width: 105px; }
  /* 手机上统一成"文字在上、图在下"的居中卡，左右互换没有意义 */
  .zl-row,
  .zl-row-rev { flex-direction: column-reverse; align-items: center; }
}

/* ============================================================
   相册目录索引 (photo_2/index.htm, photo_3/index.htm)
   原站 photo 栏目被档案馆拆成 photo / photo_1 / photo_2 / photo_3
   四个顶层目录，后两个的索引页没有快照，导致 98 处面包屑死链。
   这两个页是按「本目录实际存档的相册页」自动归类的索引落地页。
   ============================================================ */
.dir-note {
  margin: -6px 0 18px;
  padding: 10px 12px;
  background: #faf7f2;
  border-left: 3px solid #b00;
  font-size: 13px;
  line-height: 1.85;
  color: #555;
}

.pcol-group { margin-bottom: 20px; }
.pcol-h {
  margin: 0 0 8px;
  padding: 4px 0 4px 10px;
  font-size: 15px;
  color: #8a3a12;
  border-left: 4px solid #C5886D;
  background: #fdf6f0;
}
.pcol-n { font-size: 12px; font-weight: 400; color: #999; }

.pcol-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 0 18px;
}
.pcol-list li {
  padding: 5px 2px 5px 14px;
  border-bottom: 1px dotted #ddd;
  font-size: 13px;
  line-height: 1.7;
  position: relative;
}
.pcol-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 50%;
  width: 4px; height: 6px;
  margin-top: -3px;
  background: #b00;
}
.pcol-list a { color: #333; text-decoration: none; }
.pcol-list a:hover { color: #b00; text-decoration: underline; }

@media (max-width: 640px) {
  .pcol-list { grid-template-columns: 1fr; }
  .pcol-list li { font-size: 12.5px; }
  .dir-note { font-size: 12px; }
}

/* ============================================================
   关于本站 (about.htm)
   ⚠ 原站是 <table width="670"> 定宽 + 内层 644 宽，手机上必然横向
   溢出，需要"鼠标左右拖动"。这里把定宽表格改成自适应：
   外层 max-width:670 居中，两张 644 内表改 width:100%。
   注意：绝不能给 td 加 white-space:nowrap —— 那正是原版(被改坏的上
   一版)横向撑爆的直接原因，33 处 nowrap 把正文顶出视口。
   ============================================================ */
.about-page { margin: 12px 0 24px; }

.about-outer {
  width: 100% !important;
  max-width: 670px;
  margin: 0 auto;
  border-collapse: separate;
}
.about-inner { width: 100% !important; }
.about-outer > tbody > tr > td,
.about-inner > tbody > tr > td { padding: 3px !important; }

/* 644 定宽内表 → 自适应 */
.about-tbl { width: 100% !important; max-width: 644px; margin: 0 auto; }
.about-tbl td {
  font-size: 13px;
  line-height: 1.85;
  word-break: break-word;   /* 长英文域名/邮箱不撑破 */
  overflow-wrap: anywhere;
}
.about-tbl .k { line-height: 1.85; }
.about-tbl strong { color: #8a3a12; }

/* 原站两列布局：左 14% 标签 / 右 86% 正文。
   ⚠ 标签列若压太窄（<100px），"::关于本站:::::" 这类带冒号的短标签
   会被浏览器逐字折行成竖排。此处给足宽度 + nowrap（nowrap 只用于这个
   短标签列是安全的；正文列不用 nowrap，靠 overflow-wrap 兜长域名）。 */
.about-tbl > tbody > tr > td:first-child {
  width: 106px !important;
  white-space: nowrap;
  vertical-align: top;
  padding-right: 8px;
}
.about-tbl > tbody > tr > td:last-child { width: auto !important; }

@media (max-width: 700px) {
  .about-outer { border-width: 2px !important; }
  .about-tbl { max-width: 100%; }
  .about-tbl td { font-size: 12.5px; }
  /* ⚠ 窄屏必须放开 nowrap：nowrap 会把 106px 标签列顶穿视口（实测 overflow=145）。
     这里改回 normal + 88px，标签在冒号处自然折两行，仍是可读的横排。 */
  .about-tbl > tbody > tr > td:first-child {
    width: 88px !important;
    white-space: normal;
    padding-right: 5px;
    word-break: keep-all;
  }
}

/* ============================================================
   legacy-page —— 从档案馆原样搬来的老站内页
   ⚠ 老站全是 <table width="777"> 定宽嵌套布局，窄屏必横向溢出。
   实测坑：光写 `table{max-width:100%}` 没用 ——
     · HTML 的 width="777" 属性会被当成 width:777px
     · 子表格超宽会把父容器（main.wrap）一起顶到 776，
       所以还要在容器上兜一层 overflow 才不会出现横向滚动条。
   做法：容器 overflow-x 兜底 + 表格 width:auto→100% + 图片不超框。
   只做"不撑破视口"的收口，不改原站视觉。
   ============================================================ */
.legacy-page {
  width: auto !important;
  max-width: 800px !important;
  margin: 0 auto;
  padding: 0 8px 18px;
  overflow-x: hidden;          /* ★ 兜底：任何残留超宽都不出滚动条 */
}
.legacy-page table {
  width: auto !important;
  max-width: 100% !important;
}
.legacy-page img { max-width: 100%; height: auto; }
.legacy-page td { word-break: break-word; overflow-wrap: anywhere; }

@media (max-width: 820px) {
  /* 定宽表 → 满宽；同时压掉 width/height 属性带来的固定尺寸 */
  .legacy-page table,
  .legacy-page table[width],
  .legacy-page table[height] { width: 100% !important; height: auto !important; }
  .legacy-page td,
  .legacy-page td[width],
  .legacy-page td[height],
  .legacy-page th { width: auto !important; height: auto !important; }
  /* 左栏 daohan iframe（210px 导航）在手机上占地方又不好用，隐藏 */
  .legacy-page iframe { display: none !important; }
  .legacy-page td > iframe { display: none !important; }
  .legacy-page td { font-size: 12px; }
}

/* ============================================================
   还原内容页 —— 来源说明 / 论坛帖子列表 / 行程表 / 刊物
   （这些页的内容全部来自 Internet Archive 真实快照，不是占位说明页）
   ============================================================ */

/* 来源说明条：标明"这段内容取自哪张快照"，不冒充、不虚构 */
.src-note {
  margin: 0 0 12px;
  padding: 7px 11px;
  font-size: 12px;
  line-height: 1.7;
  color: #6b6259;
  background: #fbf7f0;
  border-left: 3px solid #d8c8a8;
  border-radius: 0 3px 3px 0;
}
.src-note b { color: #8a6d3b; font-weight: 600; }
.src-note code {
  font-family: Consolas, Monaco, monospace;
  font-size: 11px;
  background: #f2ece1;
  padding: 1px 4px;
  border-radius: 2px;
  word-break: break-all;
}

/* ---------------- 论坛帖子列表 ---------------- */
.thread-list {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border: 1px solid #e2dcd2;
}
.thread-list thead th {
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 600;
  color: #6b6259;
  text-align: left;
  background: #f6f1e8;
  border-bottom: 1px solid #e2dcd2;
  white-space: nowrap;
}
.thread-list td {
  padding: 8px 9px;
  border-bottom: 1px solid #f0ece4;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.thread-list tbody tr:nth-child(even) { background: #fcfaf6; }
.thread-list tbody tr:hover { background: #f7f2e8; }

.thread-list .t-title { width: auto; }
.thread-list .t-title a { color: #2f2a24; text-decoration: none; }
.thread-list .t-title a:hover { color: #a67c1a; text-decoration: underline; }
.thread-list .t-author { width: 130px; white-space: nowrap; color: #7a7065; font-size: 12px; }
.thread-list .t-nums   { width: 90px;  white-space: nowrap; text-align: center; color: #7a7065; font-size: 12px; }
.thread-list .t-last   { width: 150px; color: #7a7065; font-size: 12px; }
.thread-list em { display: block; font-style: normal; color: #9a9086; font-size: 11px; }
.thread-list .t-last em { display: inline; }
.thread-list .t-nums strong { color: #a67c1a; font-weight: 600; }
.thread-list .t-nums em { display: inline; }

/* 置顶 / 精华 标记 */
.t-flag {
  display: inline-block;
  margin-right: 5px;
  padding: 0 4px;
  font-size: 11px;
  line-height: 16px;
  border-radius: 2px;
  vertical-align: 1px;
}
.t-flag.f-top { color: #fff; background: #c0392b; }
.t-flag.f-dig { color: #fff; background: #a67c1a; }

.tl-foot {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #8a8076;
}

/* ---------------- BEYOND 行程表（照 2011 版 index/xc.asp 复刻） ---------------- */
.xc-box { max-width: 515px; margin: 0 auto; padding: 5px 0 0; }
.xc-banner { display: block; width: 100%; max-width: 515px; height: auto; margin: 0 auto; }
.xc-card { margin: 0 0 16px; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC; }
.xc-h {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 10px;
  padding: 3px 2px;
  font-size: 12px;
  line-height: 1.6;
  color: #000;
}
.xc-h .ico { flex: none; width: 5px; height: 5px; vertical-align: middle; margin: 0 3px 2px 0; }
.xc-t { flex: 1 1 200px; font-weight: 700; }
.xc-p { flex: none; color: #000; }
.xc-d { flex: none; margin-left: auto; color: #000; text-align: right; }
.xc-gap { height: 7px; background: #EDEDED; }
.xc-b {
  margin: 0;
  padding: 6px 4px;
  background: #F5F5F5;
  font-size: 12px;
  line-height: 1.9;
  color: #666666;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.xc-b a { color: #666666; text-decoration: underline; }
.xc-b::before { content: '· '; }
.xc-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  justify-content: space-between;
  padding: 3px 4px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  background: #F5F5F5;
  font-size: 12px;
  color: #000;
}
.xc-pager b { font-weight: 700; }
.xc-pager a { color: #000; }
.xc-pager .cur { font-weight: 700; }
@media (max-width: 560px) {
  .xc-h { font-size: 13px; }
  .xc-b, .xc-pager { font-size: 13px; }
  .xc-d { margin-left: 0; text-align: left; }
}

/* ---------------- 歌迷刊物 ---------------- */
.zz-box {
  padding: 4px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: #57504a;
}
.zz-lead {
  margin: 0 0 10px;
  padding: 9px 12px;
  background: #f6f1e8;
  border-left: 3px solid #d8c8a8;
  color: #6b6259;
}
.zz-meta {
  margin: 14px 0;
  border-collapse: collapse;
  font-size: 13px;
}
.zz-meta th, .zz-meta td {
  padding: 6px 12px;
  border: 1px solid #e2dcd2;
  text-align: left;
  vertical-align: top;
}
.zz-meta th { width: 130px; background: #f6f1e8; color: #6b6259; font-weight: 600; white-space: nowrap; }
.zz-dedicate {
  margin: 16px 0;
  text-align: center;
  font-size: 12px;
  color: #a67c1a;
  letter-spacing: 1px;
}
.zz-note {
  margin: 0;
  padding: 8px 11px;
  font-size: 12px;
  line-height: 1.7;
  color: #8a8076;
  background: #faf7f2;
  border: 1px dashed #ddd5c8;
  border-radius: 3px;
}

/* ---------------- 窄屏：帖子列表改卡片流 ---------------- */
@media (max-width: 700px) {
  .src-note { font-size: 11px; padding: 6px 9px; }

  .thread-list, .thread-list tbody, .thread-list tr, .thread-list td { display: block; width: 100%; }
  .thread-list thead { display: none; }
  .thread-list { border: none; }
  .thread-list tr {
    padding: 9px 0;
    border-bottom: 1px solid #ece6da;
  }
  .thread-list tbody tr:nth-child(even),
  .thread-list tbody tr:hover { background: none; }
  .thread-list td { padding: 0; border: none; width: auto !important; }
  .thread-list .t-title { font-size: 14px; line-height: 1.55; margin-bottom: 3px; }
  /* 作者 / 回复查看 / 最后发表 合成一行小字 */
  .thread-list .t-author,
  .thread-list .t-nums,
  .thread-list .t-last {
    display: inline;
    font-size: 11px;
    color: #9a9086;
    white-space: normal;
  }
  .thread-list .t-author::after { content: ' · '; }
  .thread-list .t-nums::after  { content: ' · '; }
  .thread-list .t-nums::before { content: '回复 '; }
  .thread-list em { display: inline; font-size: 11px; }
  .thread-list .t-author em::before { content: '（'; }
  .thread-list .t-author em::after  { content: '）'; }
  .thread-list .t-last em::before { content: ' '; }

  .zz-meta th { width: 88px; }
}

/* ---------------- 论坛分区索引（gid） ---------------- */
.gid-list { margin: 6px 0 0; padding: 0; list-style: none; }
.gid-list li {
  padding: 9px 12px;
  border: 1px solid #e2dcd2;
  border-radius: 3px;
  background: #fff;
  margin-bottom: 8px;
  font-size: 14px;
}
.gid-list a { color: #2f2a24; text-decoration: none; }
.gid-list a:hover { color: #a67c1a; text-decoration: underline; }
.gid-none { color: #9a9086; }
.gid-hint { margin-left: 8px; font-size: 12px; color: #9a9086; }

/* ---------------- 论坛推荐列表页（bbs/index.html） ---------------- */
.rec-head {
  margin: 2px 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: #8a2b1d;
}
.rec-sub {
  margin: 0 0 3px;
  font-size: 12px;
  color: #6b6259;
}
.rec-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2.0;
}
.rec-list li { padding: 0 2px; border-bottom: 1px dashed #ece6da; }
.rec-list a { color: #2f2a24; text-decoration: none; }
.rec-list a:hover { color: #a67c1a; text-decoration: underline; }

/* ===== B-2: 帖子页 / 缺失标记 / 锚点高亮 (2026-09-20) ===== */
.rec-miss { color: #9a938a; cursor: help; }
.rec-miss-tag { color: #b0431f; font-size: 11px; font-style: normal; margin-left: 6px; white-space: nowrap; }

.thread-view { max-width: 777px; margin: 0 auto; }
.tv-title { font-size: 19px; color: #5a2d16; margin: 6px 0 8px; line-height: 1.4; }
.tv-src { font-size: 12px; color: #9a938a; margin: 0 0 14px; padding: 7px 10px;
  background: #faf6f0; border-left: 3px solid #d9c9b4; }
.tv-floor { border: 1px solid #eadfcd; border-radius: 3px; margin-bottom: 12px;
  background: #fffdf9; overflow: hidden; }
.tv-fhead { font-size: 12px; color: #8a6a4f; padding: 6px 12px;
  background: #f6efe3; border-bottom: 1px solid #eadfcd; }
.tv-fbody { padding: 12px 14px; font-size: 14px; line-height: 1.85; color: #3d362e;
  word-break: break-word; overflow-wrap: anywhere; }
.tv-fbody img { max-width: 100%; height: auto; }
.tv-fbody a { color: #8a5a2e; }
.tv-fbody .t-attach { color: #9a938a; font-size: 12px; }
/* 原帖内嵌 Flash 播放器占位 / 标签文本 */
.tv-flash { display: inline-block; margin: 6px 0; padding: 8px 12px; font-size: 12px;
  color: #8a7250; background: #faf4ea; border: 1px dashed #d9c9b4; border-radius: 3px;
  word-break: break-all; overflow-wrap: anywhere; }
.tv-tag { color: #9a938a; font-size: 12px; white-space: nowrap; }

/* 版块页: 从推荐区跳转锚点时高亮该行 */
.t-title a:target, tr:target > td { background: #fdf3d9 !important; }

/* ===== 移动端兜底: 原站遗留的固定宽表格/图片不再撑破屏幕 (2026-09-20) ===== */
@media (max-width: 720px) {
  table { width: auto !important; min-width: 0 !important; }
  td, th { white-space: normal !important; word-break: break-word; overflow-wrap: anywhere; }
  img { max-width: 100% !important; height: auto; }
  textarea, input[type="text"], select { max-width: 100% !important; }
  /* 未套本站框架的原站裸页: 溢出限制在内容容器内, 不让整页左右滑 */
  .orig-page { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  iframe, embed, object { max-width: 100%; }
  /* 内容容器允许内部横向滚动, 保证宽表内容仍可看全 */
  .zl-content, .zl-main, .thread-view { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* 原站 Dreamweaver 的绝对定位下拉层(桌面上才用得上), 手机上不再占位撑宽 */
  div[id^="Layer"], div[id^="layer"] { display: none !important; }
  /* 原站 visibility:hidden 的下拉层同理 */
  div[style*="visibility: hidden"], div[style*="visibility:hidden"],
  span[style*="visibility: hidden"] { display: none !important; }
  /* 仍可见的 DW 绝对定位层: 手机上贴左并限宽, 内部可横向滚动 */
  div[style*="position:absolute"], div[style*="position: absolute"] {
    left: 0 !important; max-width: 100% !important; overflow-x: auto;
  }
}

@media (max-width: 700px) {
  .tv-title { font-size: 17px; }
  .tv-fbody { padding: 10px 12px; font-size: 14px; }
}

/* ---------------- Beyond 壁纸（照原站 bizhi 栏目复刻，挂在相册下） ---------------- */
.bz-cols { max-width: 777px; margin: 0 auto; }
.bz-bann { display: block; margin: 0 auto 6px; max-width: 100%; height: auto; }
.bz-cols-in { display: flex; align-items: stretch; }
.bz-nav {
  flex: none; width: 167px; padding: 8px 0 12px;
  background: #f5f0ff; font-size: 12px; line-height: 1.5; color: #000;
}
.bz-nav-g { display: flex; align-items: center; gap: 1px; padding: 4px 0 2px; }
.bz-nav-g img { display: block; }
.bz-nav-i { display: flex; align-items: center; }
.bz-nav-i img { display: block; flex: none; }
.bz-nav-p { flex: none; width: 17px; height: 100%; min-height: 18px; background: url("../../static/bizhi/images/point.gif") repeat-y; }
.bz-nav-i a { display: block; padding: 2px 4px; color: #000; text-decoration: none; }
.bz-nav-i a:hover { color: #333; text-decoration: underline; }
.bz-nav-i a.on { background: #CCCC99; font-weight: 700; }
.bz-divider { flex: none; width: 1px; background: #999999; }
.bz-main { flex: 1; min-width: 0; padding: 10px 12px 14px; }

.bz-cap { border: 0; }
.bz-sec-cap { margin: 2px 0 6px; }
.bz-cap td { border: 1px solid #333; font-size: 12px; line-height: 1.7; }
.bz-post { margin: 4px 0 0; }
.bz-post .bz-cap { display: inline-table; }
.bz-post-t { margin: 6px 0; font-size: 12px; line-height: 1.9; color: #333; }
.bz-rule { height: 1px; background: #CCCC99; margin: 10px 0; }
.bz-intro { margin: 0 0 8px; font-size: 12px; line-height: 1.8; color: #666; }
.bz-note { margin: 10px 0 0; font-size: 12px; color: #999; text-align: center; }

.bz-grid { display: flex; flex-wrap: wrap; gap: 12px 8px; justify-content: center; }
.bz-cell { display: flex; flex-direction: column; align-items: center; gap: 0; }
.bz-frame { border-collapse: collapse; }
.bz-frame img { display: block; }
.bz-frame td { padding: 0; }
.bz-sizes { border-collapse: collapse; margin-top: 2px; }
.bz-sizes td { border: 1px solid #333; font-size: 12px; line-height: 1.6; padding: 0 6px; }
.bz-sizes a { color: #000; text-decoration: none; }
.bz-sizes a:hover { text-decoration: underline; }

/* 相册左栏的壁纸专区入口卡（显眼位） */
.as-bizhi { margin: 0 0 8px; }
.as-bizhi-in {
  display: block; padding: 8px 6px 9px; background: #f5f0ff;
  border: 1px dashed #b59ad6; text-align: center; text-decoration: none;
}
.as-bizhi-in b { display: block; font-size: 13px; color: #5b3a86; }
.as-bizhi-in span { display: block; margin-top: 3px; font-size: 11px; color: #8a6fb0; }
.as-bizhi-in:hover { background: #ede2fb; border-color: #9a7cc0; }

@media (max-width: 700px) {
  .bz-cols-in { flex-direction: column; }
  .bz-nav { width: 100%; padding: 8px 6px; }
  .bz-divider { width: auto; height: 1px; }
  .bz-main { padding: 10px 6px; }
  .bz-grid { gap: 10px 6px; }
}
