/* ===== 餐饮界 前台样式 ===== */
:root {
  --red: #c8161d;
  --red-d: #a50f15;
  --red-l: #fdecec;
  --text: #222;
  --text2: #555;
  --text3: #999;
  --line: #ececec;
  --bg: #f5f6f7;
  --wrap: 1200px;
  --radius: 6px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 14px/1.6 -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }
p { margin: 0; }
img { border: 0; vertical-align: middle; max-width: 100%; }
input, textarea, select, button { font-family: inherit; font-size: 14px; outline: none; }
button { cursor: pointer; }
code { font-family: Consolas, Monaco, monospace; background: #f3f3f3; padding: 1px 5px; border-radius: 3px; font-size: 12px; }

.wrap { width: var(--wrap); margin: 0 auto; }
.main-wrap { padding: 16px 0 30px; }

/* 顶部条 */
.topbar { background: #fafafa; border-bottom: 1px solid var(--line); height: 34px; line-height: 34px; color: var(--text2); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; }
.topbar-right a { margin: 0 6px; color: var(--text2); }
.topbar-right i { color: #ddd; font-style: normal; margin: 0 2px; }
.tb-admin { color: var(--red) !important; }

/* 头部 */
.site-header { background: #fff; padding: 18px 0; }
.header-inner { display: flex; align-items: center; gap: 30px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 46px; width: auto; display: block; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 8px; background: linear-gradient(135deg, var(--red), #e8501f);
  color: #fff; font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(200, 22, 29, .28);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text b { font-size: 24px; letter-spacing: 2px; color: var(--red); line-height: 1.2; }
.logo-text em { font-style: normal; font-size: 12px; color: var(--text3); margin-top: 2px; }

.header-search { flex: 1; max-width: 520px; }
.header-search form { display: flex; height: 40px; }
.header-search input {
  flex: 1; height: 40px; border: 2px solid var(--red); border-right: 0; border-radius: 4px 0 0 4px;
  padding: 0 14px; font-size: 14px;
}
.header-search button {
  width: 88px; height: 40px; border: 0; background: var(--red); color: #fff; font-size: 15px;
  border-radius: 0 4px 4px 0;
}
.header-search button:hover { background: var(--red-d); }
.hot-words { margin-top: 7px; font-size: 12px; color: var(--text3); }
.hot-words a { margin-right: 12px; }
.header-submit {
  margin-left: auto; background: var(--red-l); color: var(--red); border: 1px solid #f6c9cb;
  padding: 9px 18px; border-radius: 20px; font-size: 13px; white-space: nowrap;
}
.header-submit:hover { background: var(--red); color: #fff; }

/* 导航 */
.main-nav { background: #fff; border-top: 1px solid var(--line); border-bottom: 2px solid var(--red); position: relative; }
.nav-inner { display: flex; }
.nav-list { display: flex; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: 0 22px; height: 52px; line-height: 52px; font-size: 19px; font-weight: 700; color: #333;
}
.nav-list > li:hover > a, .nav-list > li.on > a { color: var(--red); font-weight: 600; }
.nav-list > li.has-sub:hover .sub-nav { display: block; }
.sub-nav {
  display: none; position: absolute; left: 0; top: 52px; width: 100vw; background: #fff;
  border-top: 1px solid var(--line); box-shadow: 0 6px 16px rgba(0, 0, 0, .08); z-index: 60;
}
.sub-nav-inner { display: flex; flex-wrap: wrap; padding: 12px 0; gap: 4px 0; }
.sub-nav-inner a { padding: 6px 16px; font-size: 14px; color: #444; border-radius: 14px; }
.sub-nav-inner a:hover { background: var(--red-l); color: var(--red); }

/* 面包屑 */
.crumb { padding: 14px 0 4px; color: var(--text3); font-size: 13px; }
.crumb a { color: var(--text2); }
.crumb span { margin: 0 6px; color: #ccc; }
.crumb b { color: var(--text); font-weight: 500; }

/* 两栏 */
.two-col { display: flex; gap: 20px; align-items: flex-start; }
.content { flex: 1; min-width: 0; }
.sidebar { width: 300px; flex-shrink: 0; }

/* 焦点区 */
.focus-area { display: flex; gap: 20px; margin-bottom: 20px; }
.focus-left { width: 640px; flex-shrink: 0; }
.focus-right { flex: 1; min-width: 0; background: #fff; border-radius: var(--radius); padding: 14px 16px; height: 360px; box-sizing: border-box; overflow: hidden; display: flex; flex-direction: column; }
.slider { position: relative; height: 360px; border-radius: var(--radius); overflow: hidden; background: #ddd; }
.slide { display: block; position: relative; height: 360px; }
.slide-img, .slide .ph-cover { width: 100%; height: 360px; object-fit: cover; display: block; }
.slide .ph-cover { font-size: 80px; color: rgba(255, 255, 255, .85); }
.slide-mask { position: absolute; left: 0; right: 0; bottom: 0; height: 55%; background: linear-gradient(transparent, rgba(0, 0, 0, .78)); }
.slide-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 24px; color: #fff; }
.slide-cap h2 { font-size: 22px; line-height: 1.4; margin-bottom: 6px; }
.slide-cap p { font-size: 13px; opacity: .85; }
.slider-dots { position: absolute; right: 16px; bottom: 16px; display: flex; gap: 6px; }
.slider-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .5); cursor: pointer; }
.slider-dots .dot.on { background: #fff; width: 22px; border-radius: 5px; }

.box-hd { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 6px; }
.box-hd h2 { font-size: 17px; }
.headline-list { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.headline-list li { padding: 4px 0; border-bottom: 1px dashed #f0f0f0; }
.headline-list li:last-child { border-bottom: 0; }
.headline-list a { display: block; font-size: 14px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.headline-list .meta { display: block; font-size: 12px; color: var(--text3); margin-top: 1px; }

/* 图标 */
.ic { display: inline-block; width: 16px; height: 16px; margin-right: 6px; vertical-align: -2px; background: var(--red); border-radius: 3px; }
.ic-flash { clip-path: polygon(55% 0, 20% 55%, 45% 55%, 35% 100%, 78% 42%, 52% 42%); }
.ic-report { border-radius: 2px; clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%); }
.ic-news { border-radius: 3px; }
.ic-video { border-radius: 50%; }
.ic-topic { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-radius: 4px; }
.ic-hot { border-radius: 50% 50% 50% 0; }
.ic-pen { clip-path: polygon(0 100%, 100% 0, 100% 100%); }

/* 模块 */
.mod { background: #fff; border-radius: var(--radius); padding: 16px 20px 20px; margin-bottom: 20px; }
.mod-hd { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid #f4f4f4; padding-bottom: 12px; margin-bottom: 14px; }
.mod-hd h2 { font-size: 19px; display: flex; align-items: center; }
.mod-hd em { font-style: normal; color: var(--red); }
.mod-sub { font-size: 13px; color: var(--text3); }
.more { font-size: 13px; color: var(--text3); }
.more:hover { color: var(--red); }
.sort-tabs { display: flex; gap: 14px; font-size: 14px; }
.sort-tabs a.on { color: var(--red); font-weight: 600; }
.cat-desc { background: #fafafa; border-left: 3px solid var(--red); padding: 10px 14px; color: var(--text2); font-size: 13px; margin-bottom: 12px; }

/* 研究报告横向滚动 */
.research-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.rs-card { width: 150px; flex-shrink: 0; }
.rs-cover { position: relative; width: 150px; height: 196px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); }
.rs-img, .rs-cover .ph-cover { width: 150px; height: 196px; object-fit: cover; display: block; }
.rs-cover .ph-cover { font-size: 30px; color: rgba(255, 255, 255, .9); }
.rs-pages { position: absolute; right: 0; top: 10px; background: var(--red); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 10px 0 0 10px; }
.rs-title { font-size: 13px; line-height: 1.5; margin-top: 8px; height: 39px; overflow: hidden; }
.rs-card:hover .rs-title { color: var(--red); }
.rs-meta { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* 快讯区 */
.flash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 20px; }
.flash-item { display: flex; gap: 10px; }
.flash-date { flex-shrink: 0; background: var(--red-l); color: var(--red); font-size: 12px; padding: 2px 6px; border-radius: 3px; height: 20px; line-height: 16px; }
.flash-item p { font-size: 13px; line-height: 1.6; color: #333; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.flash-item p:hover { color: var(--red); }

/* 文章列表 */
.article-list .al-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f4f4f4; }
.article-list .al-item:last-child { border-bottom: 0; }
.al-pic { width: 190px; height: 120px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: #eee; }
.al-img, .al-pic .ph-cover { width: 190px; height: 120px; object-fit: cover; display: block; transition: transform .3s; }
.al-pic .ph-cover { font-size: 28px; color: rgba(255, 255, 255, .9); }
.al-item:hover .al-img { transform: scale(1.05); }
.al-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.al-title { font-size: 18px; line-height: 1.45; margin-bottom: 8px; font-weight: 600; }
.badge { font-style: normal; font-size: 11px; padding: 1px 6px; border-radius: 3px; margin-right: 6px; vertical-align: 2px; font-weight: 400; }
.badge-top { background: var(--red); color: #fff; }
.badge-rec { background: #ff8c1a; color: #fff; }
.al-sum { font-size: 13px; color: var(--text2); line-height: 1.7; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.al-meta { margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--text3); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.m-cat a { color: var(--red); background: var(--red-l); padding: 2px 8px; border-radius: 3px; }
.m-tags a { color: var(--text3); margin-right: 6px; }
.load-more { text-align: center; padding-top: 18px; border-top: 1px solid #f4f4f4; margin-top: 6px; }
.btn-more { display: inline-block; padding: 9px 40px; border: 1px solid var(--line); border-radius: 20px; color: var(--text2); background: #fff; }
.btn-more:hover { border-color: var(--red); color: var(--red); }

/* 视频 */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vg-large { grid-template-columns: repeat(2, 1fr); }
.v-thumb { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: #222; }
.v-img, .v-thumb .ph-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.v-thumb .ph-cover { font-size: 28px; color: rgba(255, 255, 255, .9); }
.v-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px;
  background: rgba(0, 0, 0, .55); color: #fff; border-radius: 50%; text-align: center; line-height: 46px; font-size: 16px; padding-left: 3px;
}
.v-card:hover .v-play { background: var(--red); }
.v-dur { position: absolute; right: 8px; bottom: 8px; background: rgba(0, 0, 0, .7); color: #fff; font-size: 12px; padding: 1px 6px; border-radius: 3px; }
.v-title { font-size: 15px; line-height: 1.5; margin-top: 9px; height: 45px; overflow: hidden; font-weight: 500; }
.v-card:hover .v-title { color: var(--red); }
.v-meta { font-size: 12px; color: var(--text3); margin-top: 4px; }

/* 报告网格 */
.rpt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rpt-card { display: flex; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); }
.rpt-card:hover { border-color: #f3c4c6; box-shadow: 0 3px 12px rgba(200, 22, 29, .08); }
.rpt-thumb { position: relative; width: 96px; flex-shrink: 0; }
.rpt-img, .rpt-thumb .ph-cover { width: 96px; height: 128px; object-fit: cover; border-radius: 3px; display: block; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); }
.rpt-thumb .ph-cover { font-size: 22px; color: rgba(255, 255, 255, .9); }
.rpt-badge { position: absolute; right: -4px; top: 6px; background: var(--red); color: #fff; font-size: 11px; padding: 1px 6px; border-radius: 8px 0 0 8px; }
.rpt-body h3 { font-size: 16px; line-height: 1.45; }
.rpt-body p { font-size: 13px; color: var(--text2); margin-top: 6px; line-height: 1.6; }
.rpt-foot { margin-top: 10px; font-size: 12px; color: var(--text3); display: flex; gap: 16px; }

/* 热门 */
.hot-list li { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid #f4f4f4; }
.hot-list li:last-child { border-bottom: 0; }
.rk { width: 24px; height: 24px; flex-shrink: 0; background: #e8e8e8; color: #888; border-radius: 3px; text-align: center; line-height: 24px; font-size: 13px; font-weight: 600; }
.rk-top { background: var(--red); color: #fff; }
.hl-body { flex: 1; min-width: 0; }
.hl-body h3 { font-size: 16px; font-weight: 500; line-height: 1.5; }
.hl-pic { width: 130px; height: 82px; flex-shrink: 0; border-radius: 4px; overflow: hidden; }
.hl-img, .hl-pic .ph-cover { width: 130px; height: 82px; object-fit: cover; display: block; }
.hl-pic .ph-cover { font-size: 20px; color: rgba(255, 255, 255, .9); }

/* 专栏 */
.writer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.w-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.w-card:hover { border-color: #f3c4c6; }
.w-head { display: flex; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px dashed #eee; }
.w-avatar, .wl-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #ff8c1a);
  color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.w-head h3 { font-size: 15px; }
.w-head p { font-size: 12px; color: var(--text3); margin-top: 2px; }
.w-latest { display: block; font-size: 14px; line-height: 1.5; margin-top: 12px; font-weight: 500; }
.w-excerpt { font-size: 12px; color: var(--text3); margin-top: 6px; line-height: 1.6; }
.w-cover { display: block; margin: -16px -16px 12px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.w-cover img { width: 100%; height: 132px; object-fit: cover; display: block; }
.wl-cover { width: 92px; height: 68px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.wl-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.writer-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wl-item { display: flex; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); }
.wl-body h3 { font-size: 16px; display: flex; gap: 8px; align-items: center; }
.wl-body h3 em { font-style: normal; font-size: 12px; color: var(--text3); background: #f4f4f4; padding: 1px 8px; border-radius: 10px; }
.wl-latest { display: block; font-size: 13px; color: var(--text2); margin-top: 8px; line-height: 1.5; }

/* 专题 */
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tg-large { grid-template-columns: repeat(4, 1fr); }
.t-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 150px; background: #eee; display: block; }
.t-img, .t-card .ph-cover { width: 100%; height: 150px; object-fit: cover; display: block; }
.t-card .ph-cover { font-size: 34px; color: rgba(255, 255, 255, .9); }
.t-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; background: linear-gradient(transparent, rgba(0, 0, 0, .8)); color: #fff; }
.t-info h3 { font-size: 15px; }
.t-info p { font-size: 12px; opacity: .8; margin-top: 3px; }
.topic-hero { position: relative; height: 220px; border-radius: var(--radius); overflow: hidden; background: #333; }
.th-img, .topic-hero .ph-cover { width: 100%; height: 220px; object-fit: cover; display: block; }
.topic-hero .ph-cover { font-size: 60px; color: rgba(255, 255, 255, .9); }
.th-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 30px 24px; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); color: #fff; }
.th-info h1 { font-size: 26px; }
.th-info p { font-size: 14px; opacity: .85; margin-top: 8px; }

/* 侧栏 */
.side-box { background: #fff; border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px; }
.side-hd { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f4f4f4; padding-bottom: 10px; margin-bottom: 10px; }
.side-hd h3 { font-size: 16px; border-left: 3px solid var(--red); padding-left: 8px; line-height: 1.2; }
.rank-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 13px; line-height: 1.5; }
.rank-list li a { flex: 1; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.side-topic li a { display: flex; gap: 10px; padding: 8px 0; font-size: 13px; }
.side-topic li img, .side-topic li .ph-cover { width: 76px; height: 48px; object-fit: cover; border-radius: 3px; flex-shrink: 0; font-size: 14px; color: #fff; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-c { background: #f5f5f5; color: #555; padding: 4px 10px; border-radius: 3px; font-size: 12px; }
.tag-c:hover { background: var(--red); color: #fff; }
.side-wechat { text-align: center; }
.qr-box { width: 130px; height: 130px; margin: 6px auto; background: #f7f7f7; border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.qr-ph { color: var(--text3); font-size: 13px; }
.side-wechat p { font-size: 12px; color: var(--text3); margin-top: 8px; }
.side-ad { background: #fff; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.side-ad img { width: 100%; display: block; }
.ad-full { background: #fff; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; text-align: center; }
.ad-full img { max-width: 100%; }

/* 详情 */
.detail .article-detail { background: #fff; border-radius: var(--radius); padding: 28px 34px 30px; margin-bottom: 20px; }
.dt-title { font-size: 28px; line-height: 1.4; margin-bottom: 16px; font-weight: 600; }
.dt-meta { font-size: 13px; color: var(--text3); display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.dt-tags a { color: var(--red); margin-right: 8px; }
.dt-summary { background: #fafafa; border-left: 3px solid var(--red); padding: 14px 18px; margin: 20px 0; color: #555; font-size: 14px; line-height: 1.8; }
.dt-summary span { display: block; color: var(--red); font-weight: 600; margin-bottom: 4px; font-size: 13px; }
.article-cover { margin: 20px 0; border-radius: var(--radius); overflow: hidden; }
.article-cover img { width: 100%; display: block; }
.dt-content { font-size: 17px; line-height: 1.95; color: #2b2b2b; padding-top: 6px; word-wrap: break-word; }
.dt-content p { margin: 0 0 20px; }
.dt-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 8px 0; }
.dt-content h2, .dt-content h3, .dt-content h4 { margin: 26px 0 14px; line-height: 1.4; }
.dt-content h3 { font-size: 20px; border-left: 4px solid var(--red); padding-left: 10px; }
.dt-content h4 { font-size: 17px; }
.dt-content blockquote { margin: 18px 0; padding: 12px 18px; background: #f9f9f9; border-left: 3px solid #ddd; color: #666; font-size: 15px; }
.dt-content ul, .dt-content ol { margin: 0 0 20px; padding-left: 24px; }
.dt-content ul li { list-style: disc; margin-bottom: 8px; }
.dt-content ol li { list-style: decimal; margin-bottom: 8px; }
.dt-content a { color: var(--red); text-decoration: underline; }
.dt-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.dt-content th, .dt-content td { border: 1px solid #e5e5e5; padding: 8px 12px; }
.dt-content th { background: #f7f7f7; }
.dt-video { margin: 18px 0; border-radius: 6px; overflow: hidden; }
.dt-report { display: flex; gap: 22px; background: #fafafa; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin: 18px 0; }
.rpt-cover .rpt-img, .rpt-cover .ph-cover { width: 130px; height: 174px; object-fit: cover; border-radius: 4px; box-shadow: 0 3px 10px rgba(0, 0, 0, .15); display: block; }
.rpt-cover .ph-cover { font-size: 30px; color: rgba(255, 255, 255, .9); }
.rpt-info { flex: 1; }
.rpt-info h3 { font-size: 18px; margin-bottom: 12px; }
.rpt-info ul { margin-bottom: 14px; }
.rpt-info li { font-size: 14px; color: var(--text2); padding: 4px 0; display: flex; }
.rpt-info li span { width: 84px; color: var(--text3); flex-shrink: 0; }
.btn-download { display: inline-block; background: var(--red); color: #fff; padding: 9px 26px; border-radius: 4px; font-size: 14px; }
.btn-download:hover { background: var(--red-d); color: #fff; }
.dt-notice { font-size: 13px; color: var(--text3); background: #fafafa; padding: 12px 16px; border-radius: 4px; margin-top: 24px; line-height: 1.7; }
.dt-actions { display: flex; gap: 12px; justify-content: center; padding: 26px 0 10px; }
.act-like, .act-share { border: 1px solid var(--line); background: #fff; padding: 8px 26px; border-radius: 22px; color: var(--text2); font-size: 14px; }
.act-like:hover { border-color: var(--red); color: var(--red); }
.act-like em { font-style: normal; margin-left: 4px; }
.dt-nav { border-top: 1px solid #f2f2f2; margin-top: 16px; padding-top: 16px; font-size: 14px; color: var(--text2); }
.dt-nav div { padding: 5px 0; }
.related-list li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed #f0f0f0; font-size: 14px; }
.related-list li:last-child { border-bottom: 0; }
.related-list a { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.related-list span { color: var(--text3); font-size: 12px; flex-shrink: 0; }

/* 评论 */
.comment-form { background: #fafafa; border-radius: var(--radius); padding: 16px; margin-bottom: 20px; }
.cf-row { display: flex; gap: 10px; margin-bottom: 10px; }
.cf-row input, .cf-row select { flex: 1; height: 38px; border: 1px solid var(--line); border-radius: 4px; padding: 0 12px; background: #fff; }
.comment-form textarea, .msg-form textarea { width: 100%; min-height: 96px; border: 1px solid var(--line); border-radius: 4px; padding: 10px 12px; resize: vertical; background: #fff; line-height: 1.7; }
.cf-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.cf-tip { font-size: 12px; color: var(--text3); }
.btn-submit { background: var(--red); color: #fff; border: 0; padding: 9px 30px; border-radius: 4px; }
.btn-submit:hover { background: var(--red-d); }
.comment-list li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f4f4f4; }
.comment-list li:last-child { border-bottom: 0; }
.cm-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #bbb, #999); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.cm-body { flex: 1; }
.cm-hd { display: flex; gap: 12px; align-items: center; font-size: 13px; margin-bottom: 5px; }
.cm-hd b { font-weight: 600; }
.cm-hd span { color: var(--text3); font-size: 12px; }
.comment-list p, .cm-text { font-size: 14px; line-height: 1.8; color: #333; }
.cm-empty { text-align: center; color: var(--text3); padding: 24px 0; font-size: 13px; }
.msg-form { background: #fafafa; border-radius: var(--radius); padding: 16px; }
.msg-form input, .msg-form select { height: 38px; border: 1px solid var(--line); border-radius: 4px; padding: 0 12px; background: #fff; width: 100%; }
.msg-form .cf-row { margin-bottom: 10px; }
.msg-form textarea { margin-bottom: 10px; }
.msg-form .cf-foot { justify-content: flex-end; }

/* 快讯时间线 */
.flash-timeline { padding: 6px 0; }
.ft-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed #f0f0f0; position: relative; }
.ft-item:last-child { border-bottom: 0; }
.ft-time { width: 56px; flex-shrink: 0; text-align: center; background: var(--red-l); border-radius: 4px; padding: 6px 0; height: 52px; }
.ft-time b { display: block; color: var(--red); font-size: 16px; line-height: 1.2; }
.ft-time span { font-size: 11px; color: #c98; }
.ft-body { flex: 1; }
.ft-text { font-size: 15px; line-height: 1.8; color: #333; }
.ft-meta { margin-top: 8px; font-size: 12px; color: var(--text3); display: flex; gap: 14px; }
.ft-cat { color: var(--red); background: var(--red-l); padding: 2px 8px; border-radius: 3px; }

/* 搜索 */
.search-bar { margin-bottom: 16px; }
.search-bar form { display: flex; gap: 10px; }
.search-bar input { flex: 1; height: 40px; border: 1px solid var(--line); border-radius: 4px; padding: 0 14px; }
.search-bar button { width: 100px; height: 40px; background: var(--red); color: #fff; border: 0; border-radius: 4px; }

/* 分页 */
.pager { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px 0 8px; flex-wrap: wrap; }
.pg-btn, .pg-num { min-width: 34px; height: 34px; line-height: 32px; text-align: center; border: 1px solid var(--line); background: #fff; border-radius: 4px; padding: 0 10px; font-size: 13px; color: #555; }
.pg-btn:hover, .pg-num:hover { border-color: var(--red); color: var(--red); }
.pg-num.active { background: var(--red); border-color: var(--red); color: #fff; }
.pg-btn.disabled, .pg-dot { border: 0; background: none; color: #bbb; }
.pg-info { margin-left: 10px; font-size: 13px; color: var(--text3); }

/* 空状态 */
.empty-box { padding: 60px 0; text-align: center; color: var(--text3); }

/* 占位封面 */
.ph-cover {
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600;
  letter-spacing: 1px; text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

/* 错误页 */
.error-page { background: #fff; border-radius: var(--radius); padding: 80px 0; text-align: center; margin: 20px auto; }
.err-code { font-size: 90px; font-weight: 700; color: var(--red); line-height: 1; }
.err-500 { color: #bbb; }
.error-page h1 { font-size: 24px; margin: 16px 0 8px; }
.error-page p { color: var(--text3); }
.err-actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; }
.btn-primary { background: var(--red); color: #fff; padding: 10px 30px; border-radius: 4px; border: 0; display: inline-block; }
.btn-primary:hover { background: var(--red-d); color: #fff; }
.btn-plain { background: #fff; color: #555; padding: 10px 26px; border-radius: 4px; border: 1px solid var(--line); display: inline-block; }
.btn-plain:hover { border-color: var(--red); color: var(--red); }

/* 页脚 */
.site-footer { background: #2b2b2b; color: #bbb; padding: 36px 0 24px; margin-top: 20px; }
.footer-top { display: flex; gap: 40px; padding-bottom: 26px; border-bottom: 1px solid #3d3d3d; }
.fcol-about { width: 340px; }
.flogo { display: flex; align-items: center; gap: 8px; color: #fff; margin-bottom: 14px; }
.flogo .logo-mark { width: 34px; height: 34px; font-size: 19px; }
.flogo b { font-size: 19px; }
.fdesc { font-size: 13px; line-height: 1.8; color: #999; }
.fcontact { font-size: 13px; line-height: 1.9; color: #999; margin-top: 12px; }
.fcol h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.fcol li { font-size: 13px; padding: 5px 0; }
.fcol li a:hover { color: var(--red); }
.fcol-qr { width: auto; min-width: 220px; }
.fcol-qr .qr-box { width: auto; height: auto; background: transparent; border: 0; display: flex; gap: 16px; justify-content: flex-start; align-items: flex-start; }
.qr-item { width: 96px; text-align: center; }
.qr-item img { width: 96px; height: 96px; border-radius: 6px; display: block; background: #fff; }
.qr-item span { display: block; font-size: 12px; color: #aaa; margin-top: 6px; }
.qr-tip { font-size: 12px; color: #777; margin-top: 8px; }
.footer-links { padding: 18px 0; border-bottom: 1px solid #3d3d3d; font-size: 13px; line-height: 2; }
.fl-title { color: #888; margin-right: 6px; }
.footer-links a { margin-right: 16px; color: #999; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { padding-top: 18px; text-align: center; font-size: 12px; color: #777; line-height: 2; }
.ft-admin a { margin: 0 6px; }

/* 响应式 */
@media (max-width: 1240px) {
  .wrap { width: 96%; }
  .focus-left { width: 58%; }
}
/* ===== 名厨频道 ===== */
.ic-chef { border-radius: 50%; background: linear-gradient(135deg, #d4a017, #c8161d); }
.chef-banner { background: linear-gradient(120deg, #2b2b2b, #c8161d); color: #fff; padding: 30px 0; }
.chef-banner h1 { font-size: 26px; margin-bottom: 6px; }
.chef-banner p { color: rgba(255, 255, 255, .85); font-size: 14px; }
.chef-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.chef-row { display: flex; gap: 16px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s, transform .2s; }
.chef-row:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .1); transform: translateY(-2px); }
.cf-img { width: 168px; height: 126px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, #d4a017, #c8161d); display: flex; align-items: center; justify-content: center; }
.cf-img img { width: 100%; height: 100%; object-fit: cover; }
.cf-letter { font-size: 54px; color: #fff; font-weight: 700; }
.cf-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cf-name { font-size: 19px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.cf-honor { font-style: normal; font-size: 11px; color: #fff; background: var(--red); padding: 1px 7px; border-radius: 10px; font-weight: 400; }
.cf-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.cf-tag { font-size: 12px; color: #555; background: #f4f4f4; padding: 2px 9px; border-radius: 10px; }
.cf-bio { font-size: 13px; color: var(--text2); line-height: 1.6; margin: 0 0 auto; }
.cf-more { margin-top: 10px; font-size: 13px; color: var(--red); font-weight: 600; }
.chef-profile { background: #fff; border-radius: var(--radius); padding: 0 0 22px; margin-bottom: 18px; overflow: hidden; }
.cp-hero { background: linear-gradient(120deg, #2b2b2b, #c8161d); color: #fff; padding: 30px 22px; position: relative; }
.cp-hero.has-cover { background-size: cover; background-position: center; }
.cp-hero.has-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25)); }
.cp-hero-in { position: relative; z-index: 1; display: flex; gap: 20px; align-items: center; }
.cp-avatar { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 46px; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); border: 3px solid rgba(255, 255, 255, .85); }
.cp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-info h1 { font-size: 26px; display: flex; align-items: center; gap: 12px; }
.cp-honor { font-style: normal; font-size: 13px; color: #fff; background: var(--red); padding: 2px 12px; border-radius: 12px; font-weight: 400; }
.cp-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.cp-tag { font-size: 13px; color: #fff; background: rgba(255, 255, 255, .18); padding: 4px 12px; border-radius: 14px; }
.cp-bio { margin: 18px 22px 0; padding: 18px 0 0; border-top: 1px solid var(--line); }
.cp-bio h3 { font-size: 16px; margin-bottom: 8px; }
.cp-bio p { font-size: 15px; line-height: 1.9; color: #444; margin: 0; white-space: pre-wrap; }

@media (max-width: 992px) {
  .two-col { flex-direction: column; }
  .sidebar { width: 100%; }
  .focus-area { flex-direction: column; }
  .focus-left { width: 100%; }
  .header-search { max-width: none; }
  .flash-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid, .writer-grid, .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .tg-large, .rpt-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-submit { display: none; }
  .nav-list { overflow-x: auto; }
  .nav-list > li > a { padding: 0 12px; font-size: 15px; }
  .al-pic { width: 110px; height: 74px; }
  .al-img, .al-pic .ph-cover { width: 110px; height: 74px; }
  .flash-grid, .video-grid, .writer-grid, .topic-grid, .rpt-grid { grid-template-columns: 1fr; }
  .chef-list { grid-template-columns: 1fr; }
  .chef-row { flex-direction: column; }
  .cf-img { width: 100%; height: 190px; }
  .dt-title { font-size: 22px; }
  .detail .article-detail { padding: 20px 18px; }
  .dt-report { flex-direction: column; }
  .fcol-qr { width: 100%; text-align: center; }
  .fcol-qr .qr-box { justify-content: center; }
}

/* ============ 加盟项目库（餐饮品牌加盟栏目页） ============ */
.jm-page { padding: 18px 0 30px; }
.jm-head { padding: 4px 2px 14px; }
.jm-head h1 { font-size: 24px; color: #222; font-weight: 700; display: flex; align-items: baseline; gap: 10px; }
.jm-head-sub { font-size: 13px; color: #999; font-weight: 400; }
.jm-desc { margin-top: 8px; color: #777; font-size: 14px; line-height: 1.7; }

.jm-filter { border: 1px solid #eee; border-radius: 6px; background: #fafafa; padding: 12px 16px; margin: 6px 0 14px; }
.jmf-row { display: flex; align-items: flex-start; padding: 7px 0; }
.jmf-row + .jmf-row { border-top: 1px dashed #e8e8e8; }
.jmf-row > label { width: 72px; flex: none; font-size: 14px; color: #888; line-height: 30px; }
.jmf-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.jmf-opts a { padding: 4px 14px; font-size: 14px; color: #555; border: 1px solid #e2e2e2; border-radius: 14px; background: #fff; cursor: pointer; user-select: none; transition: all .15s; }
.jmf-opts a:hover { color: #c8161d; border-color: #c8161d; }
.jmf-opts a.on { color: #fff; background: #c8161d; border-color: #c8161d; }

.jm-stat { font-size: 14px; color: #666; margin: 0 2px 14px; }
.jm-stat b { color: #c8161d; font-size: 18px; margin: 0 3px; }

.jm-list { list-style: none; }
.jm-item { display: flex; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 14px; transition: box-shadow .2s, border-color .2s; }
.jm-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); border-color: #e0c4c5; }
.jm-pic { flex: none; width: 200px; height: 150px; border-radius: 6px; overflow: hidden; background: #f5f5f5; display: block; }
.jm-pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.jm-item:hover .jm-pic img { transform: scale(1.05); }
.jm-mid { flex: 1; min-width: 0; padding: 0 20px; }
.jm-name { font-size: 20px; line-height: 1.4; }
.jm-name a { color: #222; }
.jm-name a:hover { color: #c8161d; }
.jm-tags { margin: 8px 0 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.jm-tags span { font-size: 12px; padding: 2px 8px; border-radius: 3px; }
.jm-tags span:nth-child(odd) { color: #c8161d; background: #fdeeee; }
.jm-tags span:nth-child(even) { color: #d2691e; background: #fdf3ea; }
.jm-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 6px 18px; margin-bottom: 10px; }
.jm-info-item { display: flex; font-size: 13px; line-height: 1.7; color: #555; min-width: 0; }
.jm-info-item dt { flex: none; color: #999; margin-right: 6px; }
.jm-info-item dt::after { content: "："; }
.jm-info-item dd { color: #444; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jm-sum { font-size: 13px; line-height: 1.75; color: #777; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jm-right { flex: none; width: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px dashed #ececec; padding-left: 18px; }
.jm-inv { text-align: center; margin-bottom: 14px; }
.jm-inv-y { color: #c8161d; font-size: 14px; font-weight: 700; }
.jm-inv b { color: #c8161d; font-size: 22px; font-weight: 700; }
.jm-inv b i { font-style: normal; margin: 0 2px; font-size: 14px; }
.jm-inv-u { color: #666; font-size: 12px; margin-left: 2px; }
.jm-btn { display: inline-block; background: #c8161d; color: #fff; font-size: 14px; padding: 7px 20px; border-radius: 4px; transition: opacity .15s; }
.jm-btn:hover { opacity: .85; color: #fff; }
.jm-empty { text-align: center; padding: 40px 0; color: #999; }
.jm-tip { font-size: 12px; color: #aaa; margin-top: 4px; }
@media (max-width: 768px) {
  .jm-item { flex-wrap: wrap; padding: 12px; }
  .jm-pic { width: 100%; height: 180px; margin-bottom: 12px; }
  .jm-mid { padding: 0; }
  .jm-right { width: 100%; border-left: 0; border-top: 1px dashed #ececec; padding: 12px 0 0; margin-top: 12px; flex-direction: row; justify-content: center; gap: 16px; }
  .jm-inv { margin-bottom: 0; }
  .jmf-row { display: block; }
  .jmf-row > label { display: block; margin-bottom: 8px; }
}

/* ============ 加盟项目库 增强版 ============ */
.jm-page { padding: 14px 0 30px; }
.jm-head { padding: 4px 2px 12px; }
.jm-head h1 { font-size: 24px; color: #222; font-weight: 700; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.jm-head-sub { font-size: 13px; color: #999; font-weight: 400; }
.jm-desc { margin-top: 8px; color: #777; font-size: 14px; line-height: 1.7; }
.jm-col-wrap { display: flex; gap: 20px; align-items: flex-start; }
.jm-main { flex: 1; min-width: 0; }
.jm-side { flex: none; width: 300px; }

.jm-filter { border: 1px solid #eee; border-radius: 6px; background: #fafafa; padding: 10px 16px; margin: 6px 0 12px; }
.jmf-row { display: flex; align-items: flex-start; padding: 6px 0; }
.jmf-row + .jmf-row { border-top: 1px dashed #e8e8e8; }
.jmf-row > label { width: 76px; flex: none; font-size: 14px; color: #888; line-height: 28px; }
.jmf-opts { display: flex; flex-wrap: wrap; gap: 6px; }
.jmf-opts a, .jm-sort a { padding: 3px 13px; font-size: 14px; color: #555; border: 1px solid #e2e2e2; border-radius: 14px; background: #fff; cursor: pointer; user-select: none; transition: all .15s; text-decoration: none; }
.jmf-opts a:hover, .jm-sort a:hover { color: #c8161d; border-color: #c8161d; }
.jmf-opts a.on, .jm-sort a.on { color: #fff; background: #c8161d; border-color: #c8161d; }
.jm-sort { display: flex; gap: 6px; margin-left: auto; }
.jm-sort a { border-radius: 4px; font-size: 13px; padding: 3px 10px; }
.jm-search-row { padding-bottom: 2px; }
.jm-search { display: flex; align-items: center; gap: 8px; width: 100%; }
.jm-search-input { flex: 1; max-width: 360px; height: 32px; border: 1px solid #e2e2e2; border-radius: 4px; padding: 0 10px; font-size: 14px; outline: none; }
.jm-search-input:focus { border-color: #c8161d; }
.jm-search-btn { height: 32px; padding: 0 18px; background: #c8161d; color: #fff; border: 0; border-radius: 4px; font-size: 14px; cursor: pointer; }
.jm-reset { font-size: 13px; color: #999; margin-left: 6px; }

.jm-stat { font-size: 13px; color: #666; margin: 0 2px 12px; }
.jm-stat b { color: #c8161d; font-size: 17px; margin: 0 3px; }

.jm-list { list-style: none; }
.jm-item { display: flex; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; transition: box-shadow .2s, border-color .2s; }
.jm-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.05); border-color: #e5cccc; }
.jm-pic { flex: none; width: 168px; height: 126px; border-radius: 6px; overflow: hidden; background: #f5f5f5; display: block; text-decoration: none; }
.jm-pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.jm-item:hover .jm-pic img { transform: scale(1.04); }
.jm-pic .ph-cover, .jm-pic .jm-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; font-weight: 700; color: #fff; }
.jm-mid { flex: 1; min-width: 0; padding: 0 16px; }
.jm-name { font-size: 19px; line-height: 1.4; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jm-name a { color: #222; }
.jm-name a:hover { color: #c8161d; }
.jm-hot-badge { font-style: normal; font-size: 11px; color: #fff; background: linear-gradient(90deg,#f0483e,#ff7a1a); padding: 1px 7px; border-radius: 3px; font-weight: 400; }
.jm-tags { margin: 7px 0 8px; display: flex; flex-wrap: wrap; gap: 5px; }
.jm-tags span { font-size: 12px; padding: 1px 7px; border-radius: 3px; }
.jm-tags span:nth-child(odd) { color: #c8161d; background: #fdeeee; }
.jm-tags span:nth-child(even) { color: #c0561e; background: #fdf3ea; }
.jm-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 5px 16px; margin-bottom: 8px; }
.jm-info-item { display: flex; font-size: 13px; line-height: 1.7; color: #555; min-width: 0; }
.jm-info-item dt { flex: none; color: #999; margin-right: 4px; }
.jm-info-item dt::after { content: "："; }
.jm-info-item dd { color: #444; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 0; }
.jm-sum { font-size: 13px; line-height: 1.7; color: #777; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.jm-right { flex: none; width: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px dashed #ececec; padding-left: 14px; gap: 10px; }
.jm-inv { text-align: center; }
.jm-inv-y { color: #c8161d; font-size: 13px; font-weight: 700; }
.jm-inv b { color: #c8161d; font-size: 20px; font-weight: 700; }
.jm-inv-u { color: #666; font-size: 12px; margin-left: 2px; }
.jm-btn { display: inline-block; background: #c8161d; color: #fff !important; font-size: 14px; padding: 7px 22px; border-radius: 4px; border: 0; cursor: pointer; transition: opacity .15s; text-decoration: none; text-align: center; line-height: 1.4; }
.jm-btn:hover { opacity: .85; color: #fff; }
.jm-btn-lg { padding: 9px 34px; font-size: 15px; }
.jm-link { font-size: 13px; color: #c8161d; text-decoration: none; border-bottom: 1px solid transparent; }
.jm-link:hover { border-bottom-color: #c8161d; }
.jm-empty { text-align: center; padding: 36px 0; color: #999; }
.jm-tip { font-size: 12px; color: #aaa; margin-top: 4px; line-height: 1.7; }

/* 右侧栏 */
.jm-side-box { border: 1px solid #eee; border-radius: 6px; background: #fff; margin-bottom: 14px; padding: 12px 14px; }
.jm-side-hd { font-size: 16px; font-weight: 700; color: #222; border-left: 4px solid #c8161d; padding-left: 10px; margin: 2px 0 12px; line-height: 1.2; }
.jm-rank-list { list-style: none; }
.jm-rank-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.jm-rank-no { flex: none; width: 18px; text-align: center; color: #c8c8c8; font-size: 15px; font-style: italic; font-weight: 700; }
.jm-rank-item:nth-child(-n+3) .jm-rank-no { color: #c8161d; }
.jm-rank-pic { flex: none; width: 52px; height: 40px; border-radius: 4px; overflow: hidden; display: block; background: #f3f3f3; }
.jm-rank-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jm-rank-pic .ph-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.jm-rank-mid { flex: 1; min-width: 0; }
.jm-rank-name { font-size: 14px; margin: 0; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jm-rank-name a { color: #333; }
.jm-rank-name a:hover { color: #c8161d; }
.jm-rank-meta { font-size: 11px; color: #aaa; margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jm-rank-meta em { font-style: normal; margin-left: 4px; }
.jm-rank-btn { flex: none; background: #c8161d; color: #fff; border: 0; font-size: 12px; padding: 4px 10px; border-radius: 3px; cursor: pointer; }
.jm-store-rank { list-style: none; margin: 0; }
.jm-store-rank li { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 2.1; }
.sr-no { flex: none; width: 18px; height: 18px; line-height: 18px; text-align: center; background: #f0f0f0; color: #666; border-radius: 3px; font-size: 12px; }
.jm-store-rank li:nth-child(-n+3) .sr-no { background: #c8161d; color: #fff; }
.sr-name { flex: 1; min-width: 0; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-name:hover { color: #c8161d; }
.sr-store { flex: none; color: #999; font-size: 12px; }
.jm-side-cats { display: flex; flex-wrap: wrap; gap: 6px; }
.jm-side-cats a { font-size: 13px; color: #555; border: 1px solid #e5e5e5; padding: 3px 10px; border-radius: 12px; text-decoration: none; }
.jm-side-cats a.on, .jm-side-cats a:hover { color: #fff; background: #c8161d; border-color: #c8161d; }
.jm-side-tip p { font-size: 12px; line-height: 1.9; color: #888; margin: 0; }

/* 弹窗 */
.jm-mask { display: none; position: fixed; left: 0; top: 0; right: 0; bottom: 0; background: rgba(0,0,0,.45); z-index: 999; }
.jm-modal { display: none; position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 420px; max-width: 92vw; background: #fff; border-radius: 8px; z-index: 1000; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.jm-modal-hd { font-size: 16px; font-weight: 700; color: #222; padding: 14px 18px; border-bottom: 1px solid #f0f0f0; position: relative; }
.jm-modal-close { position: absolute; right: 14px; top: 12px; font-size: 20px; color: #bbb; cursor: pointer; line-height: 1; }
.jm-modal-close:hover { color: #c8161d; }
.jm-modal-bd { padding: 16px 18px; }
.jm-modal-intro { font-size: 14px; color: #555; margin: 0 0 14px; }
.jm-modal-intro b { color: #c8161d; }
.jm-f-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.jm-f-row label { flex: none; width: 64px; font-size: 14px; color: #666; line-height: 32px; }
.jm-f-row input, .jm-f-row textarea { flex: 1; border: 1px solid #e2e2e2; border-radius: 4px; padding: 6px 10px; font-size: 14px; outline: none; box-sizing: border-box; }
.jm-f-row input:focus, .jm-f-row textarea:focus { border-color: #c8161d; }
.jm-f-actions { display: block; text-align: center; margin-top: 4px; }
.jm-f-tip { display: block; font-size: 12px; color: #999; margin-top: 10px; }
.jm-modal-ok { text-align: center; padding: 18px 0 10px; }
.jm-ok-icon { width: 52px; height: 52px; line-height: 52px; border-radius: 50%; background: #2fae62; color: #fff; font-size: 26px; margin: 0 auto 12px; }
.jm-modal-ok p { color: #666; font-size: 14px; margin: 0 0 6px; }

@media (max-width: 980px) {
  .jm-col-wrap { display: block; }
  .jm-side { width: 100%; margin-top: 6px; }
}
@media (max-width: 768px) {
  .jm-item { flex-wrap: wrap; padding: 12px; }
  .jm-pic { width: 100%; height: 170px; margin-bottom: 10px; }
  .jm-mid { padding: 0; }
  .jm-right { width: 100%; border-left: 0; border-top: 1px dashed #ececec; padding: 12px 0 0; margin-top: 10px; flex-direction: row; justify-content: center; gap: 18px; }
  .jm-sort { margin-left: 0; margin-top: 6px; flex-wrap: wrap; }
  .jmf-row { flex-wrap: wrap; }
  .jmf-row > label { display: block; margin-bottom: 6px; width: 100%; }
  .jm-search { flex-wrap: wrap; }
  .jm-search-input { max-width: none; }
}

/* ============ 品牌详情页（餐饮品牌加盟 /project/{slug}/）— 对齐 cyjmw 版式 ============ */
.pd-page { background: #f9f9f9; padding-bottom: 30px; }
.pd-w { width: 1200px; max-width: 100%; margin: 0 auto; }

/* 面包屑 */
.pd-path { height: 43px; line-height: 43px; color: #999; font-size: 14px; }
.pd-path a { color: #999; }
.pd-path a:hover { color: #c1292e; }
.pd-path em { font-style: normal; margin: 0 8px; color: #ccc; }
.pd-path span { color: #666; }

/* 顶部品牌卡 */
.pd-main { display: flex; gap: 24px; background: #fff; border-radius: 6px; padding: 20px; box-shadow: #dee 0 0 2px; margin-bottom: 15px; box-sizing: border-box; }
.pd-focus { flex: none; width: 478px; }
.pd-f-main { width: 478px; height: 340px; border-radius: 8px; overflow: hidden; background: #f2f2f2; }
.pd-f-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-f-main .ph-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 60px; font-weight: 700; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pd-thumb { width: 112px; height: 84px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; box-sizing: border-box; cursor: pointer; background: #f2f2f2; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.on { border-color: #c0292e; }

.pd-rbox { flex: 1; min-width: 0; }
.pd-bname { font-size: 30px; font-weight: 600; color: #333; margin: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pd-bcard { display: flex; justify-content: space-between; height: 98px; border: 1px dotted #ccc; border-radius: 6px; padding: 20px 35px; box-sizing: border-box; margin: 20px 0 0; list-style: none; }
.pd-bcard li { width: 20%; text-align: center; }
.pd-bcard dt { color: #666; font-size: 14px; overflow: hidden; white-space: nowrap; }
.pd-bcard dd { margin: 15px 0 0; font-size: 16px; font-weight: 600; color: #c1292e; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pd-bintro { margin-top: 14px; }
.pd-bi-row { line-height: 40px; font-size: 15px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pd-bi-half { display: inline-block; width: calc(50% - 5px); }
.pd-bi-row em { font-style: normal; color: #666; }
.pd-bi-row span { color: #999; }
.pd-bi-row a { color: #2b5c9b; }
.pd-bi-row a:hover { text-decoration: underline; }
.pd-joinbtn { margin-top: 30px; }
.pd-btn { display: inline-block; width: 200px; height: 52px; line-height: 52px; text-align: center; font-size: 15px; color: #fff; border-radius: 6px; }
.pd-btn:hover { color: #fff; opacity: .9; }
.pd-btn-1 { background: #c0292e; }
.pd-btn-2 { background: #ff9c00; margin-left: 30px; }

/* 中部两栏 */
.pd-middle { display: flex; gap: 15px; align-items: flex-start; }
.pd-lcont { flex: none; width: 895px; }
.pd-rcont { flex: none; width: 290px; }

/* 主栏 Tab 卡 */
.pd-joinbox { background: #fff; border-radius: 6px; box-shadow: #dee 0 0 2px; }
.pd-joinhd { height: 57px; border-bottom: 1px solid #f0f0f0; }
.pd-joinhd::after { content: ""; display: block; clear: both; }
.pd-tabs { float: left; list-style: none; margin: 0; padding: 0; }
.pd-tabs li { float: left; width: 88px; height: 57px; line-height: 57px; text-align: center; margin: 0 24px; }
.pd-tabs li a { display: block; font-size: 16px; color: #333; }
.pd-tabs li a.on { color: #c0292e; font-weight: 600; border-bottom: 2px solid #c0292e; }
.pd-zixun { float: right; margin: 10px; width: 124px; height: 37px; line-height: 37px; text-align: center; background: #c0292e; border-radius: 4px; }
.pd-zixun a { display: block; color: #fff; font-size: 14px; }
.pd-joininfo { padding: 0 23px 23px; }
.pd-info h3 { position: relative; line-height: 52px; font-size: 18px; color: #c0292e; margin: 0; padding-left: 14px; font-weight: 600; }
.pd-info h3::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 24px; background: #c0292e; border-radius: 2px; }
.pd-info p { font-size: 15px; color: #666; line-height: 26px; padding: 5px 0; margin: 0; }
.pd-info p b { color: #333; }
.pd-info-img img { max-width: 100%; height: auto; display: block; margin: 8px auto; border-radius: 6px; }
.pd-dg { color: #333 !important; }
.pd-dg2 { padding-left: 22px !important; }

/* 猜你喜欢 */
.pd-lcont2 { margin-top: 15px; background: #fff; border-radius: 6px; box-shadow: #dee 0 0 2px; padding: 0 15px; }
.pd-lcont2 h3 { height: 48px; line-height: 48px; margin: 0; position: relative; padding-left: 12px; font-weight: 400; }
.pd-lcont2 h3::before { content: ""; position: absolute; left: 0; top: 15px; width: 3px; height: 18px; background: #c1292e; }
.pd-lcont2 h3 span { font-size: 16px; color: #333; }
.pd-lcont2 h3 a { float: right; font-size: 13px; color: #999; font-weight: 400; }
.pd-lcont2 ul { display: flex; gap: 10px; padding: 17px 0; margin: 0; list-style: none; }
.pd-lcont2 ul li { width: calc(20% - 8px); height: 119px; border: 1px solid #eaeaea; border-radius: 6px; padding: 5px; box-sizing: border-box; }
.pd-lcont2 ul li:hover { border-color: #c1292e; }
.pd-lcont2 ul li:hover p { color: #c1292e; }
.pd-g-pic { display: block; width: 100%; height: 107px; border-radius: 6px; overflow: hidden; background: #f2f2f2; }
.pd-g-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-g-pic .ph-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 700; }
.pd-lcont2 ul li p { font-size: 16px; line-height: 40px; height: 40px; text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin: 0; color: #333; }

/* 留言咨询 */
.pd-liuyan { margin-top: 15px; border-radius: 12px; overflow: hidden; box-shadow: #ccc 0 0 2px; background: linear-gradient(135deg, #fdf6f5 0%, #ffffff 45%); }
.pd-ly-title { height: 63px; line-height: 63px; background: #c1292e; padding: 0 50px; color: #fff; }
.pd-ly-title strong { font-size: 22px; font-weight: 400; margin-right: 15px; }
.pd-ly-title span { font-size: 16px; }
.pd-ly-box { position: relative; padding: 46px 40px; }
.pd-ly-write { width: 56%; height: 44px; line-height: 44px; margin-bottom: 15px; background: #fff; border-radius: 4px; padding-right: 10px; box-sizing: border-box; }
.pd-ly-write label { float: left; width: 75px; text-align: right; color: #666; font-size: 16px; }
.pd-ly-write label em { font-style: normal; color: #ddd; margin: 0 10px; }
.pd-ly-write input { width: calc(100% - 95px); height: 44px; line-height: 44px; border: none; outline: none; font-size: 15px; color: #333; background: transparent; }
.pd-ly-write:first-of-type input { width: calc(100% - 215px); }
.pd-radio { float: right; height: 44px; line-height: 44px; }
.pd-radio label { float: left; width: auto; color: #666; margin-left: 6px; font-size: 14px; }
.pd-radio input { width: 16px; height: 16px; margin-top: 15px; }
.pd-ly-area { width: 56%; height: 141px; margin-bottom: 10px; background: #fff; border-radius: 4px; padding-right: 10px; box-sizing: border-box; }
.pd-ly-area label { float: left; width: 75px; height: 44px; line-height: 44px; text-align: right; color: #666; font-size: 16px; }
.pd-ly-area label em { font-style: normal; color: #ddd; margin: 0 10px; }
.pd-ly-area textarea { width: calc(100% - 90px); height: 113px; border: none; outline: none; resize: none; font-size: 15px; color: #333; line-height: 26px; padding-top: 12px; box-sizing: border-box; background: transparent; font-family: inherit; }
.pd-ly-bottom { height: 44px; line-height: 44px; padding-left: 85px; margin-top: 20px; }
.pd-ly-bottom a { display: block; float: left; width: 260px; height: 44px; line-height: 44px; border-radius: 4px; background: #c1292e; text-align: center; font-size: 16px; color: #fff; }
.pd-ly-bottom a:hover { color: #fff; opacity: .92; }
.pd-ly-tip { margin-left: 16px; font-size: 13px; color: #999; }
.pd-shortcut { position: absolute; top: 46px; right: 48px; width: 336px; border: 1px solid #c1292e; border-radius: 4px; overflow: hidden; box-sizing: border-box; }
.pd-shortcut h4 { height: 44px; line-height: 44px; margin: 0; background: #c1292e; text-align: center; color: #fff; font-size: 18px; font-weight: 400; }
.pd-sc-box { padding: 15px; background: #fff; box-sizing: border-box; }
.pd-sc-box p { position: relative; height: 30px; line-height: 30px; width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #333; cursor: pointer; padding-left: 20px; margin: 0; font-size: 14px; }
.pd-sc-box p:hover { color: #c1292e; }
.pd-sc-box p::before { content: ""; position: absolute; left: 0; top: 14px; width: 4px; height: 4px; border-radius: 2px; background: #c1292e; }
.pd-ly-ok { text-align: center; padding: 60px 0; }
.pd-ok-icon { width: 56px; height: 56px; line-height: 56px; border-radius: 50%; background: #2fae62; color: #fff; font-size: 28px; margin: 0 auto 14px; }
.pd-ly-ok p { color: #666; font-size: 15px; margin: 0; }

/* 右栏通用卡 */
.pd-card { background: #fff; border-radius: 6px; box-shadow: #dee 0 0 2px; padding: 0 15px; margin-bottom: 15px; }
.pd-card h3 { position: relative; margin: 0; height: 58px; line-height: 58px; padding-left: 18px; font-weight: 400; }
.pd-card h3 i { position: absolute; left: 0; top: 22px; width: 6px; height: 16px; background: #c1292e; border-radius: 2px; }
.pd-card h3 span { font-size: 16px; color: #333; }
.pd-card h3 a { float: right; font-size: 13px; color: #999; }
.pd-card ul { list-style: none; margin: 0; padding: 0 0 12px; }

/* 企业信息 */
.pd-com-pic { height: 183px; padding: 8px; border: 1px solid #eaeaea; border-radius: 10px; overflow: hidden; box-sizing: border-box; background: #f7f7f7; }
.pd-com-pic img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; }
.pd-com-pic .ph-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px; font-weight: 700; }
.pd-com-name { font-size: 18px; color: #333; line-height: 26px; margin: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pd-com-meta { margin: 0 10px 10px; font-size: 15px; }
.pd-com-meta em { font-style: normal; color: #999; }
.pd-com-meta span { color: #666; }
.pd-com-meta .pd-red { color: #b70000; }

/* 相关资讯 */
.pd-hot-img { width: 260px; border: 1px solid #ececee; border-radius: 6px; overflow: hidden; }
.pd-hot-img a { display: block; position: relative; }
.pd-hot-img img { width: 260px; height: 147px; object-fit: cover; display: block; border-radius: 6px 6px 0 0; }
.pd-hot-img .ph-cover { width: 260px; height: 147px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; font-weight: 700; }
.pd-hot-img span { position: absolute; left: 0; bottom: 0; width: 100%; height: 32px; line-height: 32px; font-size: 13px; color: #fff; background: rgba(0, 0, 0, .55); padding: 0 8px; box-sizing: border-box; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pd-news ul li { position: relative; height: 36px; line-height: 36px; overflow: hidden; padding-left: 12px; font-size: 14px; }
.pd-news ul li::before { content: ""; position: absolute; left: 0; top: 16px; width: 4px; height: 4px; border-radius: 2px; background: #c2292e; }
.pd-news ul li a { color: #555; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; display: block; }
.pd-news ul li a:hover { color: #c1292e; }
.pd-empty { font-size: 13px; color: #999; padding: 10px 0 16px; margin: 0; }

/* 热门排行榜 */
.pd-rank h3 { height: 54px; line-height: 54px; }
.pd-rank ul li { position: relative; height: 39px; line-height: 39px; border-bottom: 1px dashed #f0f0f0; overflow: hidden; }
.pd-rank ul li:last-child { border-bottom: none; }
.pd-rank ul li em { float: left; width: 16px; height: 18px; margin-top: 10px; line-height: 18px; text-align: center; font-size: 12px; font-style: normal; color: #fff; background: #c3c3c3; border-radius: 2px; }
.pd-rank ul li em.pd-red-bg { background: #c1292e; }
.pd-rank ul li a { float: left; width: 50%; margin-left: 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 14px; color: #555; }
.pd-rank ul li a:hover { color: #c1292e; }
.pd-rank ul li span { float: right; color: #c1292e; font-size: 13px; }

/* 推荐品牌 */
.pd-rec h3 { height: 66px; line-height: 66px; }
.pd-rec ul li { height: 74px; padding: 10px 0; border-bottom: 1px dashed #f0f0f0; overflow: hidden; }
.pd-rec ul li:last-child { border-bottom: none; }
.pd-rec-pic { float: left; width: 107px; height: 74px; border-radius: 6px; overflow: hidden; border: 1px solid #eaeaea; box-sizing: border-box; background: #f7f7f7; }
.pd-rec-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-rec-pic .ph-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 700; }
.pd-rec-bd { float: right; width: 138px; }
.pd-rec-bd p { margin: 0; line-height: 22px; font-size: 12px; }
.pd-rec-bd .p1 a { display: block; font-size: 15px; color: #333; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pd-rec-bd .p1 a:hover { color: #c1292e; }
.pd-rec-bd .p2 em { font-style: normal; color: #999; }
.pd-rec-bd .p2 span { color: #c0292e; }

/* 热点资讯 */
.pd-hotnews h3 { height: 64px; line-height: 64px; }
.pd-hotnews ul li { position: relative; padding: 6px 0 6px 12px; }
.pd-hotnews ul li::before { content: ""; position: absolute; left: 0; top: 16px; width: 3px; height: 3px; border-radius: 2px; background: #c1292e; }
.pd-hotnews ul li .p1 a { display: block; font-size: 14px; line-height: 22px; color: #444; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.pd-hotnews ul li .p1 a:hover { color: #c1292e; }
.pd-hotnews ul li .p2 { color: #999; font-size: 12px; }

/* 分类导航 */
.pd-cats ul { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 14px; }
.pd-cats ul li { width: calc(50% - 5px); height: 33px; line-height: 33px; border: 1px solid #ced5d8; border-radius: 17px; text-align: center; }
.pd-cats ul li a { display: block; font-size: 14px; color: #555; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; padding: 0 6px; }
.pd-cats ul li:hover { border-color: #c1292e; }
.pd-cats ul li:hover a { color: #c1292e; }

/* 响应式 */
@media (max-width: 1240px) {
  .pd-w { width: 100%; padding: 0 15px; box-sizing: border-box; }
  .pd-main { flex-wrap: wrap; }
  .pd-focus { width: 100%; }
  .pd-f-main { width: 100%; height: 300px; }
  .pd-rbox { width: 100%; }
  .pd-middle { display: block; }
  .pd-lcont, .pd-rcont { width: 100%; }
  .pd-shortcut { position: static; width: 100%; margin-top: 20px; }
  .pd-ly-write, .pd-ly-area { width: 100%; }
}
@media (max-width: 768px) {
  .pd-bcard { flex-wrap: wrap; height: auto; padding: 14px 10px; }
  .pd-bcard li { width: 50%; margin-bottom: 10px; }
  .pd-bi-half { width: 100%; }
  .pd-btn { width: 48%; margin: 0 2% 10px 0; }
  .pd-btn-2 { margin-left: 0; }
  .pd-lcont2 ul { flex-wrap: wrap; }
  .pd-lcont2 ul li { width: calc(50% - 5px); }
  .pd-tabs li { margin: 0 12px; width: auto; }
  .pd-ly-box { padding: 20px; }
  .pd-ly-title { padding: 0 20px; }
  .pd-ly-title strong { font-size: 18px; }
  .pd-ly-bottom { padding-left: 0; }
  .pd-ly-bottom a { width: 100%; }
}

/* 详情富文本正文（后台 content 字段渲染） */
.pd-info-rich { font-size: 15px; color: #666; line-height: 26px; }
.pd-info-rich p { padding: 5px 0; margin: 0; }
.pd-info-rich div { margin: 6px 0; }
.pd-info-rich img { max-width: 100%; height: auto; display: block; margin: 8px auto; border-radius: 6px; }
.pd-info-rich b, .pd-info-rich strong { color: #333; }
.pd-info-rich h1, .pd-info-rich h2, .pd-info-rich h3, .pd-info-rich h4 { color: #333; margin: 12px 0 6px; font-size: 17px; }
.pd-info-rich blockquote { border-left: 3px solid #c0292e; margin: 8px 0; padding: 2px 12px; color: #888; background: #fafafa; }

/* ===== 餐品供应（仿 canyin.com 供应大厅） ===== */
.gy-page { padding-bottom: 40px; }
.gy-head h1 { font-size: 22px; font-weight: 700; display: flex; align-items: baseline; gap: 10px; }
.gy-head-sub { font-size: 13px; font-weight: 400; color: var(--text3); }
.gy-desc { font-size: 13px; color: var(--text2); margin: 8px 0 0; }

.gy-filter { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2px 16px; margin: 14px 0; }
.gyf-row { display: flex; align-items: flex-start; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.gyf-row:last-child { border-bottom: 0; }
.gyf-row > label { width: 70px; flex-shrink: 0; color: var(--text3); font-size: 13px; padding-top: 5px; }
.gyf-opts { display: flex; flex-wrap: wrap; gap: 6px 4px; align-items: center; }
.gyf-opts a { padding: 4px 12px; font-size: 13px; color: var(--text2); border-radius: 4px; }
.gyf-opts a em { font-style: normal; color: var(--text3); margin-left: 3px; font-size: 11px; }
.gyf-opts a:hover { color: var(--red); }
.gyf-opts a.on { background: var(--red); color: #fff; }
.gyf-opts a.on em { color: rgba(255, 255, 255, .85); }
.gyf-sortrow { align-items: center; }
.gyf-prov { margin-left: 18px; font-size: 13px; color: var(--text3); display: flex; align-items: center; gap: 6px; }
.gyf-prov select { height: 30px; border: 1px solid var(--line); border-radius: 4px; padding: 0 6px; font-size: 13px; color: var(--text2); background: #fff; }
.gyf-search { margin-left: auto; display: flex; height: 30px; }
.gyf-search input { width: 160px; border: 1px solid var(--line); border-right: 0; border-radius: 4px 0 0 4px; padding: 0 10px; font-size: 13px; }
.gyf-search button { border: 0; background: var(--red); color: #fff; padding: 0 16px; border-radius: 0 4px 4px 0; font-size: 13px; cursor: pointer; }
.gyf-search button:hover { background: var(--red-d); }

.gy-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.gy-item { width: calc((100% - 64px) / 5); }
.gy-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 10px; position: relative; transition: box-shadow .2s, transform .2s; }
.gy-card:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, .1); transform: translateY(-2px); }
.gy-view { position: absolute; left: 10px; right: 10px; top: 10px; height: 200px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px; background: linear-gradient(transparent, rgba(0, 0, 0, .5)); border-radius: 4px; color: #fff; font-size: 14px; opacity: 0; transition: opacity .2s; z-index: 2; }
.gy-card:hover .gy-view { opacity: 1; }
.gy-img { width: 100%; aspect-ratio: 1 / 1; border-radius: 4px; overflow: hidden; background: #f5f5f5; }
.gy-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gy-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #fff; font-size: 30px; font-weight: 700; }
.gy-title { margin-top: 10px; height: 40px; overflow: hidden; font-size: 14px; line-height: 20px; }
.gy-title a { color: var(--text); }
.gy-title a:hover { color: var(--red); }
.gy-value { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.gy-price { color: var(--red); font-weight: 700; font-size: 16px; }
.gy-loc { color: var(--text3); font-size: 12px; display: flex; align-items: center; gap: 3px; }
.gy-ico-loc { width: 9px; height: 9px; border-radius: 50% 50% 50% 0; background: #c8c8c8; transform: rotate(-45deg); display: inline-block; }
.gy-company { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; font-size: 12px; color: var(--text3); }
.gy-cname { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 78%; }
.gy-vip { background: #fff3e0; color: #e0662a; border: 1px solid #ffd9a8; border-radius: 3px; padding: 0 5px; font-size: 11px; flex-shrink: 0; }
.gy-empty { text-align: center; color: var(--text3); padding: 60px 0; }
.gy-rec-head { font-size: 16px; font-weight: 600; border-left: 3px solid var(--red); padding-left: 10px; margin: 6px 0 14px; }
.gy-grid-sm { gap: 16px; }
.gy-grid-sm .gy-item { width: calc((100% - 48px) / 4); }
.gy-pager { margin-top: 6px; }

/* 商品详情页 */
.sp-page { padding-bottom: 40px; }
.pannel-product { display: flex; gap: 30px; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 20px; }
.sp-swiper { width: 360px; flex-shrink: 0; }
.sp-booth { width: 360px; height: 360px; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #f7f7f7; }
.sp-booth img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sp-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 60px; font-weight: 700; }
.sp-thumb { display: flex; gap: 8px; margin-top: 10px; }
.sp-thumb li { width: 60px; height: 60px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; cursor: pointer; }
.sp-thumb li.sp-sel { border-color: var(--red); }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-desc { flex: 1; min-width: 0; }
.sp-h4 { font-size: 22px; line-height: 1.4; margin-bottom: 14px; }
.sp-data { border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); padding: 14px 0; }
.sp-data ul li { display: flex; padding: 4px 0; font-size: 14px; }
.sp-label { width: 64px; color: var(--text3); flex-shrink: 0; }
.sp-price { color: var(--red); font-weight: 700; font-size: 18px; }
.sp-buttons { display: flex; gap: 12px; margin: 16px 0; }
.sp-btn-primary { background: var(--red); color: #fff; border: 0; padding: 11px 28px; border-radius: 4px; font-size: 15px; cursor: pointer; }
.sp-btn-primary:hover { background: var(--red-d); }
.sp-btn-primary.block { width: 100%; }
.sp-btn-second { background: #fff; color: var(--red); border: 1px solid var(--red); padding: 11px 28px; border-radius: 4px; font-size: 15px; cursor: pointer; }
.sp-btn-second:hover { background: var(--red-l); }
.sp-dynamic { height: 110px; overflow: hidden; background: #fafafa; border-radius: 4px; padding: 8px 12px; }
#spNews li { font-size: 12px; color: var(--text2); line-height: 22px; }
.sp-face { color: var(--red); margin-right: 4px; }
.sp-info { display: flex; gap: 20px; align-items: flex-start; }
.sp-left { width: 280px; flex-shrink: 0; }
.sp-right { flex: 1; min-width: 0; }
.sp-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.sp-card-h { font-size: 15px; font-weight: 600; padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; }
.sp-vip { background: #fff3e0; color: #e0662a; border: 1px solid #ffd9a8; border-radius: 3px; font-size: 11px; font-style: normal; padding: 0 5px; }
.sp-card-b { padding: 12px 14px; }
.sp-company li { display: flex; padding: 5px 0; font-size: 13px; }
.sp-cl { width: 64px; color: var(--text3); flex-shrink: 0; }
.sp-cc { color: var(--text); }
.sp-btn-block { display: block; text-align: center; background: var(--red-l); color: var(--red); border: 1px solid #f6c9cb; padding: 9px; border-radius: 4px; margin-top: 12px; }
.sp-btn-block:hover { background: var(--red); color: #fff; }
.sp-left-list li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.sp-left-list li:last-child { border-bottom: 0; }
.sp-l-img { width: 60px; height: 60px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: #f5f5f5; }
.sp-l-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-ph.sm { font-size: 20px; }
.sp-l-title { font-size: 13px; line-height: 1.4; color: var(--text); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sp-l-price { color: var(--red); font-weight: 600; font-size: 13px; margin-top: 4px; }
.sp-details { background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.sp-tabs { display: flex; align-items: center; border-bottom: 1px solid var(--line); padding: 0 14px; }
.sp-tab { padding: 13px 16px; font-size: 15px; color: var(--text2); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; }
.sp-tab.on { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
.sp-tab-btn { margin-left: auto; background: var(--red); color: #fff; border: 0; padding: 7px 18px; border-radius: 4px; font-size: 13px; margin-right: 14px; cursor: pointer; }
.sp-tab-list { padding: 16px; }
.sp-ti { display: none; }
.sp-ti.on { display: block; }
.sp-specs { margin-bottom: 14px; }
.sp-spec { display: flex; padding: 5px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.sp-sk { width: 120px; color: var(--text3); flex-shrink: 0; }
.sp-sv { color: var(--text); }
.sp-rich { font-size: 14px; line-height: 1.9; color: var(--text2); white-space: pre-wrap; }
.sp-contact { font-size: 14px; }
.sp-ct { font-weight: 600; margin-bottom: 8px; }
.sp-cp { display: flex; gap: 10px; padding: 5px 0; }
.sp-cp .sp-cl { width: 64px; color: var(--text3); }
.sp-cphone { color: var(--red); font-weight: 600; }
.sp-rec { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 14px; }
.sp-rec-h { font-size: 16px; font-weight: 600; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.sp-modal { display: none; position: fixed; inset: 0; z-index: 999; align-items: center; justify-content: center; }
.sp-modal-mask { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); }
.sp-modal-box { position: relative; width: 360px; background: #fff; border-radius: 8px; overflow: hidden; }
.sp-modal-h { padding: 14px 16px; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.sp-modal-x { font-size: 22px; color: var(--text3); cursor: pointer; line-height: 1; }
.sp-modal-b { padding: 16px; }
.sp-in, .sp-ta { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 9px 10px; margin-bottom: 10px; font-size: 14px; box-sizing: border-box; }
.sp-ta { height: 70px; resize: vertical; }
.sp-tip { font-size: 13px; margin-top: 8px; text-align: center; min-height: 18px; }

@media (max-width: 768px) {
  .gy-item, .gy-grid-sm .gy-item { width: calc((100% - 16px) / 2) !important; }
  .gyf-row { flex-direction: column; }
  .gyf-prov, .gyf-search { margin-left: 0; margin-top: 8px; }
  .gyf-search { width: 100%; } .gyf-search input { flex: 1; }
  .pannel-product { flex-direction: column; }
  .sp-swiper, .sp-booth { width: 100%; }
  .sp-booth { height: auto; aspect-ratio: 1 / 1; }
  .sp-info { flex-direction: column; }
  .sp-left { width: 100%; }
}

/* ===== 会员中心 ===== */
.mc-auth { display: flex; justify-content: center; padding: 30px 0 50px; }
.mc-auth-card { width: 420px; max-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 32px; box-shadow: 0 4px 18px rgba(0,0,0,.05); }
.mc-auth-card.wide { width: 640px; }
.mc-auth-card h2 { font-size: 22px; text-align: center; }
.mc-sub { color: var(--text3); font-size: 13px; text-align: center; margin: 8px 0 20px; line-height: 1.7; }
.mc-in { width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; margin-bottom: 12px; font-size: 14px; background: #fff; }
.mc-in.ta { height: 96px; resize: vertical; }
.mc-in:focus { border-color: var(--red); }
.mc-btn { width: 100%; background: var(--red); color: #fff; border: 0; border-radius: 6px; padding: 12px; font-size: 15px; cursor: pointer; }
.mc-btn:hover { background: var(--red-d); }
.mc-btn.sm { width: auto; padding: 8px 20px; font-size: 14px; display: inline-block; text-decoration: none; }
.mc-btn.muted { background: #eee; color: #666; }
.mc-btn.muted:hover { background: #e2e2e2; }
.mc-tip { min-height: 18px; font-size: 13px; color: var(--red); margin: 2px 0 8px; text-align: center; }
.mc-foot { font-size: 13px; text-align: center; color: var(--text2); margin-top: 16px; }
.mc-foot a { color: var(--red); }
.mc-other { font-size: 13px; text-align: center; margin-top: 10px; }
.mc-other a { color: var(--text3); }
.mc-bar { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mc-bar-l b { font-size: 18px; margin-right: 10px; }
.mc-bar-l span { color: var(--text3); font-size: 13px; }
.mc-logout { color: var(--text3); font-size: 12px; margin-left: 14px; border: 1px solid var(--line); padding: 3px 10px; border-radius: 12px; }
.mc-logout:hover { color: var(--red); border-color: var(--red); }
.mc-grid { display: flex; gap: 16px; }
.mc-card { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.mc-card-h { font-size: 15px; font-weight: 600; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.mc-card-b { padding: 16px; line-height: 1.9; }
.mc-ok { color: #1d7a4a; font-weight: 600; background: #eaf7ef; border: 1px solid #cdeedb; border-radius: 6px; padding: 10px 12px; }
.mc-ok-sub { color: var(--text2); font-size: 13px; margin-top: 10px; }
.mc-wait { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; border-radius: 6px; padding: 10px 12px; }
.mc-err { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; border-radius: 6px; padding: 10px 12px; margin-bottom: 12px; }
.mc-todo { color: var(--text2); margin-bottom: 12px; }
.mc-tip-line { font-size: 12px; color: var(--text3); margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 10px; }
.mc-stat { display: flex; gap: 16px; }
.mc-stat a { flex: 1; text-align: center; background: #fafafa; border: 1px solid var(--line); border-radius: 8px; padding: 16px 6px; }
.mc-stat b { display: block; font-size: 26px; color: var(--red); }
.mc-stat span { color: var(--text2); font-size: 13px; }
.mc-actions { margin-top: 16px; display: flex; gap: 10px; }
.mc-guide { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; margin-top: 16px; }
.mc-guide h3 { font-size: 15px; margin-bottom: 8px; }
.mc-guide ol { margin: 0; padding-left: 20px; color: var(--text2); font-size: 13px; line-height: 2; }
.mc-guide b { color: var(--red); }
.mc-head-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; }
.mc-head-row h1 { font-size: 18px; flex: 1; }
.mc-head-row p { color: var(--text3); font-size: 12px; margin: 0; }
.mc-back { color: var(--text3); font-size: 13px; border: 1px solid var(--line); padding: 4px 12px; border-radius: 12px; }
.mc-back:hover { color: var(--red); border-color: var(--red); }
.mc-line { background: #fff7e6; border: 1px dashed #e8c47c; color: #8a6400; border-radius: 6px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
.mc-box { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.mc-table { width: 100%; border-collapse: collapse; }
.mc-table th { background: #f7f8fa; font-size: 13px; color: var(--text2); text-align: left; padding: 10px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mc-table td { padding: 10px; font-size: 14px; border-bottom: 1px solid #f2f2f2; vertical-align: top; }
.mc-table tr:last-child td { border-bottom: 0; }
.mc-title { display: flex; align-items: center; gap: 8px; }
.mc-title img { width: 42px; height: 32px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.mc-title a { color: var(--text); font-weight: 600; }
.mc-title a:hover { color: var(--red); }
.mc-empty { text-align: center; color: var(--text3); padding: 40px 0; }
.mc-tag { display: inline-block; font-size: 12px; border-radius: 3px; padding: 1px 8px; }
.mt-ok { color: #1d7a4a; background: #eaf7ef; border: 1px solid #cdeedb; }
.mt-warn { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; }
.mt-danger { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; }
.mc-ops a { color: var(--text2); font-size: 13px; margin-right: 10px; }
.mc-ops a:hover { color: var(--red); }
.mc-form-row { margin-bottom: 4px; }
.mc-form-row label { display: block; font-size: 13px; color: var(--text2); margin: 4px 0 6px; }
.mc-upload { width: 100%; height: 130px; border: 1px dashed #ccc; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; color: var(--text3); font-size: 13px; background: #fafafa; }
.mc-upload img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 768px) { .mc-grid { flex-direction: column; } }
/* ===== 会员中心 ===== */
.mc-auth { display: flex; justify-content: center; padding: 30px 0 50px; }
.mc-auth-card { width: 420px; max-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 32px; box-shadow: 0 4px 18px rgba(0,0,0,.05); }
.mc-auth-card.wide { width: 640px; }
.mc-auth-card h2 { font-size: 22px; text-align: center; }
.mc-sub { color: var(--text3); font-size: 13px; text-align: center; margin: 8px 0 20px; line-height: 1.7; }
.mc-in { width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; margin-bottom: 12px; font-size: 14px; background: #fff; }
.mc-in.ta { height: 96px; resize: vertical; }
.mc-in:focus { border-color: var(--red); }
.mc-btn { width: 100%; background: var(--red); color: #fff; border: 0; border-radius: 6px; padding: 12px; font-size: 15px; cursor: pointer; }
.mc-btn:hover { background: var(--red-d); }
.mc-btn.sm { width: auto; padding: 8px 20px; font-size: 14px; display: inline-block; text-decoration: none; }
.mc-btn.muted { background: #eee; color: #666; }
.mc-btn.muted:hover { background: #e2e2e2; }
.mc-tip { min-height: 18px; font-size: 13px; color: var(--red); margin: 2px 0 8px; text-align: center; }
.mc-foot { font-size: 13px; text-align: center; color: var(--text2); margin-top: 16px; }
.mc-foot a { color: var(--red); }
.mc-other { font-size: 13px; text-align: center; margin-top: 10px; }
.mc-other a { color: var(--text3); }
.mc-bar { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mc-bar-l b { font-size: 18px; margin-right: 10px; }
.mc-bar-l span { color: var(--text3); font-size: 13px; }
.mc-logout { color: var(--text3); font-size: 12px; margin-left: 14px; border: 1px solid var(--line); padding: 3px 10px; border-radius: 12px; }
.mc-logout:hover { color: var(--red); border-color: var(--red); }
.mc-grid { display: flex; gap: 16px; }
.mc-card { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.mc-card-h { font-size: 15px; font-weight: 600; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.mc-card-b { padding: 16px; line-height: 1.9; }
.mc-ok { color: #1d7a4a; font-weight: 600; background: #eaf7ef; border: 1px solid #cdeedb; border-radius: 6px; padding: 10px 12px; }
.mc-ok-sub { color: var(--text2); font-size: 13px; margin-top: 10px; }
.mc-wait { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; border-radius: 6px; padding: 10px 12px; }
.mc-err { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; border-radius: 6px; padding: 10px 12px; margin-bottom: 12px; }
.mc-todo { color: var(--text2); margin-bottom: 12px; }
.mc-tip-line { font-size: 12px; color: var(--text3); margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 10px; }
.mc-stat { display: flex; gap: 16px; }
.mc-stat a { flex: 1; text-align: center; background: #fafafa; border: 1px solid var(--line); border-radius: 8px; padding: 16px 6px; }
.mc-stat b { display: block; font-size: 26px; color: var(--red); }
.mc-stat span { color: var(--text2); font-size: 13px; }
.mc-actions { margin-top: 16px; display: flex; gap: 10px; }
.mc-guide { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; margin-top: 16px; }
.mc-guide h3 { font-size: 15px; margin-bottom: 8px; }
.mc-guide ol { margin: 0; padding-left: 20px; color: var(--text2); font-size: 13px; line-height: 2; }
.mc-guide b { color: var(--red); }
.mc-head-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; }
.mc-head-row h1 { font-size: 18px; flex: 1; }
.mc-head-row p { color: var(--text3); font-size: 12px; margin: 0; }
.mc-back { color: var(--text3); font-size: 13px; border: 1px solid var(--line); padding: 4px 12px; border-radius: 12px; }
.mc-back:hover { color: var(--red); border-color: var(--red); }
.mc-line { background: #fff7e6; border: 1px dashed #e8c47c; color: #8a6400; border-radius: 6px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
.mc-box { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.mc-table { width: 100%; border-collapse: collapse; }
.mc-table th { background: #f7f8fa; font-size: 13px; color: var(--text2); text-align: left; padding: 10px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mc-table td { padding: 10px; font-size: 14px; border-bottom: 1px solid #f2f2f2; vertical-align: top; }
.mc-table tr:last-child td { border-bottom: 0; }
.mc-title { display: flex; align-items: center; gap: 8px; }
.mc-title img { width: 42px; height: 32px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.mc-title a { color: var(--text); font-weight: 600; }
.mc-title a:hover { color: var(--red); }
.mc-empty { text-align: center; color: var(--text3); padding: 40px 0; }
.mc-tag { display: inline-block; font-size: 12px; border-radius: 3px; padding: 1px 8px; }
.mt-ok { color: #1d7a4a; background: #eaf7ef; border: 1px solid #cdeedb; }
.mt-warn { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; }
.mt-danger { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; }
.mc-ops a { color: var(--text2); font-size: 13px; margin-right: 10px; }
.mc-ops a:hover { color: var(--red); }
.mc-form-row { margin-bottom: 4px; }
.mc-form-row label { display: block; font-size: 13px; color: var(--text2); margin: 4px 0 6px; }
.mc-upload { width: 100%; height: 130px; border: 1px dashed #ccc; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; color: var(--text3); font-size: 13px; background: #fafafa; }
.mc-upload img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 768px) { .mc-grid { flex-direction: column; } }
/* ===== 会员中心 ===== */
.mc-auth { display: flex; justify-content: center; padding: 30px 0 50px; }
.mc-auth-card { width: 420px; max-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 32px; box-shadow: 0 4px 18px rgba(0,0,0,.05); }
.mc-auth-card.wide { width: 640px; }
.mc-auth-card h2 { font-size: 22px; text-align: center; }
.mc-sub { color: var(--text3); font-size: 13px; text-align: center; margin: 8px 0 20px; line-height: 1.7; }
.mc-in { width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; margin-bottom: 12px; font-size: 14px; background: #fff; }
.mc-in.ta { height: 96px; resize: vertical; }
.mc-in:focus { border-color: var(--red); }
.mc-btn { width: 100%; background: var(--red); color: #fff; border: 0; border-radius: 6px; padding: 12px; font-size: 15px; cursor: pointer; }
.mc-btn:hover { background: var(--red-d); }
.mc-btn.sm { width: auto; padding: 8px 20px; font-size: 14px; display: inline-block; text-decoration: none; }
.mc-btn.muted { background: #eee; color: #666; }
.mc-btn.muted:hover { background: #e2e2e2; }
.mc-tip { min-height: 18px; font-size: 13px; color: var(--red); margin: 2px 0 8px; text-align: center; }
.mc-foot { font-size: 13px; text-align: center; color: var(--text2); margin-top: 16px; }
.mc-foot a { color: var(--red); }
.mc-other { font-size: 13px; text-align: center; margin-top: 10px; }
.mc-other a { color: var(--text3); }
.mc-bar { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mc-bar-l b { font-size: 18px; margin-right: 10px; }
.mc-bar-l span { color: var(--text3); font-size: 13px; }
.mc-logout { color: var(--text3); font-size: 12px; margin-left: 14px; border: 1px solid var(--line); padding: 3px 10px; border-radius: 12px; }
.mc-logout:hover { color: var(--red); border-color: var(--red); }
.mc-grid { display: flex; gap: 16px; }
.mc-card { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.mc-card-h { font-size: 15px; font-weight: 600; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.mc-card-b { padding: 16px; line-height: 1.9; }
.mc-ok { color: #1d7a4a; font-weight: 600; background: #eaf7ef; border: 1px solid #cdeedb; border-radius: 6px; padding: 10px 12px; }
.mc-ok-sub { color: var(--text2); font-size: 13px; margin-top: 10px; }
.mc-wait { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; border-radius: 6px; padding: 10px 12px; }
.mc-err { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; border-radius: 6px; padding: 10px 12px; margin-bottom: 12px; }
.mc-todo { color: var(--text2); margin-bottom: 12px; }
.mc-tip-line { font-size: 12px; color: var(--text3); margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 10px; }
.mc-stat { display: flex; gap: 16px; }
.mc-stat a { flex: 1; text-align: center; background: #fafafa; border: 1px solid var(--line); border-radius: 8px; padding: 16px 6px; }
.mc-stat b { display: block; font-size: 26px; color: var(--red); }
.mc-stat span { color: var(--text2); font-size: 13px; }
.mc-actions { margin-top: 16px; display: flex; gap: 10px; }
.mc-guide { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; margin-top: 16px; }
.mc-guide h3 { font-size: 15px; margin-bottom: 8px; }
.mc-guide ol { margin: 0; padding-left: 20px; color: var(--text2); font-size: 13px; line-height: 2; }
.mc-guide b { color: var(--red); }
.mc-head-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; }
.mc-head-row h1 { font-size: 18px; flex: 1; }
.mc-head-row p { color: var(--text3); font-size: 12px; margin: 0; }
.mc-back { color: var(--text3); font-size: 13px; border: 1px solid var(--line); padding: 4px 12px; border-radius: 12px; }
.mc-back:hover { color: var(--red); border-color: var(--red); }
.mc-line { background: #fff7e6; border: 1px dashed #e8c47c; color: #8a6400; border-radius: 6px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
.mc-box { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.mc-table { width: 100%; border-collapse: collapse; }
.mc-table th { background: #f7f8fa; font-size: 13px; color: var(--text2); text-align: left; padding: 10px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mc-table td { padding: 10px; font-size: 14px; border-bottom: 1px solid #f2f2f2; vertical-align: top; }
.mc-table tr:last-child td { border-bottom: 0; }
.mc-title { display: flex; align-items: center; gap: 8px; }
.mc-title img { width: 42px; height: 32px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.mc-title a { color: var(--text); font-weight: 600; }
.mc-title a:hover { color: var(--red); }
.mc-empty { text-align: center; color: var(--text3); padding: 40px 0; }
.mc-tag { display: inline-block; font-size: 12px; border-radius: 3px; padding: 1px 8px; }
.mt-ok { color: #1d7a4a; background: #eaf7ef; border: 1px solid #cdeedb; }
.mt-warn { color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; }
.mt-danger { color: var(--red); background: #fdecec; border: 1px solid #f6c9cb; }
.mc-ops a { color: var(--text2); font-size: 13px; margin-right: 10px; }
.mc-ops a:hover { color: var(--red); }
.mc-form-row { margin-bottom: 4px; }
.mc-form-row label { display: block; font-size: 13px; color: var(--text2); margin: 4px 0 6px; }
.mc-upload { width: 100%; height: 130px; border: 1px dashed #ccc; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; color: var(--text3); font-size: 13px; background: #fafafa; }
.mc-upload img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 768px) { .mc-grid { flex-direction: column; } }

/* ===== 认证页（仿 canyin.com 登录/注册） ===== */
.au-page { background: #F0F0F0; min-height: 100vh; display: flex; flex-direction: column; }
.au-head { background: #fff; }
.au-head-in { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; }
.au-logo { display: flex; align-items: center; gap: 8px; }
.au-logo-mark { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg, #c8161d, #e8501f); color: #fff; font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.au-logo b { font-size: 22px; color: #c8161d; letter-spacing: 2px; }
.au-logo img { height: 40px; width: auto; display: block; }
.au-head-title { font-size: 24px; font-weight: 700; color: #707070; margin-left: 32px; letter-spacing: 4px; }
.au-login-mid { min-height: 620px; flex: 1; position: relative; overflow: hidden; background: #1a1a1a url('/images/login-bg.jpg') center center / cover no-repeat; display: flex; align-items: center; padding: 0 clamp(60px, 8vw, 150px); }
.au-login-mid::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); z-index: 0; }
.au-side { position: relative; z-index: 1; flex: 1; color: #fff; min-width: 0; display: flex; align-items: center; justify-content: center; padding: 20px; }
.au-side-in { width: 100%; max-width: 480px; text-align: center; }
.au-side-mark { width: 92px; height: 92px; margin: 0 auto; border-radius: 22px; background: linear-gradient(135deg, #fff 0%, #ffe3e3 100%); color: #c8161d; font-size: 54px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 32px rgba(0, 0, 0, .3); }
.au-side-name { font-size: 64px; font-weight: 800; letter-spacing: 14px; margin: 30px 0 0 14px; text-shadow: 0 3px 14px rgba(0, 0, 0, .35); line-height: 1.15; }
.au-side-rule { width: 56px; height: 4px; border-radius: 2px; margin: 24px auto; background: linear-gradient(90deg, #ffd24a, #ff7a3c); opacity: .9; }
.au-side-slogan { font-size: 19px; letter-spacing: 5px; opacity: .96; }
.au-side-points { list-style: none; margin: 34px auto 0; padding: 0; font-size: 15px; display: inline-block; text-align: left; opacity: .95; }
.au-side-points li { padding: 6px 0; line-height: 1.6; }
.au-side-points li::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, #ffd24a, #ff7a3c); margin-right: 12px; vertical-align: 1px; }
.au-login-in { position: relative; z-index: 1; width: 372px; flex-shrink: 0; margin-left: auto; margin-right: clamp(24px, 6vw, 96px); }
.au-card { background: #fff; box-shadow: 0 0 6px rgba(0, 0, 0, .16); padding: 22px 26px 30px; border-radius: 4px; box-sizing: border-box; margin: 30px 0; }
.au-tab { display: flex; justify-content: center; gap: 36px; border-bottom: 1px solid #e5e5e5; list-style: none; margin: 0; padding: 0; }
.au-tab li { list-style: none; }
.au-tab li a { display: inline-block; font-size: 16px; color: #333; padding: 4px 2px 10px; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; text-decoration: none; }
.au-tab li.on a, .au-tab a:hover { color: #FC0000; border-color: #FC0000; }
.au-pane { padding-top: 28px; }
.au-fg { margin-bottom: 18px; }
.au-input { position: relative; }
.au-input .au-ic { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #999; display: flex; pointer-events: none; }
.au-input input { width: 100%; box-sizing: border-box; height: 40px; background: #F8F8F8; border: 1px solid #D8D8D8; border-radius: 2px; padding: 0 12px 0 40px; font-size: 14px; }
.au-input input:focus { background: #fff; border-color: #c8161d; outline: none; }
/* 短信验证码行：输入框 + 获取按钮 */
.au-sms { display: flex; align-items: stretch; }
.au-sms input { flex: 1; padding-right: 12px; border-top-right-radius: 0; border-bottom-right-radius: 0; }
.au-sms-btn { flex: 0 0 auto; white-space: nowrap; padding: 0 16px; height: 40px; border: 1px solid #c8161d; border-left: none; background: #c8161d; color: #fff; font-size: 13px; cursor: pointer; border-radius: 0 2px 2px 0; transition: background .2s; }
.au-sms-btn:hover:not(:disabled) { background: #a91218; }
.au-sms-btn:disabled { background: #bbb; border-color: #bbb; cursor: not-allowed; }
.au-pwd-row { text-align: right; margin-bottom: 6px; }
.au-pwd-row a { color: #666; font-size: 13px; }
.au-pwd-row a:hover { color: #FC0000; }
.au-btn { display: block; width: 100%; height: 44px; border: 0; border-radius: 2px; background: #FB1908; color: #fff; font-size: 16px; cursor: pointer; margin-top: 6px; letter-spacing: 6px; }
.au-btn:hover { background: #d90a00; }
.au-btn:disabled { opacity: .6; cursor: not-allowed; }
.au-pane-foot { text-align: center; font-size: 13px; color: #666; margin-top: 18px; }
.au-pane-foot a { color: #FC0000; }
.au-note { font-size: 13px; color: #c8161d; margin: 2px 0 12px; }
.au-tip { min-height: 18px; font-size: 13px; color: #FC0000; margin: 8px 0 0; }
.au-reg-mid { flex: 1; background: #F0F0F0; padding-bottom: 60px; }
.au-reg-in { max-width: 990px; margin: 0 auto; padding: 0 20px; }
.au-reg-card { background: #fff; margin-top: 36px; border: 1px solid #e5e5e5; }
.au-reg-hd { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #eee; }
.au-reg-hd b { font-size: 17px; color: #333; }
.au-reg-hd .r { font-size: 13px; color: #666; }
.au-reg-hd .r a { color: #FC0000; }
.au-reg-form { padding: 26px 20px 30px; }
.au-reg-grid { max-width: 520px; }
.au-agree { font-size: 12px; color: #888; margin: 2px 0 16px; display: flex; gap: 6px; align-items: flex-start; line-height: 1.8; }
.au-agree a { color: #FC0000; }
.au-foot { color: #888; text-align: center; padding: 22px 10px; font-size: 12px; line-height: 1.9; }
.au-foot.on-img { background: #fff; }
@media (max-width: 900px) { .au-side { display: none; } .au-login-in { width: 100%; max-width: 372px; margin: 0 auto; } .au-login-mid { padding: 0 20px; } }
@media (max-width: 768px) {
  .au-login-in { justify-content: center; }
  .au-card { width: 92%; margin-top: 30px; }
  .au-head-title { display: none; }
  .au-reg-form { padding: 20px 14px 24px; }
}

/* ============ 发布弹窗（餐饮品牌加盟 / 餐品供应 通用） ============ */
.jm-head, .gy-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.jm-head .jm-desc, .gy-head .gy-desc { flex-basis: 100%; margin: 6px 0 0; }
.pub-open-btn { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #c8161d, #e04a2f); color: #fff; font-size: 14px; font-weight: 600; padding: 9px 20px; border: 0; border-radius: 6px; cursor: pointer; white-space: nowrap; box-shadow: 0 4px 14px rgba(200, 22, 29, .25); }
.pub-open-btn:hover { opacity: .92; color: #fff; }
.pub-mask { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, .5); z-index: 1090; }
.pub-modal { display: none; position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 560px; max-width: 94vw; max-height: 90vh; overflow: auto; background: #fff; border-radius: 12px; z-index: 1100; box-shadow: 0 18px 60px rgba(0, 0, 0, .28); }
.pub-modal-hd { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid #f0f0f0; font-size: 16px; font-weight: 700; color: #222; }
.pub-modal-close { font-size: 22px; color: #bbb; cursor: pointer; line-height: 1; }
.pub-modal-close:hover { color: #c8161d; }
.pub-modal-bd { padding: 18px 20px 22px; }
.pub-row { margin-bottom: 13px; }
.pub-row > label { display: block; font-size: 13px; color: #666; margin-bottom: 6px; }
.pub-row > label .req { color: #c8161d; margin-left: 2px; }
.pub-row input, .pub-row textarea, .pub-row select { width: 100%; border: 1px solid #e2e2e2; border-radius: 5px; padding: 8px 11px; font-size: 14px; outline: none; box-sizing: border-box; background: #fff; color: #333; }
.pub-row input:focus, .pub-row textarea:focus, .pub-row select:focus { border-color: #c8161d; }
.pub-2col { display: flex; gap: 10px; }
.pub-2col > * { flex: 1; }
.pub-tip { font-size: 12px; color: #999; margin-top: 6px; }
.pub-tip.err { color: #c8161d; }
.pub-actions { margin-top: 18px; }
.pub-btn { display: inline-block; background: linear-gradient(135deg, #c8161d, #e04a2f); color: #fff; font-size: 15px; padding: 10px 26px; border: 0; border-radius: 6px; cursor: pointer; }
.pub-btn:hover { opacity: .9; color: #fff; }
.pub-btn[disabled] { opacity: .6; cursor: default; }
.pub-gate { text-align: center; padding: 14px 4px; }
.pub-gate p { color: #555; font-size: 14px; margin: 0 0 16px; line-height: 1.7; }
.pub-gate .pub-btn { margin: 0 5px; }
.pub-link { display: inline-block; margin: 0 6px; color: #c8161d; font-size: 14px; text-decoration: underline; cursor: pointer; }
.pub-ok { text-align: center; padding: 20px 0 8px; }
.pub-ok-ico { width: 54px; height: 54px; line-height: 54px; border-radius: 50%; background: #2fae62; color: #fff; font-size: 28px; margin: 0 auto 12px; }
.pub-ok p { color: #666; font-size: 14px; margin: 0 0 6px; }
.pub-up { border: 1px dashed #d8d8d8; border-radius: 8px; height: 104px; display: flex; align-items: center; justify-content: center; color: #999; cursor: pointer; overflow: hidden; position: relative; background: #fafafa; font-size: 13px; }
.pub-up img { max-height: 100%; max-width: 100%; }
.pub-up input[type=file] { display: none; }
.pub-up-url { margin-top: 8px; }

/* 悬浮发布按钮（右下角常驻入口） */
@keyframes pubPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(200, 22, 29, .38); }
  50% { box-shadow: 0 8px 26px rgba(200, 22, 29, .38), 0 0 0 10px rgba(200, 22, 29, .10); }
}
.pub-fab { position: fixed; right: 28px; bottom: 96px; z-index: 1080; display: inline-flex; align-items: center; gap: 7px; background: linear-gradient(135deg, #c8161d, #e04a2f); color: #fff; font-size: 15px; font-weight: 600; padding: 13px 24px; border: 0; border-radius: 999px; cursor: pointer; animation: pubPulse 2.6s ease-in-out infinite; transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s; }
.pub-fab-ico { font-size: 19px; line-height: 1; }
.pub-fab:hover { color: #fff; animation: none; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(200, 22, 29, .48); }
.pub-fab:active { transform: translateY(0); }
@media (max-width: 768px) { .pub-fab { right: 16px; bottom: 20px; padding: 11px 18px; font-size: 14px; } }

/* ============ VIP 会员付费开通页（member/vip） ============ */
.mc-bar-r { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.vp-price { text-align: center; padding: 8px 0 4px; }
.vp-price .vp-cur { font-size: 18px; color: var(--red); font-weight: 700; }
.vp-price b { font-size: 40px; color: var(--red); line-height: 1.1; }
.vp-price .vp-unit { color: var(--text3); font-size: 13px; margin-left: 4px; }
.vp-perks { margin: 12px 0 16px; padding: 0; list-style: none; }
.vp-perks li { position: relative; padding: 6px 0 6px 22px; color: var(--text2); font-size: 14px; border-bottom: 1px dashed var(--line); }
.vp-perks li:before { content: '✓'; position: absolute; left: 0; top: 6px; color: #2fae62; font-weight: 700; }
.vp-note { font-size: 12px; color: var(--text3); margin-top: 8px; text-align: center; }
.vp-pay { background: #fff; border: 1px solid var(--line); border-radius: 8px; margin-top: 16px; }
.vp-pay-hd { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.vp-orderno { color: var(--text3); font-size: 13px; }
.vp-tag { margin-left: auto; font-size: 12px; color: #b26a00; background: #fff7e6; border: 1px solid #ffe4b3; border-radius: 12px; padding: 2px 10px; }
.vp-pay-bd { padding: 18px; }
.vp-steps { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.vp-steps span { font-size: 12px; color: var(--text3); background: #f6f6f6; padding: 4px 12px; border-radius: 12px; }
.vp-steps span.on { background: var(--red); color: #fff; }
.vp-qr-row { display: flex; gap: 22px; align-items: flex-start; }
.vp-qr { text-align: center; flex-shrink: 0; }
.vp-qr-hd { font-size: 13px; color: var(--text2); margin-bottom: 8px; }
.vp-qr-img { width: 200px; height: 200px; border: 1px dashed #ddd; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.vp-qr-img img { width: 100%; height: 100%; object-fit: contain; }
.vp-qr-empty { color: #999; font-size: 13px; line-height: 1.9; }
.vp-qr-tabs { margin-top: 8px; }
.vp-qr-tabs a { display: inline-block; margin: 0 6px; padding: 4px 14px; border: 1px solid var(--line); border-radius: 14px; font-size: 13px; color: var(--text2); text-decoration: none; }
.vp-qr-tabs a.on { background: var(--red); border-color: var(--red); color: #fff; }
.vp-info { flex: 1; min-width: 220px; }
.vp-info-row { display: flex; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.vp-info-row label { width: 90px; color: var(--text3); }
.vp-info-row b.vp-amt { color: var(--red); font-size: 18px; }
.vp-warn { margin-top: 12px; background: #fff7e6; border: 1px solid #ffe4b3; color: #b26a00; font-size: 12px; line-height: 1.8; padding: 8px 12px; border-radius: 6px; }
.vp-form { margin-top: 18px; }
.vp-f-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.vp-f-row > label { width: 90px; flex: none; font-size: 14px; color: var(--text2); line-height: 32px; }
.vp-up { border: 1px dashed #ddd; border-radius: 8px; height: 90px; display: flex; align-items: center; justify-content: center; color: #999; cursor: pointer; overflow: hidden; background: #fafafa; font-size: 13px; }
.vp-up img { max-height: 100%; max-width: 100%; }
.vp-done { text-align: center; padding: 10px 0 4px; }
.vp-done-ico { width: 54px; height: 54px; line-height: 54px; border-radius: 50%; background: #2fae62; color: #fff; font-size: 28px; margin: 0 auto 12px; }
.vp-empty { color: var(--text3); font-size: 13px; padding: 6px 0; }
.vp-table { width: 100%; border-collapse: collapse; margin-top: 6px; font-size: 13px; }
.vp-table th, .vp-table td { border-bottom: 1px solid var(--line); padding: 8px 6px; text-align: left; }
.vp-table th { color: var(--text3); font-weight: 400; background: #fafafa; }
.vp-proof img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); }
.vp-proof img:hover { transform: scale(1.06); }
/* 会员端状态徽章 */
.tag { display: inline-block; padding: 1px 8px; border-radius: 10px; font-size: 12px; background: #eee; color: #888; }
.tag.t-ok { background: #eaf7ef; color: #1d7a4a; }
.tag.t-warn { background: #fff7e6; color: #b26a00; }
.tag.t-danger { background: #fdecec; color: var(--red); }
@media (max-width: 720px) {
  .vp-qr-row { flex-direction: column; }
  .vp-info { width: 100%; }
  .vp-table { display: block; overflow-x: auto; }
}

/* ===== 会员群（VIP 可见） ===== */
.vg-wrap { margin-top: 18px; }
.vg-hd { margin-bottom: 16px; }
.vg-hd h2 { font-size: 22px; display: flex; align-items: center; gap: 8px; margin: 0 0 6px; }
.vg-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: var(--red); color: #fff; font-size: 14px; font-style: normal; }
.vg-hd p { margin: 0; color: var(--text3); font-size: 14px; }

.vg-card { display: flex; gap: 28px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.vg-qr { flex-shrink: 0; width: 210px; text-align: center; }
.vg-qr img { width: 210px; height: 210px; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 6px; }
.vg-qr-cap { margin-top: 10px; font-size: 14px; color: var(--text2); }

.vg-info { flex: 1; min-width: 0; }
.vg-info-h { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.vg-list { list-style: none; margin: 0 0 16px; padding: 0; }
.vg-list li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 14px; color: var(--text2); line-height: 1.7; }
.vg-list li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.vg-note { background: #fff8e6; border: 1px solid #ffe0a3; color: #8a5a00; font-size: 13px; padding: 10px 12px; border-radius: 6px; margin-bottom: 16px; line-height: 1.7; }
.vg-vip-tag { display: inline-block; background: #eaf7ef; color: #1d7a4a; font-size: 13px; padding: 7px 14px; border-radius: 20px; }

.vg-empty { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 56px 20px; text-align: center; }
.vg-empty-ico { width: 56px; height: 56px; margin: 0 auto 14px; border: 2px dashed var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 15px; }
.vg-empty p { margin: 0 0 6px; font-size: 15px; }
.vg-empty-sub { color: var(--text3); font-size: 13px; }

.vg-lock { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 46px 24px; text-align: center; }
.vg-lock-ico { font-size: 34px; line-height: 1; margin-bottom: 12px; }
.vg-lock-h { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.vg-lock-p { color: var(--text3); font-size: 14px; line-height: 1.8; margin: 0 auto 20px; max-width: 520px; }
.vg-lock .mc-btn { display: inline-block; padding: 11px 30px; }
.vg-lock-tip { margin-top: 16px; font-size: 12px; color: var(--text3); }

@media (max-width: 720px) {
  .vg-card { flex-direction: column; gap: 20px; padding: 20px; }
  .vg-qr { width: 100%; }
  .vg-qr img { width: 190px; height: 190px; }
}
