/* 酒界 1:1 仿制 maijiuwang.com 首页样式 */
:root {
  --wine-red: #b22222;
  --wine-red-dark: #8b1a1a;
  --wine-gold: #d4af37;
  --wine-gold-light: #f5e6b0;
  --light-bg: #fff9f5;
  --card-bg: #ffffff;
  --text-main: #1e1a15;
  --text-sub: #666666;
  --text-muted: #999999;
  --line: #f0e6df;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 20px 35px -12px rgba(178,34,34,0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Serif SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.text-red { color: var(--wine-red) !important; }
.text-gold { color: var(--wine-gold) !important; }
.bg-red { background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%); }
.btn-red {
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 32px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 12px rgba(178,34,34,0.2);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(178,34,34,0.3); color: white; }
.btn-gold {
  background: linear-gradient(135deg, var(--wine-gold) 0%, #c59d2e 100%);
  color: #1e1a15;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 12px 36px;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(212,175,55,0.45); color: #1e1a15; }
.jj-container { max-width: 1320px; margin: 0 auto; padding-left: 15px; padding-right: 15px; }

/* 顶部栏 */
.top-bar {
  background: linear-gradient(90deg, #fff8f2 0%, #fff4ec 100%);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(178,34,34,0.08);
  color: var(--text-sub);
}
.top-greeting { color: var(--wine-red); font-weight: 500; }
.top-links a { color: var(--text-sub); margin: 0 8px; transition: color 0.2s; }
.top-links a:hover { color: var(--wine-red); }
.top-links .divider { color: #ddd; }

/* 搜索头部 */
.header-main { background: #fff; padding: 20px 0; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { flex: none; display: flex; align-items: center; }
.logo img { height: 58px; width: auto; display: block; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.logo:hover img { transform: scale(1.03); }
.header-search { flex: 1; max-width: 650px; }
.search-container {
  border: 2px solid var(--wine-red);
  border-radius: 60px;
  overflow: hidden;
  background: white;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.search-container:focus-within { box-shadow: 0 0 0 3px rgba(178,34,34,0.15); }
.search-category-select,
.search-container select,
.search-container select.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none !important;
  background: #fef5f0;
  padding: 12px 28px 12px 16px;
  border-radius: 60px 0 0 60px;
  font-weight: 500;
  width: 110px;
  color: var(--wine-red);
  outline: none;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b22222' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.search-input {
  border: none;
  padding: 12px 16px;
  flex: 1;
  outline: none;
  font-size: 0.95rem;
}
.ai-icon-link {
  font-weight: 600; color: var(--wine-red); font-size: 0.95rem;
  padding: 0 12px; align-self: center; cursor: pointer; flex: none;
  border-left: 1px solid #f0e6e0; transition: color 0.2s;
}
.ai-icon-link:hover { color: #7d1414; }
.search-btn {
  background: var(--wine-red);
  border: none;
  color: white;
  padding: 0 26px;
  border-radius: 0 60px 60px 0;
  font-weight: 600;
  transition: all 0.2s;
  flex: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.search-btn:hover { background: var(--wine-red-dark); }
.hot-keyword { font-size: 0.8rem; color: var(--text-sub); margin-top: 8px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.notice-bar {
  background: linear-gradient(90deg, #fff5f0, #fffaf2);
  border-top: 1px solid rgba(178,34,34,0.08);
  border-bottom: 1px solid rgba(178,34,34,0.08);
  padding: 9px 0; font-size: 0.85rem;
}
.notice-bar .jj-container { display: flex; align-items: center; gap: 10px; }
.notice-bar i { color: var(--wine-red); }
.notice-bar a { color: #6a5a52; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notice-bar a:hover { color: var(--wine-red); }
.hot-keyword a { color: var(--text-sub); margin-right: 14px; transition: color 0.2s; }
.hot-keyword a:hover { color: var(--wine-red); }
.header-qrcode { flex: none; }
.qr-mini { text-align: center; }
.qr-mini img { width: 70px; height: 70px; border-radius: 6px; object-fit: cover; border: 1px solid var(--line); }
.qr-mini span { display: block; font-size: 0.75rem; color: var(--text-sub); margin-top: 4px; }

/* 主导航 */
.nav-main {
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(178,34,34,0.25);
  position: relative;
  z-index: 1030;
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 50px; }
.nav-category {
  background: rgba(0,0,0,0.12);
  height: 50px;
  flex: none;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-category-btn {
  background: transparent;
  border: 0;
  height: 50px;
  padding: 0 24px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-category-btn:hover, .nav-category-btn.show { background: rgba(0,0,0,0.14); color: #fff; }
.nav-category-btn:focus { outline: none; box-shadow: none; }
.nav-category-btn::after { margin-left: 2px; }

/* 买酒分类下拉面板 */
.dropdown-menu-category {
  border: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 20px 44px rgba(60,20,10,0.18);
  padding: 18px 22px 20px;
  min-width: 470px;
  margin-top: 0;
}
.dcm-group + .dcm-group { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.dcm-title { font-size: 0.74rem; font-weight: 700; color: var(--text-sub); letter-spacing: 0.14em; margin-bottom: 8px; }
.dcm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.dcm-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 10px;
  color: var(--text-main); font-size: 0.92rem; font-weight: 500;
  transition: all 0.18s;
}
.dcm-item i { font-size: 1.05rem; color: var(--wine-red); }
.dcm-item:hover { background: #fdf2ee; color: var(--wine-red); transform: translateX(2px); }
/* 菜单：不换行、不压缩，超出时横向滚动（隐藏滚动条） */
.nav-menu {
  display: flex; flex-wrap: nowrap; list-style: none; gap: 0;
  flex: 1 1 auto; min-width: 0;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
}
.nav-menu::-webkit-scrollbar { display: none; }
.nav-menu li { position: relative; flex: 1 0 auto; }
.nav-menu li a {
  display: block;
  padding: 0 22px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
  transition: all 0.2s;
}
.nav-menu li a:hover, .nav-menu li.active a { background: rgba(0,0,0,0.1); color: #fff; }
.nav-phone { font-weight: 600; font-size: 0.95rem; flex: none; white-space: nowrap; }

/* Hero */
.hero-section { padding: 20px 0; }
.hero-row { display: flex; gap: 20px; align-items: stretch; }
.hero-category { width: 240px; flex: none; display: flex; }
.category-sidebar {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.category-item {
  padding: 0 18px;
  height: 46px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.94rem;
  flex: 1 1 auto;
  max-height: 52px;
  text-decoration: none;
  color: var(--text-main);
}
.category-item:last-child { border-bottom: none; }
.category-item:hover { background: #fef5f0; color: var(--wine-red); text-decoration: none; }
.category-item-all .category-name { font-weight: 600; }
.category-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; line-height: 1;
  background: rgba(178,34,34,0.09); color: var(--wine-red);
}
.category-item:hover .category-icon { background: rgba(178,34,34,0.16); }
.category-name { flex: 1; color: var(--text-main); }
.category-item:hover .category-name { color: var(--wine-red); }
.hero-banner { flex: 1; min-width: 0; min-height: 400px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; background: linear-gradient(135deg, #8b1a1a 0%, #b22222 100%); }
.banner-link { display: block; width: 100%; height: 100%; position: relative; }
.banner-link.banner-gradient { background: linear-gradient(135deg, #8b1a1a 0%, #b22222 40%, #d4af37 100%); }
.banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(139,26,26,0.75) 0%, rgba(178,34,34,0.4) 55%, rgba(0,0,0,0) 100%);
}
.banner-caption {
  position: absolute;
  left: 50px;
  bottom: 50%;
  transform: translateY(50%);
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  max-width: 460px;
}
.banner-caption h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; font-family: 'Noto Serif SC', serif; letter-spacing: 2px; }
.banner-caption p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 24px; }
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine-gold);
  color: #1e1a15;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: all 0.2s;
}
.banner-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); color: #1e1a15; }
.hero-side { width: 240px; flex: none; display: flex; flex-direction: column; gap: 15px; }
.side-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  text-align: center;
}
.side-card-title { font-weight: 700; color: var(--wine-red); margin-bottom: 8px; font-size: 1.05rem; }
.side-card p { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 14px; }
.qr-card img { width: 140px; height: 140px; object-fit: cover; border-radius: 10px; margin: 0 auto 10px; border: 1px solid var(--line); }
.qr-card span { font-size: 0.85rem; color: var(--text-sub); }

/* 通用 Section */
.section { padding: 40px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-header h2 { font-size: 1.45rem; font-weight: 700; color: var(--text-main); margin: 0; }
.section-header h2 i { margin-right: 8px; }
.section-header .more { color: var(--text-sub); font-size: 0.9rem; transition: color 0.2s; }
.section-header .more:hover { color: var(--wine-red); }

/* 产品卡片 */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-img { position: relative; padding: 16px; height: 220px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, #fff 0%, #fef9f6 100%); }
.product-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wine-red);
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.product-info { padding: 16px; }
.product-brand { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 6px; }
.product-title { font-size: 0.95rem; font-weight: 600; color: var(--text-main); margin-bottom: 10px; line-height: 1.4; height: 2.8em; overflow: hidden; }
.product-meta { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 10px; }
.price-compare { display: flex; flex-wrap: nowrap; gap: 4px; margin-bottom: 10px; overflow: hidden; }
.price-item { font-size: 0.7rem; padding: 3px 6px; border-radius: 4px; background: #f7f7f7; color: var(--text-sub); white-space: nowrap; }
.price-item.jd { background: #e3f2fd; color: #1976d2; }
.price-item.tb { background: #fff3e0; color: #ef6c00; }
.price-item.pdd { background: #fce4ec; color: #c2185b; }
.lowest-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lowest-badge { background: linear-gradient(135deg, var(--wine-gold-light) 0%, var(--wine-gold) 100%); color: #4a3b00; font-size: 0.75rem; font-weight: 700; padding: 4px 8px; border-radius: 20px; white-space: nowrap; }
.btn-compare-sm {
  background: var(--wine-red);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* 甄选佳酿 */
.self-section { background: white; }
.premium-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--line);
  height: 100%;
}
.premium-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.premium-img { position: relative; height: 180px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, #fff 0%, #fef9f6 100%); overflow: hidden; }
.premium-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.premium-card:hover .premium-img img { transform: scale(1.05); }
.premium-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--wine-gold);
  color: #1e1a15;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}
.premium-info { padding: 14px; }
.premium-brand { font-size: 0.8rem; color: var(--text-sub); margin-bottom: 5px; }
.premium-title { font-size: 0.9rem; font-weight: 600; height: 2.6em; overflow: hidden; margin-bottom: 8px; }
.premium-meta { font-size: 0.8rem; color: var(--text-sub); margin-bottom: 10px; }
.premium-price-box { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.premium-current { color: var(--wine-red); font-size: 1.15rem; font-weight: 800; }
.premium-old { color: var(--text-muted); font-size: 0.8rem; text-decoration: line-through; }
.btn-premium {
  width: 100%;
  background: var(--wine-red);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.btn-premium:hover { background: var(--wine-red-dark); }

/* 品牌馆 */
.brand-section { background: #fff; }
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-cell {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 10px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.brand-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--wine-red); }
.brand-cell img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; margin: 0 auto 10px; }
.brand-initial {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 10px;
  font-family: 'Noto Serif SC', serif;
}
.brand-cell span { font-size: 0.9rem; font-weight: 600; color: var(--text-main); }

/* 行情 */
.market-section { background: linear-gradient(180deg, #fff 0%, #fff8f5 100%); }
.market-row { display: flex; gap: 24px; }
.market-table-wrap { flex: 1; background: white; border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--line); }
.market-table { width: 100%; margin: 0; }
.market-table th { background: #fef5f0; color: var(--wine-red); font-weight: 600; padding: 14px 18px; font-size: 0.9rem; }
.market-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.9rem; vertical-align: middle; }
.market-table tr:last-child td { border-bottom: none; }
.market-rank {
  width: 320px;
  flex: none;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--line);
}
.market-rank h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; color: var(--wine-red); }
.rank-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.rank-item:last-child { border-bottom: none; }
.rank-num {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.rank-name { flex: 1; font-weight: 500; }
.rank-rate { font-weight: 700; }

/* 百科卡片 */
.encyclopedia-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s;
  height: 100%;
}
.encyclopedia-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.encyclopedia-img { width: 100%; height: 180px; object-fit: cover; }
.encyclopedia-content { padding: 18px; }
.encyclopedia-category {
  display: inline-block;
  background: #fef5f0;
  color: var(--wine-red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.encyclopedia-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.encyclopedia-title a:hover { color: var(--wine-red); }
.encyclopedia-summary { font-size: 0.85rem; color: var(--text-sub); line-height: 1.6; height: 2.7em; overflow: hidden; margin-bottom: 12px; }
.encyclopedia-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-sub); }
.hot-badge { color: var(--wine-red); font-weight: 600; }

/* 服务承诺 */
.promise-section { background: white; padding: 30px 0; border-top: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; }
.promise-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-sub); }
.promise-item i { font-size: 1.6rem; color: var(--wine-red); }
.promise-item span { font-size: 0.9rem; font-weight: 500; }

/* VIP CTA */
.vip-cta {
  background: linear-gradient(135deg, #1e1a15 0%, #3d2e2a 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.vip-cta h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; font-family: 'Noto Serif SC', serif; }
.vip-cta p { opacity: 0.85; margin-bottom: 24px; font-size: 1.05rem; }

/* 底部 */
.footer-main { background: #1e1a15; color: rgba(255,255,255,0.75); padding: 50px 0 20px; }
.footer-inner { display: flex; gap: 40px; }
.footer-brand { width: 320px; flex: none; }
.footer-logo-wrap { background: #fff; border-radius: 10px; padding: 6px 12px; display: inline-block; margin-bottom: 16px; }
.footer-logo { height: 42px; width: auto; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { flex: 1; }
.footer-links h4 { color: white; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.footer-links a { display: block; color: rgba(255,255,255,0.65); margin-bottom: 10px; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--wine-gold); }
.footer-qr { text-align: center; }
.footer-qr img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }
.footer-qr span { display: block; font-size: 0.85rem; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* 后台登录 */
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wine-red-dark) 0%, var(--wine-red) 100%), url('/images/login-bg.jpg') center/cover no-repeat; }
.login-box { background: white; border-radius: 24px; padding: 40px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.login-box h2 { text-align: center; margin-bottom: 28px; color: var(--wine-red); font-weight: 700; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; outline: none; font-size: 0.95rem; }
.form-control:focus { border-color: var(--wine-red); box-shadow: 0 0 0 3px rgba(178,34,34,0.1); }
.btn-submit { width: 100%; background: var(--wine-red); color: white; border: none; border-radius: 12px; padding: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; }
.btn-submit:hover { background: var(--wine-red-dark); }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-danger { background: #ffebee; color: #b71c1c; }

/* 后台管理 */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: #1e1a15;
  color: white;
  padding: 24px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.admin-sidebar .brand h3 { margin: 0; font-size: 1.3rem; font-weight: 700; color: var(--wine-gold); }
.admin-sidebar nav a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: all 0.2s;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(178,34,34,0.25); color: white; }
.admin-main { flex: 1; margin-left: 220px; padding: 30px; background: var(--light-bg); min-height: 100vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h1 { font-size: 1.4rem; margin: 0; }
.card { background: white; border-radius: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: 24px; margin-bottom: 24px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 0.9rem; }
.table th { background: #fef5f0; color: var(--wine-red); font-weight: 600; }
.btn-sm { padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; border: none; cursor: pointer; }
.btn-edit { background: var(--wine-gold-light); color: #4a3b00; }
.btn-del { background: #ffebee; color: #b71c1c; }
.btn-add { background: var(--wine-red); color: white; margin-bottom: 16px; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: none; align-items: center; justify-content: center; z-index: 1050; }
.modal-backdrop.show { display: flex; }
.modal { background: white; border-radius: 20px; width: 90%; max-width: 700px; max-height: 90vh; overflow-y: auto; padding: 28px; }
.modal h3 { margin-top: 0; margin-bottom: 20px; color: var(--wine-red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== 广告区块 ===== */
.ad-section { padding: 10px 0 30px; }
.ad-block {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(120deg, #fff5f0 0%, #ffffff 55%, #fffaf2 100%);
  border: 1px solid rgba(178,34,34,0.12);
  border-radius: 22px; padding: 22px 26px; height: 100%;
  position: relative; overflow: hidden; transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ad-block::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(178,34,34,0.10), transparent 70%);
}
.ad-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(178,34,34,0.28); }
.ad-block-icon {
  width: 58px; height: 58px; flex: none; border-radius: 18px;
  background: linear-gradient(135deg, var(--wine-red), #d9453f);
  color: white; font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(178,34,34,0.28);
}
.ad-block-text { flex: 1; min-width: 0; }
.ad-block-text h4 { font-size: 1.2rem; font-weight: 800; color: var(--text-main); margin: 0 0 4px; }
.ad-block-text p { font-size: 0.88rem; color: var(--text-sub); margin: 0; }
.ad-block-btn {
  flex: none; background: var(--wine-red); color: white; font-size: 0.85rem; font-weight: 600;
  padding: 9px 22px; border-radius: 30px; transition: all 0.25s; position: relative; z-index: 1;
}
.ad-block:hover .ad-block-btn { background: #9a1d1d; }

/* ===== 酒友捡漏 ===== */
.deal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.deal-card {
  background: white; border-radius: 18px; overflow: hidden; display: block;
  border: 1px solid var(--line); transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(178,34,34,0.25); }
.deal-img { height: 150px; background: #f7f7f7; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.deal-card:hover .deal-img img { transform: scale(1.06); }
.deal-body { padding: 12px 14px 14px; }
.deal-title {
  font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; min-height: 2.5em;
}
.deal-desc {
  font-size: 0.76rem; color: var(--text-sub); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  white-space: pre-line; min-height: 3.4em;
}
.deal-foot { display: flex; align-items: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.deal-plat { background: #ffebee; color: var(--wine-red); font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.deal-tag { color: var(--text3, #999); font-size: 0.7rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }

/* ===== 百科热门榜 ===== */
.hot-panel { background: white; border-radius: 22px; padding: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }
.hot-panel-title {
  font-size: 1.05rem; font-weight: 700; color: var(--wine-red);
  border-left: 4px solid var(--wine-red); padding-left: 12px; margin-bottom: 14px;
}
.hot-panel-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px dashed #f0eae5; }
.hot-panel-item:last-of-type { border-bottom: none; }
.hot-panel-item a { font-size: 0.86rem; color: var(--text-main); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s; }
.hot-panel-item a:hover { color: var(--wine-red); }
.hot-rank {
  width: 20px; height: 20px; flex: none; border-radius: 5px; background: #f2f2f2; color: #999;
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.hot-rank.top { background: linear-gradient(135deg, var(--wine-red), #d9453f); color: white; }
.hot-panel-cta {
  margin-top: 16px; background: linear-gradient(120deg, #fff5f0, #fffaf2);
  border: 1px dashed rgba(178,34,34,0.25); border-radius: 14px; padding: 14px;
  font-size: 0.84rem; color: var(--text-sub); display: flex; flex-direction: column; gap: 10px;
}
.hot-panel-cta i { color: var(--wine-red); }
.hot-panel-cta strong { color: var(--wine-red); }
.hot-panel-btn {
  background: var(--wine-red); color: white; text-align: center; border-radius: 24px;
  padding: 8px 0; font-size: 0.84rem; font-weight: 600; transition: background 0.25s;
}
.hot-panel-btn:hover { background: #9a1d1d; }

/* ===== 通用内页 ===== */
.page-main { padding: 24px 0 50px; }
.crumb { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumb a { color: var(--text-sub); }
.crumb a:hover { color: var(--wine-red); }
.crumb span:last-child { color: var(--text-main); }
.page-head { margin-bottom: 26px; }
.page-head h1 { font-size: 1.7rem; font-weight: 800; color: var(--text-main); margin: 0 0 6px; font-family: 'Noto Serif SC', serif; }
.page-head p { color: var(--text-sub); font-size: 0.92rem; margin: 0; }
.empty-box { text-align: center; padding: 80px 0; color: var(--text3, #aaa); }
.empty-box i { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ===== 文章详情 ===== */
.art-box { background: white; border-radius: 22px; padding: 34px 38px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.art-title { font-size: 1.7rem; font-weight: 800; color: var(--text-main); line-height: 1.45; margin: 0 0 16px; font-family: 'Noto Serif SC', serif; }
.art-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-sub); font-size: 0.84rem; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.art-summary { background: #fff8f5; border-left: 4px solid var(--wine-red); border-radius: 0 12px 12px 0; padding: 16px 18px; color: #6a5a52; font-size: 0.92rem; line-height: 1.8; margin-bottom: 24px; }
.art-content { color: #3d3833; font-size: 1rem; line-height: 1.95; word-break: break-word; }
.art-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--text-main); margin: 28px 0 12px; font-family: 'Noto Serif SC', serif; }
.art-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--wine-red); margin: 22px 0 10px; }
.art-content p { margin: 0 0 16px; }
.art-content img { max-width: 100%; height: auto; border-radius: 14px; margin: 16px 0; display: block; }
.art-content ul, .art-content ol { padding-left: 22px; margin-bottom: 16px; }
.art-content li { margin-bottom: 8px; }
.art-content a { color: var(--wine-red); }
.art-related { margin-top: 34px; }
.art-related h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-main); border-left: 4px solid var(--wine-red); padding-left: 12px; margin-bottom: 16px; }
.rel-card {
  display: block; background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); transition: all 0.3s;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rel-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
.rel-card span { display: block; padding: 10px 12px; font-size: 0.85rem; color: var(--text-main); line-height: 1.5; }

/* ===== 商品详情 ===== */
.pd-main { display: flex; gap: 34px; background: white; border-radius: 24px; padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pd-gallery { width: 380px; flex: none; }
.pd-main-img { width: 100%; border-radius: 18px; object-fit: cover; aspect-ratio: 1/1; background: #f7f7f7; }
.pd-info { flex: 1; min-width: 0; }
.pd-name { font-size: 1.5rem; font-weight: 800; color: var(--text-main); line-height: 1.5; margin: 0 0 14px; font-family: 'Noto Serif SC', serif; }
.pd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-tag { background: #fef5f0; color: var(--wine-red); font-size: 0.78rem; padding: 4px 12px; border-radius: 20px; }
.pd-price-block { background: linear-gradient(120deg, #fff5f0, #fffaf2); border-radius: 16px; padding: 18px 20px; margin-bottom: 20px; }
.pd-price-row { display: flex; align-items: center; gap: 14px; padding: 5px 0; }
.pd-plat { font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; min-width: 60px; text-align: center; }
.pd-plat.jd { background: #e3f2fd; color: #1976d2; }
.pd-plat.tb { background: #fff3e0; color: #ef6c00; }
.pd-plat.pdd { background: #fce4ec; color: #c2185b; }
.pd-plat.self { background: rgba(178,34,34,0.1); color: var(--wine-red); }
.pd-price { font-size: 1.15rem; font-weight: 700; color: var(--wine-red); }
.pd-price.big { font-size: 1.7rem; }
.pd-old { color: #bbb; font-size: 0.9rem; margin-left: 8px; }
.pd-desc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.pd-desc-grid > div { display: flex; flex-direction: column; gap: 4px; }
.pd-desc-grid label { font-size: 0.76rem; color: var(--text3, #aaa); }
.pd-desc-grid span { font-size: 0.9rem; color: var(--text-main); font-weight: 500; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-btn {
  padding: 13px 30px; border-radius: 30px; font-size: 0.92rem; font-weight: 600;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.pd-btn.primary { background: var(--wine-red); color: white; box-shadow: 0 8px 18px rgba(178,34,34,0.25); }
.pd-btn.primary:hover { background: #9a1d1d; transform: translateY(-2px); }
.pd-btn.ghost { background: #fff; color: var(--wine-red); border: 1px solid rgba(178,34,34,0.35); }
.pd-btn.ghost:hover { background: #fef5f0; }
.pd-section { margin-top: 34px; background: white; border-radius: 22px; padding: 26px 30px; border: 1px solid var(--line); }
.pd-section h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-main); border-left: 4px solid var(--wine-red); padding-left: 12px; margin: 0 0 18px; }
.pd-desc-text { color: #3d3833; font-size: 0.94rem; line-height: 1.95; white-space: pre-line; }

/* 响应式 */
@media (max-width: 1200px) {
  .hero-row { flex-wrap: wrap; }
  .hero-category { width: 100%; order: 2; }
  .category-sidebar { flex-direction: row; flex-wrap: wrap; }
  .category-item { flex: 1 1 30%; min-width: 140px; height: 44px; max-height: none; border-bottom: none; border-right: 1px solid var(--line); }
  .hero-banner { width: 100%; order: 1; height: 340px; min-height: 0; margin-bottom: 16px; }
  .hero-side { width: 100%; order: 3; flex-direction: row; }
  .side-card { flex: 1; }
  .deal-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-menu li a { padding: 0 14px; font-size: 0.9rem; }
}
@media (max-width: 991px) {
  .nav-menu li a { padding: 0 12px; font-size: 0.88rem; }
  .header-inner { flex-wrap: wrap; }
  .header-search { order: 3; max-width: 100%; width: 100%; margin-top: 16px; }
  .market-row { flex-direction: column; }
  .market-rank { width: 100%; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-wrap: wrap; }
  .footer-brand { width: 100%; }
  .deal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-main { padding: 14px 0; }
  .logo img { height: 40px; }
  .search-category-select { width: 80px; padding: 10px; font-size: 0.8rem; }
  .search-input { padding: 10px; font-size: 0.85rem; }
  .search-btn { padding: 0 18px; }
  .header-qrcode { display: none; }
  .nav-inner { overflow: visible; gap: 0; }
  .nav-menu { flex: 1 1 auto; min-width: 0; }
  .nav-menu li { flex: 0 0 auto; }
  .nav-menu li a { padding: 0 14px; font-size: 0.85rem; }
  .nav-category { display: none; }
  .nav-phone { display: none; }
  .hero-banner { height: 220px; }
  .banner-caption { left: 20px; bottom: 20px; }
  .banner-caption h2 { font-size: 1.4rem; }
  .category-item { flex: 1 1 45%; height: 40px; max-height: 40px; padding: 0 12px; font-size: 0.88rem; }
  .hero-side { flex-direction: column; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brand-cell { padding: 12px 6px; }
  .product-img { height: 180px; }
  .section { padding: 28px 0; }
  .section-header h2 { font-size: 1.2rem; }
  .encyclopedia-img { height: 150px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vip-cta { padding: 40px 0; }
  .vip-cta h2 { font-size: 1.5rem; }
  .admin-sidebar { width: 100%; position: relative; height: auto; }
  .admin-main { margin-left: 0; }
  .admin-layout { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-img { height: 130px; }
  .ad-block { padding: 16px 18px; gap: 12px; }
  .ad-block-icon { width: 46px; height: 46px; font-size: 1.3rem; }
  .ad-block-text h4 { font-size: 1.05rem; }
  .ad-block-btn { padding: 7px 16px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .nav-menu li a { padding: 0 11px; font-size: 0.82rem; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .product-img { height: 160px; }
  .deal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .deal-img { height: 112px; }
  .deal-body { padding: 10px; }
  .deal-title { font-size: 0.82rem; }
  .ad-block { flex-wrap: wrap; }
  .ad-block-btn { width: 100%; text-align: center; }
}

/* ===== 内页响应式 ===== */
@media (max-width: 991px) {
  .pd-main { flex-direction: column; gap: 22px; padding: 20px; }
  .pd-gallery { width: 100%; }
  .art-box { padding: 26px 22px; }
}
@media (max-width: 768px) {
  .page-head h1 { font-size: 1.3rem; }
  .art-title { font-size: 1.35rem; }
  .art-box { padding: 22px 18px; border-radius: 18px; }
  .pd-name { font-size: 1.2rem; }
  .pd-desc-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-price.big { font-size: 1.4rem; }
  .pd-section { padding: 20px 18px; }
  .pd-btn { flex: 1; justify-content: center; }
}

/* ===== 服务栏目 ===== */
.svc-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 10px; }
.svc-step {
  background: white; border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 18px; position: relative; transition: all 0.3s;
}
.svc-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(178,34,34,0.22); }
.svc-num {
  width: 34px; height: 34px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wine-red), #d9453f); color: #fff; font-weight: 800;
  margin-bottom: 12px; box-shadow: 0 6px 14px rgba(178,34,34,0.24);
}
.svc-step h4 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin: 0 0 6px; }
.svc-step p { font-size: 0.83rem; color: var(--text-sub); margin: 0; line-height: 1.65; }
.svc-box { background: white; border-radius: 22px; padding: 26px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.svc-box h3 { font-size: 1.12rem; font-weight: 700; color: var(--text-main); border-left: 4px solid var(--wine-red); padding-left: 12px; margin: 0 0 20px; }
.svc-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed #f0eae5; }
.svc-item:last-child { border-bottom: none; padding-bottom: 0; }
.svc-item i { font-size: 1.4rem; color: var(--wine-red); flex: none; margin-top: 2px; }
.svc-item h5 { font-size: 0.96rem; font-weight: 700; color: var(--text-main); margin: 0 0 5px; }
.svc-item p { font-size: 0.86rem; color: var(--text-sub); margin: 0; line-height: 1.7; }
.svc-faq { padding: 14px 0; border-bottom: 1px dashed #f0eae5; }
.svc-faq:last-child { border-bottom: none; padding-bottom: 0; }
.svc-faq h5 { font-size: 0.94rem; font-weight: 700; color: var(--text-main); margin: 0 0 7px; display: flex; gap: 8px; align-items: flex-start; }
.svc-faq h5 i { color: var(--wine-red); margin-top: 2px; flex: none; }
.svc-faq p { font-size: 0.86rem; color: var(--text-sub); margin: 0 0 0 24px; line-height: 1.75; }
.svc-side {
  background: linear-gradient(150deg, #2b1a1a 0%, #4a1f1f 60%, #6b2323 100%);
  border-radius: 22px; padding: 26px 24px; color: #fff;
}
.svc-side h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 10px; color: #fff; }
.svc-side p { font-size: 0.86rem; color: rgba(255,255,255,0.72); margin-bottom: 18px; line-height: 1.7; }
.svc-contact { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #f3d9a4; padding: 7px 0; }
.svc-contact i { color: #f3d9a4; }
.svc-side .pd-btn.ghost { background: transparent; color: #f3d9a4; border-color: rgba(243,217,164,0.45); }
.svc-side .pd-btn.ghost:hover { background: rgba(243,217,164,0.12); }

/* ===== 行情中心 ===== */
.idx-card { background: white; border-radius: 18px; padding: 18px 20px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; transition: all 0.3s; }
.idx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.idx-name { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.idx-price { font-size: 1.5rem; font-weight: 800; color: var(--wine-red); line-height: 1.2; }
.idx-change { font-size: 0.85rem; font-weight: 700; margin: 6px 0 8px; display: inline-flex; align-items: center; gap: 5px; }
.idx-change.up { color: #c62828; }
.idx-change.down { color: #2e7d32; }
.idx-desc { font-size: 0.78rem; color: var(--text-sub); line-height: 1.6; min-height: 2.4em; }
.idx-time { font-size: 0.72rem; color: var(--text3, #aaa); margin-top: 8px; display: flex; gap: 5px; align-items: center; }
.c-up { color: #c62828; font-weight: 700; }
.c-down { color: #2e7d32; font-weight: 700; }

@media (max-width: 991px) {
  .svc-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .svc-flow { grid-template-columns: 1fr; }
  .svc-box { padding: 20px 18px; }
}

/* ===== 买酒自营列表页（仿 mall）===== */
.mall-page { padding-top: 20px; }
.mall-crumb { align-items: center; gap: 10px; }
.mall-crumb em.crumb-sep { flex: 1; border-top: 1px dashed var(--line); min-width: 20px; }
.crumb-extra { color: var(--wine-red) !important; font-weight: 500; white-space: nowrap; }
.crumb-extra i { margin-right: 3px; }

.filter-card {
  background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); padding: 20px 24px 8px; margin-bottom: 22px;
}
.filter-card-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.filter-card-head h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin: 0; }
.filter-card-head h5 i { color: var(--wine-red); margin-right: 6px; }
.filter-reset {
  background: #fef5f0; color: var(--wine-red); border: 1px solid rgba(178,34,34,0.2);
  border-radius: 22px; padding: 6px 16px; font-size: 0.82rem; transition: all 0.22s;
}
.filter-reset:hover { background: var(--wine-red); color: #fff; }

.filter-row { display: flex; gap: 16px; padding: 9px 0; border-top: 1px dashed #f4ece7; }
.filter-row:first-of-type { border-top: none; }
.filter-label {
  flex: none; width: 76px; font-size: 0.85rem; font-weight: 600; color: var(--text-sub);
  padding-top: 4px; white-space: nowrap;
}
.filter-label i { color: var(--wine-red); margin-right: 4px; }
.filter-opts { flex: 1; display: flex; flex-wrap: wrap; gap: 6px; min-width: 0; }
.fopt {
  font-size: 0.82rem; color: #555; padding: 4px 12px; border-radius: 16px;
  border: 1px solid transparent; transition: all 0.18s; white-space: nowrap;
}
.fopt:hover { color: var(--wine-red); background: #fef5f0; }
.fopt.active { background: var(--wine-red); color: #fff; border-color: var(--wine-red); font-weight: 600; }

/* 已选条件条 */
.filter-chosen {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 10px 14px; margin-bottom: 12px;
  background: #fef7f3; border: 1px dashed rgba(178,34,34,0.3); border-radius: 14px;
}
.fc-label { font-size: 0.8rem; font-weight: 700; color: var(--wine-red); display: inline-flex; align-items: center; gap: 4px; }
.fc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid rgba(178,34,34,0.22); color: var(--wine-red);
  padding: 4px 10px; border-radius: 999px; font-size: 0.78rem;
  text-decoration: none; transition: all 0.18s; white-space: nowrap;
}
.fc-chip:hover { background: var(--wine-red); color: #fff; border-color: var(--wine-red); text-decoration: none; }
.fc-chip i { font-size: 0.6rem; opacity: 0.65; }
.fc-clear { font-size: 0.78rem; color: var(--text-sub); text-decoration: underline; }
.fc-clear:hover { color: var(--wine-red); }

/* 品牌搜索 */
.filter-opts-brand { align-items: center; }
.brand-search-wrap {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px; margin-right: 4px;
  border: 1px solid var(--line); border-radius: 999px; background: #faf8f6;
  transition: all 0.2s; flex: none;
}
.brand-search-wrap:focus-within { border-color: var(--wine-red); background: #fff; box-shadow: 0 0 0 3px rgba(178,34,34,0.08); }
.brand-search-wrap > i { color: var(--text-sub); font-size: 0.78rem; }
.brand-search-wrap:focus-within > i { color: var(--wine-red); }
.brand-search {
  border: none; outline: none; background: transparent; width: 150px;
  font-size: 0.78rem; color: var(--text-main); line-height: 1;
}
.brand-search::placeholder { color: #b3a9a1; }
.brand-search-clear {
  border: none; background: transparent; color: var(--text-sub);
  font-size: 0.62rem; padding: 0; line-height: 1; cursor: pointer;
}
.brand-search-clear:hover { color: var(--wine-red); }
.brand-opt.hide { display: none; }
.brand-empty { font-size: 0.8rem; color: var(--text-sub); display: inline-flex; align-items: center; gap: 5px; }
.brand-empty[hidden] { display: none; }

/* 折叠筛选（药丸下拉） */
.filter-drop-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 14px 0 12px; border-top: 1px dashed #f4ece7;
}
.fdrop { position: relative; }
.fdrop-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 40px;
  background: #fef5f0; color: var(--text-main);
  font-size: 0.84rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.fdrop-trigger:hover { border-color: rgba(178,34,34,0.4); color: var(--wine-red); }
.fdrop-trigger > i { font-size: 0.68rem; color: var(--text-sub); transition: transform 0.22s; }
.fdrop-trigger:hover > i { color: var(--wine-red); }
.fdrop-trigger.on { border-color: var(--wine-red); background: var(--wine-red); color: #fff; font-weight: 600; }
.fdrop-trigger.on > i { color: #fff; }
.fdrop.open .fdrop-trigger { border-color: var(--wine-red); color: var(--wine-red); background: #fff; box-shadow: 0 4px 14px rgba(178,34,34,0.14); }
.fdrop.open .fdrop-trigger > i { transform: rotate(180deg); color: var(--wine-red); }
.fdrop.open .fdrop-trigger.on { background: var(--wine-red); color: #fff; }
.fdrop.open .fdrop-trigger.on > i { color: #fff; }

.fdrop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 70;
  min-width: 278px; max-width: min(660px, calc(100vw - 48px));
  background: #fff; border: 1px solid #f0eae5; border-radius: 22px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  padding: 16px 18px 18px; display: none;
}
.fdrop.open .fdrop-panel { display: block; animation: fdropIn 0.16s ease-out; }
@keyframes fdropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.fdrop-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 0.82rem; font-weight: 700; color: var(--wine-red); margin-bottom: 12px;
}
.fdrop-count { font-style: normal; font-weight: 400; font-size: 0.72rem; color: var(--text-sub); }
.fdrop-opts { display: flex; flex-wrap: wrap; gap: 8px; max-height: 270px; overflow-y: auto; }
.fdrop-opt {
  padding: 6px 14px; border-radius: 999px; font-size: 0.82rem;
  background: #f7f4f1; color: #5c534c; text-decoration: none;
  transition: all 0.18s; white-space: nowrap;
}
.fdrop-opt:hover { background: #fef5f0; color: var(--wine-red); text-decoration: none; }
.fdrop-opt.active { background: var(--wine-red); color: #fff; font-weight: 600; }

.mall-bar {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 10px; margin: 4px 0 18px;
  border-bottom: 2px solid rgba(178,34,34,0.12); padding-bottom: 12px;
}
.mall-bar .mall-title { font-size: 1.35rem; font-weight: 800; color: var(--text-main); margin: 0; font-family: 'Noto Serif SC', serif; }
.mall-bar .mall-title i { color: var(--wine-red); margin-right: 8px; }
.mall-count { font-size: 0.85rem; color: var(--text-sub); }
.mall-count strong { color: var(--wine-red); }

.mall-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mall-card {
  background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); position: relative;
}
.mall-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine-red), var(--wine-gold)); opacity: 0; transition: opacity 0.3s;
}
.mall-card:hover::before { opacity: 1; }
.mall-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(178,34,34,0.2); }
.mall-img-wrap { position: relative; overflow: hidden; background: #fafafa; }
.mall-img-wrap img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.6s ease; }
.mall-card:hover .mall-img-wrap img { transform: scale(1.06); }
.mall-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: linear-gradient(135deg, var(--wine-gold), #b8860b); color: #2c2b26;
  font-size: 0.7rem; font-weight: 700; padding: 3px 11px; border-radius: 30px;
}
.mall-info { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.mall-card .mall-title { font-size: 0.92rem; font-weight: 600; line-height: 1.5; color: var(--text-main); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.75em; }
.mall-card .mall-title a { color: inherit; }
.mall-card .mall-title a:hover { color: var(--wine-red); }
.mall-brand { font-size: 0.74rem; color: #999; margin-bottom: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mall-brand a { color: #999; }
.mall-brand a:hover { color: var(--wine-red); }
.mall-brand em { font-style: normal; margin: 0 4px; color: #ddd; }
.mall-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.72rem; color: #aaa; margin-bottom: 12px; }
.mall-meta span { white-space: nowrap; }
.mall-price { font-size: 1.35rem; font-weight: 800; color: var(--wine-red); margin-top: auto; margin-bottom: 12px; }
.mall-buy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--wine-red); color: #fff; border-radius: 24px; padding: 10px 0;
  font-size: 0.86rem; font-weight: 600; transition: all 0.25s;
}
.mall-buy:hover { background: #9a1d1d; color: #fff; box-shadow: 0 8px 18px rgba(178,34,34,0.28); }

.mall-pager { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 40px 0 10px; }
.pg {
  min-width: 38px; height: 38px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center;
  gap: 5px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
  font-size: 0.86rem; color: var(--text-main); transition: all 0.22s;
}
.pg:hover { border-color: var(--wine-red); color: var(--wine-red); }
.pg.active { background: var(--wine-red); border-color: var(--wine-red); color: #fff; font-weight: 700; }
.pg.disabled { opacity: 0.4; pointer-events: none; }
.pg-info { font-size: 0.82rem; color: var(--text-sub); margin-left: 10px; }

@media (max-width: 991px) {
  .mall-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-label { width: 62px; }
}
@media (max-width: 768px) {
  .mall-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-card { padding: 16px 14px 6px; border-radius: 16px; }
  .filter-row { flex-direction: column; gap: 6px; }
  .filter-label { width: auto; padding-top: 0; }
  .filter-opts { gap: 5px; }
  .fopt { font-size: 0.78rem; padding: 4px 10px; }
  .mall-bar .mall-title { font-size: 1.08rem; }
  .mall-count { font-size: 0.78rem; }
  .mall-price { font-size: 1.18rem; }
  .mall-crumb .crumb-extra { display: none; }
  .mall-crumb em.crumb-sep { display: none; }
  /* 折叠筛选（移动端） */
  .filter-chosen { padding: 8px 10px; gap: 6px; }
  .fc-label { font-size: 0.74rem; }
  .fc-chip { font-size: 0.72rem; padding: 3px 8px; }
  .brand-search-wrap { width: 100%; margin-right: 0; }
  .brand-search { width: 100%; }
  .filter-drop-row { gap: 8px; padding: 12px 0 10px; }
  .fdrop-trigger { height: 34px; padding: 0 13px; font-size: 0.78rem; }
  .fdrop-panel { min-width: min(278px, calc(100vw - 56px)); border-radius: 18px; padding: 14px 14px 16px; }
  .fdrop-opts { gap: 6px; max-height: 230px; }
  .fdrop-opt { font-size: 0.78rem; padding: 5px 12px; }
}
@media (max-width: 480px) {
  .mall-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mall-info { padding: 10px 10px 12px; }
  .mall-card .mall-title { font-size: 0.86rem; min-height: 2.6em; }
  .mall-buy { padding: 8px 0; font-size: 0.8rem; }
  .pg { min-width: 34px; height: 34px; padding: 0 10px; font-size: 0.8rem; }
  .fdrop-trigger { height: 32px; padding: 0 11px; font-size: 0.75rem; gap: 5px; }
  .fdrop-panel { min-width: calc(100vw - 48px); }
}

.login-logo { text-align: center; margin-bottom: 14px; }
.login-logo img { height: 62px; width: auto; }

/* ==================== 老酒寄卖页 (jimai) ==================== */
.jimai-page { padding-top: 10px; padding-bottom: 40px; }
.jimai-page .section-title { font-family: 'Noto Serif SC', serif; }
.jimai-page .hero-consign {
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-md);
}
.jimai-page .hero-consign h1 { font-family: 'Noto Serif SC', serif; letter-spacing: 2px; }
.jimai-page .hero-consign .lead { opacity: 0.95; }
.jimai-page .hero-consign .btn-light { color: var(--wine-red) !important; }
.jimai-page .hero-consign .btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.jimai-page .hero-consign .btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.badge-wine-bg {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fef5f0; color: var(--wine-red); padding: 6px 16px;
  border-radius: 30px; font-size: 0.9rem; font-weight: 600;
}

.step-card {
  background: white; border-radius: 28px; transition: all 0.3s;
  border: 1px solid rgba(178,34,34,0.08); text-align: center;
  padding: 2rem 1.5rem; height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 30px -12px rgba(178,34,34,0.2); border-color: rgba(178,34,34,0.2); }
.step-number {
  width: 56px; height: 56px; background: rgba(178,34,34,0.1); color: var(--wine-red);
  font-size: 1.8rem; font-weight: 800; border-radius: 60px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
}

.form-card {
  background: white; border-radius: 32px; border: none; box-shadow: var(--shadow-md);
}
.form-card-left { padding: 2rem; }
@media (min-width: 992px) { .form-card-left { padding: 2rem 2.5rem; } }
.form-card .form-control, .form-card .form-select {
  border-radius: 16px; padding: 12px 16px; border: 1px solid #e5e0db; transition: all 0.2s;
}
.form-card .form-control:focus, .form-card .form-select:focus {
  border-color: var(--wine-red); box-shadow: 0 0 0 4px rgba(178,34,34,0.15);
}
.form-card .form-check-input:checked { background-color: var(--wine-red); border-color: var(--wine-red); }
.form-card .btn-wine {
  background-color: var(--wine-red); border-color: var(--wine-red); color: white;
  font-weight: 600; border-radius: 40px; padding: 10px 32px; transition: all 0.2s;
}
.form-card .btn-wine:hover { background-color: var(--wine-red-dark); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(185,28,28,0.3); color: white; }

.upload-area {
  border: 2px dashed #e0d8d0; border-radius: 20px; padding: 2rem;
  text-align: center; cursor: pointer; transition: all 0.2s; background: #fefaf8;
}
.upload-area:hover { border-color: var(--wine-red); background: #fff5f0; }

.captcha-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 46px; background: #f5f5f5; border-radius: 10px;
  font-weight: 700; color: var(--wine-red); font-size: 1.2rem;
  cursor: pointer; user-select: none; letter-spacing: 6px;
  border: 1px dashed #ddd;
}

.hot-wines-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.hot-wine-card {
  flex: 0 0 calc(50% - 8px); background: #fefaf8; border-radius: 20px;
  padding: 12px; cursor: pointer; transition: 0.2s; border: 1px solid #f0e2d4;
}
.hot-wine-card:hover { background: #fff5f0; transform: translateY(-4px); }
.hot-wine-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; }
.hot-wine-title { font-weight: 700; margin-top: 8px; font-size: 0.82rem; line-height: 1.35; height: 1.35em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hot-wine-price { color: var(--wine-red); font-weight: 700; font-size: 1rem; }
.wine-abv { font-size: 0.78rem; color: #8a7a6a; margin-top: 4px; }

.case-card {
  background: white; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: all 0.3s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-card p { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 8px; }
.price-highlight { color: var(--wine-red); font-weight: 800; font-size: 1.25rem; margin-bottom: 6px; }

.faq-item { border-bottom: 1px solid #f0eae5; padding: 1rem 0; cursor: pointer; }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { transition: transform 0.25s ease; color: var(--text-sub); }
.faq-answer { display: none; padding-top: 0.8rem; color: #666; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

@media (max-width: 768px) {
  .jimai-page .hero-consign { text-align: center; }
  .step-card { padding: 1.5rem; }
  .hot-wine-card { flex: 0 0 100%; }
  .form-card-left { padding: 1.5rem; }
}

/* 通用 rich 服务页（寄卖/回收/定制/估价） */
.service-rich-page { padding-top: 10px; padding-bottom: 40px; }
.service-rich-page .section-title { font-family: 'Noto Serif SC', serif; }
.service-rich-page .hero-service {
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-md);
}
.service-rich-page .hero-service h1 { font-family: 'Noto Serif SC', serif; letter-spacing: 2px; }
.service-rich-page .hero-service .lead { opacity: 0.95; }
.service-rich-page .hero-service .btn-light { color: var(--wine-red) !important; }
.service-rich-page .hero-service .btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.service-rich-page .hero-service .btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.quote-list { display: flex; flex-direction: column; gap: 12px; }
.quote-card {
  background: #fefaf8; border-radius: 16px; border: 1px solid #f0e2d4;
  cursor: pointer; transition: all 0.2s;
}
.quote-card:hover { background: #fff5f0; transform: translateY(-3px); }
.quote-card h6 { font-size: 0.95rem; }

/* 弹窗样式补充 */
.modal-content { border-radius: 20px; border: none; }
.modal-header { border-bottom: 1px solid var(--line); }
.modal-footer { border-top: 1px solid var(--line); }

/* ===== 酒水百科栏目（仿买酒网 baike 1:1） ===== */
.baike-page { padding-top: 10px; padding-bottom: 40px; }
.baike-page .section-title { font-family: 'Noto Serif SC', serif; }

.hero-encyclopedia {
  background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%);
  border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-md);
}
.hero-encyclopedia h1 { font-family: 'Noto Serif SC', serif; letter-spacing: 2px; }
.hero-encyclopedia .lead { opacity: 0.95; }
.hero-encyclopedia .btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-encyclopedia .btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.hero-encyclopedia-img { max-height: 320px; object-fit: cover; }

.badge-wine-bg {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(178,34,34,0.1); color: var(--wine-red);
  padding: 6px 16px; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
}

.ad-card {
  background: #fff; border-radius: 20px; padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: all 0.25s;
}
.ad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ad-card h4 { font-family: 'Noto Serif SC', serif; }
.ad-card .category-icon,
.category-card .category-icon {
  width: 64px; height: 64px; border-radius: 60px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: rgba(178,34,34,0.1); color: var(--wine-red);
}

.category-card {
  background: #fff; border-radius: 18px; padding: 20px 12px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); cursor: pointer;
  transition: all 0.25s; height: 100%;
}
.category-card:hover, .category-card.active { transform: translateY(-4px); border-color: var(--wine-red); box-shadow: var(--shadow-md); }
.category-card.active .category-icon { background: var(--wine-red); color: #fff; }
.category-card .category-icon { width: 52px; height: 52px; font-size: 1.4rem; }

.sidebar-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.hot-tag {
  display: inline-block; background: #f6f1ec; color: #6b4a3a; padding: 6px 14px;
  border-radius: 999px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
}
.hot-tag:hover, .hot-tag.active { background: var(--wine-red); color: #fff; }

.expert-card { background: linear-gradient(135deg, #fff5f0 0%, #fff0ea 100%); border: 1px solid #f3e3d8; }

.article-card {
  display: block; background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: all 0.25s; height: 100%;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card-img { height: 170px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-body { padding: 16px; }
.article-card-cat {
  display: inline-block; background: rgba(178,34,34,0.1); color: var(--wine-red);
  padding: 2px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
}
.article-card-title {
  font-size: 1.02rem; font-weight: 700; margin: 10px 0 6px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-summary {
  font-size: 0.85rem; color: #777; line-height: 1.6; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-meta { font-size: 0.78rem; color: #999; display: flex; gap: 14px; }
.article-card-meta i { margin-right: 3px; }

/* 文章详情 */
.baike-article-page { padding-top: 10px; padding-bottom: 40px; }
.article-container {
  background: white; border-radius: 28px; box-shadow: var(--shadow-md);
  overflow: hidden; padding: 28px;
}
.article-container .article-title { font-family: 'Noto Serif SC', serif; font-weight: 700; line-height: 1.4; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: #999; font-size: 0.85rem; margin: 14px 0; }
.article-meta i { margin-right: 4px; color: var(--wine-red); }
.article-meta-cat { color: var(--wine-red); font-weight: 600; }
.article-summary {
  background: #fbf6f2; border-left: 4px solid var(--wine-red); padding: 12px 16px;
  border-radius: 8px; color: #6b4a3a; font-size: 0.92rem; margin-bottom: 20px;
}
.article-content { line-height: 1.9; font-size: 1rem; color: #333; }
.article-content img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.article-content h2 { font-size: 1.3rem; font-weight: 700; margin: 26px 0 12px; font-family: 'Noto Serif SC', serif; }
.article-content p { margin-bottom: 14px; }
.article-actions { display: flex; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.act-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 18px; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; color: #555;
}
.act-btn:hover, .act-btn.active { border-color: var(--wine-red); color: var(--wine-red); background: #fff5f0; }

.art-related .rel-card {
  display: block; background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: all 0.25s;
}
.art-related .rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.art-related .rel-card img { width: 100%; height: 130px; object-fit: cover; }
.art-related .rel-card span { display: block; padding: 10px 12px; font-size: 0.85rem; font-weight: 600; line-height: 1.4; }

.hot-panel-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.9rem; }
.hot-panel-item:last-child { border-bottom: none; }
.hot-rank { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 6px; background: #eee; color: #888; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.hot-rank.top { background: var(--wine-red); color: #fff; }
.hot-panel-item a { color: #444; text-decoration: none; flex: 1; }
.hot-panel-item a:hover { color: var(--wine-red); }

@media (max-width: 768px) {
  .article-container { padding: 18px; border-radius: 18px; }
  .hero-encyclopedia-img { max-height: 200px; margin-top: 20px; }
}

/* ============ 电商：顶部会员/购物车 ============ */
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: 18px; }
.ha-cart { position: relative; display: inline-flex; align-items: center; gap: 5px; color: var(--wine-red); font-weight: 600; text-decoration: none; }
.ha-cart-text { font-size: 0.9rem; }
.ha-badge { position: absolute; top: -8px; right: -10px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--wine-gold); color: #1e1a15; font-size: 0.7rem; line-height: 18px; text-align: center; font-weight: 700; }
.ha-user { color: #333; text-decoration: none; font-weight: 500; }
.ha-link { color: #666; text-decoration: none; font-size: 0.9rem; }
.ha-link:hover { color: var(--wine-red); }
.ha-reg { color: var(--wine-red); font-weight: 600; }

.btn-outline { border: 1px solid var(--wine-red); background: #fff; color: var(--wine-red); border-radius: 999px; padding: 8px 20px; cursor: pointer; transition: all .2s; }
.btn-outline:hover { background: #fff5f0; }
.btn-block { width: 100%; display: block; text-align: center; }
.req { color: var(--wine-red); }

/* ============ 数量步进器 ============ */
.cr-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cr-qty .qbtn { width: 30px; height: 32px; border: none; background: #faf6f2; color: var(--wine-red); font-size: 1.1rem; cursor: pointer; }
.cr-qty .qbtn:hover { background: #f3e7df; }
.cr-qty .qinput { width: 46px; height: 32px; border: none; text-align: center; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .9rem; }
.cr-qty .qinput:focus { outline: none; }

/* ============ 登录/注册 ============ */
.auth-page { padding: 50px 0; background: linear-gradient(180deg,#fbf6f2 0%, #fff 60%); min-height: 60vh; }
.auth-card { max-width: 440px; margin: 0 auto; background: #fff; border-radius: 18px; box-shadow: var(--shadow-md); padding: 38px 36px; border: 1px solid var(--line); }
.auth-head { text-align: center; margin-bottom: 24px; }
.auth-head h2 { font-weight: 700; color: var(--wine-red-dark); }
.auth-head p { color: #999; margin-top: 6px; font-size: .92rem; }
.auth-form .form-group { margin-bottom: 16px; }
.auth-form label { display: block; font-size: .9rem; color: #555; margin-bottom: 6px; }
.auth-form label i { color: var(--wine-red); margin-right: 4px; }
.auth-tip { min-height: 18px; font-size: .85rem; color: #999; margin: 4px 0 12px; }
.auth-tip.err { color: var(--wine-red); }
.auth-foot { text-align: center; margin-top: 18px; color: #888; font-size: .9rem; }
.auth-foot a { color: var(--wine-red); font-weight: 600; }

/* ============ 会员中心布局 ============ */
.member-page { padding: 30px 0 60px; background: #f7f3ef; min-height: 60vh; }
.member-grid { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
.member-aside { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; position: sticky; top: 20px; }
.ma-user { background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%); color: #fff; padding: 26px 18px; text-align: center; }
.ma-avatar { font-size: 3rem; }
.ma-name { font-weight: 700; font-size: 1.1rem; margin-top: 6px; }
.ma-role { font-size: .8rem; opacity: .85; margin-top: 2px; }
.ma-nav { display: flex; flex-direction: column; padding: 10px; }
.ma-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; color: #555; text-decoration: none; font-size: .95rem; }
.ma-nav a i { color: var(--wine-red); }
.ma-nav a:hover, .ma-nav a.active { background: #fdf2ee; color: var(--wine-red); font-weight: 600; }
.member-main { min-width: 0; }
.mm-welcome { background: linear-gradient(135deg,#fff 0%, #fdf2ee 100%); border-radius: 16px; padding: 24px 28px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.mm-welcome h3 { margin: 0 0 6px; color: var(--wine-red-dark); }
.mm-welcome p { margin: 0; color: #888; font-size: .92rem; }
.mm-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.mms-item { background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); padding: 18px; text-align: center; text-decoration: none; color: #555; transition: all .2s; }
.mms-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mms-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--wine-red); }
.mms-label { font-size: .85rem; color: #999; }
.mm-block { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 24px 26px; }
.mm-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mm-block-head h4 { margin: 0; font-weight: 700; color: #333; }
.mm-block-head h4 i { color: var(--wine-red); margin-right: 6px; }
.mm-sub { color: #999; font-size: .9rem; }
.mm-more { color: var(--wine-red); text-decoration: none; font-size: .88rem; }
.mm-empty { text-align: center; padding: 50px 0; color: #aaa; }
.mm-empty i { font-size: 3rem; display: block; margin-bottom: 12px; }
.mm-empty a { color: var(--wine-red); }
.mm-order-list { display: flex; flex-direction: column; gap: 10px; }
.mm-order { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: #444; }
.mm-order:hover { border-color: var(--wine-red); background: #fff8f5; }
.mmo-no { font-weight: 600; }
.mmo-info { color: #999; font-size: .88rem; flex: 1; margin: 0 14px; }

/* 状态徽标 */
.status-pending { color: #e08e0b; background: #fff4e0; }
.status-paid { color: var(--wine-red); background: #fdeaea; }
.status-shipped { color: #2b7de0; background: #e8f1fd; }
.status-completed { color: #2e9e5b; background: #e6f6ec; }
.status-cancelled { color: #999; background: #f0f0f0; }
.mmo-status, .oc-status, .od-status { padding: 3px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; }

/* ============ 我的订单 ============ */
.order-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.ot { padding: 8px 18px; border-radius: 999px; background: #f5efe9; color: #666; text-decoration: none; font-size: .9rem; }
.ot.active { background: var(--wine-red); color: #fff; }
.order-list { display: flex; flex-direction: column; gap: 14px; }
.order-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.oc-head { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #faf6f2; border-bottom: 1px solid var(--line); font-size: .88rem; }
.oc-no { font-weight: 600; color: #444; }
.oc-time { color: #aaa; }
.oc-status { margin-left: auto; }
.oc-body { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.oc-item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #444; }
.oc-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.oc-item-info { flex: 1; }
.oc-name { display: block; font-weight: 600; }
.oc-meta { font-size: .85rem; color: #999; }
.oc-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--line); }
.oc-total { color: #666; }
.oc-total strong { color: var(--wine-red); font-size: 1.1rem; }
.oc-actions { display: flex; gap: 8px; }
.obtn { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: #555; text-decoration: none; font-size: .85rem; cursor: pointer; }
.obtn:hover { border-color: var(--wine-red); color: var(--wine-red); }
.obtn.primary { background: var(--wine-red); color: #fff; border-color: var(--wine-red); }
.obtn.primary:hover { background: var(--wine-red-dark); color: #fff; }

/* ============ 订单详情 ============ */
.od-steps { display: flex; align-items: center; margin: 18px 0 26px; }
.ods { flex: 1; text-align: center; color: #bbb; position: relative; font-size: .88rem; }
.ods i { display: block; width: 40px; height: 40px; line-height: 40px; border-radius: 50%; background: #eee; color: #bbb; margin: 0 auto 8px; font-size: 1.2rem; }
.ods.done { color: var(--wine-red); }
.ods.done i { background: var(--wine-red); color: #fff; }
.ods:not(:last-child):after { content: ''; position: absolute; top: 20px; left: 60%; width: 80%; height: 2px; background: #eee; }
.ods.done:not(:last-child):after { background: var(--wine-red); }
.od-cancel-tip { background: #f0f0f0; color: #888; padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; }
.od-section { border-top: 1px solid var(--line); padding: 18px 0; }
.od-section h5 { margin: 0 0 12px; color: #333; font-size: 1rem; }
.od-section h5 i { color: var(--wine-red); margin-right: 6px; }
.od-receiver { display: flex; gap: 26px; flex-wrap: wrap; color: #555; }
.od-receiver i { color: var(--wine-red); margin-right: 5px; }
.od-items { display: flex; flex-direction: column; gap: 12px; }
.od-item { display: flex; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; }
.od-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.od-item-info { flex: 1; }
.od-name { color: #333; text-decoration: none; font-weight: 600; }
.od-sub { font-size: .85rem; color: #999; }
.od-price { color: #666; }
.od-subtotal { font-weight: 700; color: var(--wine-red); }
.od-summary { border-top: 1px solid var(--line); padding-top: 18px; }
.ods-row { display: flex; justify-content: space-between; padding: 6px 0; color: #666; }
.ods-row.total { font-size: 1.05rem; padding-top: 12px; }
.ods-row.total strong { color: var(--wine-red); font-size: 1.4rem; }
.od-actions { margin-top: 16px; display: flex; gap: 12px; }
.od-done-tip { color: #2e9e5b; align-self: center; }
.od-ship { margin-top: 12px; color: #888; font-size: .9rem; background: #f7f3ef; padding: 10px 14px; border-radius: 10px; }

/* ============ 购物车 ============ */
.cart-list { display: flex; flex-direction: column; }
.cart-row { display: grid; grid-template-columns: 90px 1fr 90px 130px 90px 40px; align-items: center; gap: 14px; padding: 16px 8px; border-bottom: 1px solid var(--line); }
.cr-img img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.cr-name { color: #333; text-decoration: none; font-weight: 600; display: block; }
.cr-name:hover { color: var(--wine-red); }
.cr-meta { font-size: .85rem; color: #999; margin: 4px 0; }
.cr-stock { font-size: .8rem; color: #bbb; }
.cr-price { color: #666; font-weight: 600; }
.cr-sub { color: var(--wine-red); font-weight: 700; }
.cr-del { border: none; background: none; color: #bbb; font-size: 1.1rem; cursor: pointer; }
.cr-del:hover { color: var(--wine-red); }
.cart-foot { display: flex; align-items: center; gap: 18px; padding: 18px 8px; }
.cart-all { color: #666; display: flex; align-items: center; gap: 6px; }
.cart-total { margin-left: auto; font-size: 1.1rem; color: #555; }
.cart-total strong { color: var(--wine-red); font-size: 1.5rem; }

/* ============ 结算 ============ */
.checkout-wrap { max-width: 1000px; margin: 0 auto; }
.ck-title { margin: 6px 0 22px; color: var(--wine-red-dark); }
.ck-title i { color: var(--wine-red); margin-right: 8px; }
.ck-grid { display: grid; grid-template-columns: 1fr 340px; gap: 22px; align-items: start; }
.ck-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 22px 24px; margin-bottom: 20px; }
.ck-card h5 { margin: 0 0 16px; color: #333; font-size: 1.02rem; }
.ck-card h5 i { color: var(--wine-red); margin-right: 6px; }
.ck-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ck-form .form-group { margin-bottom: 14px; }
.ck-form label { display: block; font-size: .88rem; color: #555; margin-bottom: 6px; }
.ck-items { display: flex; flex-direction: column; gap: 12px; }
.ck-item { display: flex; align-items: center; gap: 12px; }
.ck-item img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; }
.ck-item-info { flex: 1; }
.ck-name { color: #333; text-decoration: none; font-weight: 600; font-size: .92rem; }
.ck-sub { font-size: .82rem; color: #999; }
.ck-price { color: #666; font-size: .9rem; }
.ck-subtotal { font-weight: 700; color: var(--wine-red); }
.ck-summary { position: sticky; top: 20px; }
.cks-row { display: flex; justify-content: space-between; padding: 7px 0; color: #666; }
.cks-row.total { font-size: 1.05rem; padding-top: 12px; border-top: 1px dashed var(--line); margin-top: 6px; }
.cks-row.total strong { color: var(--wine-red); font-size: 1.4rem; }
.cks-pay-title { margin: 18px 0 10px; font-size: .92rem; color: #555; }
.pay-opt { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; cursor: pointer; }
.pay-opt.selected { border-color: var(--wine-red); background: #fff6f2; }
.pay-opt input { accent-color: var(--wine-red); }
.pay-opt span { display: flex; flex-direction: column; }
.pay-opt b { color: #333; }
.pay-opt em { font-size: .8rem; color: #999; font-style: normal; }
.ck-tip { min-height: 18px; font-size: .86rem; color: #999; margin: 10px 0; }
.ck-tip.err { color: var(--wine-red); }
.ck-note { font-size: .8rem; color: #aaa; line-height: 1.6; margin: 6px 0 0; }
.ck-note i { margin-right: 4px; }

/* ============ 收银台 ============ */
.pay-wrap { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.pay-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 28px 26px; }
.pay-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.pay-head h3 { margin: 0; color: var(--wine-red-dark); }
.pay-orderno { color: #999; font-size: .85rem; }
.pay-amount { text-align: center; padding: 18px 0; border-bottom: 1px dashed var(--line); margin-bottom: 20px; }
.pay-amount span { display: block; color: #999; font-size: .9rem; }
.pay-amount strong { font-size: 2.4rem; color: var(--wine-red); font-weight: 800; }
.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pm-item { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.pm-item.selected { border-color: var(--wine-red); background: #fff6f2; }
.pm-item input { accent-color: var(--wine-red); }
.pm-icon { font-size: 1.6rem; color: var(--wine-red); }
.pm-name { font-weight: 700; color: #333; }
.pm-desc { display: block; font-size: .8rem; color: #999; }
.pay-tip { min-height: 18px; font-size: .88rem; color: #999; margin: 12px 0; text-align: center; }
.pay-tip.err { color: var(--wine-red); }
.pay-link { display: block; text-align: center; color: #999; font-size: .88rem; text-decoration: none; margin-top: 12px; }
.pay-link:hover { color: var(--wine-red); }
.pay-side { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 20px 22px; }
.pay-side h5 { margin: 0 0 14px; color: #333; }
.pay-side h5 i { color: var(--wine-red); margin-right: 6px; }
.pay-items { display: flex; flex-direction: column; gap: 12px; }
.pay-item { display: flex; align-items: center; gap: 10px; }
.pay-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.pi-info { flex: 1; }
.pi-name { display: block; font-size: .88rem; color: #333; }
.pi-meta { font-size: .8rem; color: #999; }
.pi-sub { font-weight: 700; color: var(--wine-red); }

/* ============ 轻提示 ============ */
.jj-toast { position: fixed; left: 50%; top: 80px; transform: translateX(-50%) translateY(-20px); background: rgba(0,0,0,.82); color: #fff; padding: 10px 22px; border-radius: 999px; font-size: .9rem; opacity: 0; pointer-events: none; transition: all .25s; z-index: 9999; }
.jj-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.jj-toast.ok { background: rgba(46,158,91,.92); }
.jj-toast.err { background: rgba(178,34,34,.92); }

/* ============ 后台订单管理 ============ */
.orders-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.ot-status { display: flex; gap: 6px; flex-wrap: wrap; }
.otb { padding: 6px 14px; border: 1px solid var(--line); background: #fff; border-radius: 999px; cursor: pointer; color: #666; font-size: .88rem; }
.otb.active { background: var(--wine-red); color: #fff; border-color: var(--wine-red); }
.ot-search { display: flex; gap: 8px; }
.ot-search .form-control { width: 220px; }
.od-status { display: inline-block; }
.dm-sec { margin-bottom: 16px; }
.dm-sec h5 { margin: 0 0 8px; color: #333; font-size: .95rem; }
.dm-sec p { margin: 0; color: #555; line-height: 1.6; }
.dm-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.dm-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.dm-item span:nth-child(2) { flex: 1; color: #333; }
.modal-lg { max-width: 640px; }

/* ============ 响应式 ============ */
@media (max-width: 992px) {
  .member-grid { grid-template-columns: 1fr; }
  .member-aside { position: static; }
  .ma-nav { flex-direction: row; flex-wrap: wrap; }
  .ck-grid, .pay-wrap { grid-template-columns: 1fr; }
  .ck-summary, .pay-side { position: static; }
  .mm-stats { grid-template-columns: repeat(2,1fr); }
  .header-actions { margin-left: 10px; gap: 10px; }
  .ha-cart-text { display: none; }
}
@media (max-width: 640px) {
  .cart-row { grid-template-columns: 70px 1fr 100px 36px; grid-template-areas: "img info info del" "img price qty sub"; row-gap: 8px; }
  .cr-img { grid-area: img; } .cr-info { grid-area: info; } .cr-price { grid-area: price; }
  .cr-qty { grid-area: qty; } .cr-sub { grid-area: sub; } .cr-del { grid-area: del; }
  .ck-form .form-row { grid-template-columns: 1fr; }
  .od-receiver { gap: 14px; }
  .pd-buybox .pdb-actions { flex-direction: column; }
}

/* ============================================================
   品牌好酒 栏目（/brand）
   ============================================================ */
.brand-page { padding-bottom: 50px; }

/* ---------- Hero ---------- */
.br-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(120deg, #3b1f18 0%, #6d2b22 55%, #b22222 100%);
  border-radius: 22px;
  padding: 38px 40px;
  color: #fff;
  overflow: hidden;
  margin-bottom: 28px;
}
.br-hero::after {
  content: '';
  position: absolute; right: -80px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.32), transparent 68%);
}
.br-hero-main { position: relative; z-index: 1; }
.br-hero-main h1 { font-size: 2.1rem; margin: 0 0 12px; font-weight: 800; letter-spacing: .01em; }
.br-hero-sub { margin: 0 0 10px; font-size: 1rem; color: rgba(255,255,255,.9); }
.br-hero-desc { margin: 0 0 22px; font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.72); max-width: 620px; }
.br-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.br-hero-actions .btn-outline-red { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }
.br-hero-actions .btn-outline-red:hover { background: rgba(255,255,255,.18); }
.br-hero-side { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.br-stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.br-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--wine-gold-light); line-height: 1.2; }
.br-stat span { font-size: .78rem; color: rgba(255,255,255,.78); }

/* ---------- 区块 ---------- */
.br-section { margin-bottom: 34px; }
.br-cats { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 18px; }
.br-cat {
  padding: 7px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--text-sub); font-size: .88rem; transition: all .2s;
}
.br-cat:hover { border-color: var(--wine-red); color: var(--wine-red); }
.br-cat.active { background: var(--wine-red); border-color: var(--wine-red); color: #fff; font-weight: 600; }

.br-empty {
  text-align: center; padding: 54px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; color: var(--text-muted);
}
.br-empty i { font-size: 2.2rem; color: #e2cfc4; display: block; margin-bottom: 12px; }
.br-empty p { margin: 0 0 16px; }
.br-empty.sm { padding: 34px 18px; }
.br-empty-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* ---------- 九宫格 ---------- */
.br-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.br-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.br-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #f0d9cf; }
.br-card-cover { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #faf5f1; }
.br-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.br-card:hover .br-card-cover img { transform: scale(1.06); }
.br-card-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fdf2ee, #f7e2d8);
}
.br-card-ph span { font-size: 2.6rem; font-weight: 800; color: rgba(178,34,34,.35); font-family: var(--font-serif, serif); }
.br-card-badge {
  position: absolute; left: 10px; top: 10px;
  background: rgba(30,26,21,.72); color: #fff; font-size: .72rem;
  padding: 3px 10px; border-radius: 999px; backdrop-filter: blur(3px);
}
.br-card-hot {
  position: absolute; right: 10px; top: 10px;
  background: linear-gradient(135deg, #ff8a3d, #e63b1f); color: #fff;
  font-size: .72rem; padding: 3px 10px; border-radius: 999px;
}
.br-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.br-card-name { font-weight: 700; font-size: 1.05rem; color: var(--text-main); margin-bottom: 6px; }
.br-card-name em { font-style: normal; font-size: .74rem; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.br-card-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: .76rem; color: var(--text-muted); margin-bottom: 8px; }
.br-card-meta span { background: #faf5f1; border-radius: 6px; padding: 2px 8px; }
.br-card-desc {
  font-size: .84rem; color: var(--text-sub); line-height: 1.62; margin: 0 0 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.br-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px dashed var(--line); font-size: .8rem;
}
.br-card-goods { color: var(--wine-gold-ink, #a8821f); font-weight: 600; }
.br-card-more { color: var(--wine-red); }

/* 品牌搜索 + 已选条件（分页复用站内 .mall-pager / .pg） */
.br-search { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 6px; }
.br-search .form-control { flex: 1; min-width: 220px; max-width: 520px; }
.br-chosen {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 12px 0 4px; padding-top: 12px; border-top: 1px dashed var(--line);
}
.br-chosen-label { font-size: .84rem; color: var(--text-sub); }
.br-chip {
  display: inline-flex; align-items: center; gap: 6px; background: #fff0e9;
  color: var(--wine-red); padding: 5px 12px; border-radius: 999px; font-size: .82rem; text-decoration: none;
}
.br-chip i { font-size: .8rem; }
.br-cat em { font-style: normal; font-size: .72rem; opacity: .75; margin-left: 2px; }

/* ---------- 图文卡片 ---------- */
.br-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.br-post {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; transition: transform .24s, box-shadow .24s;
}
.br-post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.br-post-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #faf5f1; }
.br-post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.br-post:hover .br-post-cover img { transform: scale(1.05); }
.br-post-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fdf2ee, #f5e3d9); color: #d9b8a8; font-size: 1.8rem;
}
.br-post-cat {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(178,34,34,.9); color: #fff; font-size: .72rem;
  padding: 3px 10px; border-radius: 6px;
}
.br-post-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.br-post-body h3 {
  font-size: .98rem; margin: 0 0 8px; line-height: 1.5; color: var(--text-main);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.br-post-body p {
  font-size: .84rem; color: var(--text-sub); line-height: 1.62; margin: 0 0 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.br-post-meta { display: flex; gap: 14px; font-size: .76rem; color: var(--text-muted); flex-wrap: wrap; }

/* ---------- 加盟 / 代理 ---------- */
.br-join-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; margin-top: 18px; }
.br-join-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.br-join-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  position: relative; overflow: hidden;
}
.br-join-card::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--wine-red); }
.br-join-card.agency::before { background: linear-gradient(180deg, var(--wine-gold), #c99a1e); }
.br-join-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.br-join-head i { font-size: 1.5rem; color: var(--wine-red); }
.br-join-card.agency .br-join-head i { color: #b8860b; }
.br-join-head h3 { margin: 0; font-size: 1.12rem; color: var(--text-main); }
.br-join-desc { font-size: .86rem; color: var(--text-sub); line-height: 1.7; margin: 0 0 14px; }
.br-join-points { list-style: none; padding: 0; margin: 0 0 16px; }
.br-join-points li { font-size: .84rem; color: var(--text-sub); line-height: 1.6; padding: 5px 0 5px 22px; position: relative; }
.br-join-points li i { position: absolute; left: 0; top: 8px; color: var(--wine-red); font-size: .85rem; }
.br-join-points.sm li { font-size: .82rem; padding: 4px 0 4px 20px; }
.br-join-contact {
  font-size: .86rem; font-weight: 600; color: var(--wine-red);
  border-top: 1px dashed var(--line); padding-top: 12px;
}
.br-join-line { margin-top: 14px; font-size: .88rem; font-weight: 600; color: var(--wine-red); }

/* ---------- 表单 ---------- */
.br-form {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
  box-shadow: var(--shadow-sm);
}
.br-form h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--text-main); }
.br-form-tip { font-size: .8rem; color: var(--text-muted); margin: 0 0 18px; line-height: 1.6; }
.br-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.br-fg { margin-bottom: 14px; }
.br-fg label { display: block; font-size: .84rem; color: var(--text-sub); margin-bottom: 6px; }
.br-form-msg { margin-top: 12px; font-size: .85rem; min-height: 20px; }
.br-form-msg.ok { color: #1a7f3c; }
.br-form-msg.err { color: #c62828; }
.br-form-member { max-width: 940px; margin: 0 auto; }
.br-mini-form { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-outline-red {
  background: #fff; color: var(--wine-red); border: 1px solid var(--wine-red);
  border-radius: 999px; padding: 10px 22px; cursor: pointer; transition: all .2s; font-size: .92rem;
}
.btn-outline-red:hover { background: #fff5f0; }

/* ---------- 品牌详情 ---------- */
.br-head {
  position: relative; border-radius: 22px; overflow: hidden; margin-bottom: 26px;
  background: linear-gradient(120deg, #3b1f18, #7b2f24);
  min-height: 220px; display: flex; align-items: flex-end;
}
.br-head-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .32; filter: blur(1px);
}
.br-head-inner {
  position: relative; z-index: 1; width: 100%; padding: 30px 34px;
  display: grid; grid-template-columns: 96px 1fr auto; gap: 22px; align-items: center;
  background: linear-gradient(90deg, rgba(30,15,10,.55), rgba(30,15,10,.15));
}
.br-head-logo {
  width: 96px; height: 96px; border-radius: 20px; overflow: hidden; flex: none;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.br-head-logo img { width: 100%; height: 100%; object-fit: cover; }
.br-head-logo span { font-size: 2.4rem; font-weight: 800; color: #fff; font-family: var(--font-serif, serif); }
.br-head-text h1 { margin: 0 0 10px; font-size: 1.85rem; color: #fff; font-weight: 800; }
.br-head-text h1 em { font-style: normal; font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.66); margin-left: 6px; }
.br-head-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.br-tag {
  background: rgba(255,255,255,.18); color: #fff; font-size: .74rem;
  padding: 3px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
}
.br-tag.ghost { background: transparent; color: rgba(255,255,255,.72); }
.br-head-desc { margin: 0 0 12px; font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.86); max-width: 720px; }
.br-head-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.72); }
.br-head-actions { display: flex; flex-direction: column; gap: 10px; }
.br-head-actions .btn-outline-red { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); color: #fff; }
.br-head-actions .btn-outline-red:hover { background: rgba(255,255,255,.2); }

.br-layout { display: grid; grid-template-columns: 1fr 330px; gap: 24px; align-items: start; }
.br-main { min-width: 0; }
.br-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 24px; margin-bottom: 20px;
}
.br-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.br-panel-head h2 { margin: 0; font-size: 1.15rem; color: var(--text-main); }
.br-panel-more { font-size: .84rem; color: var(--wine-red); }
.br-article { font-size: .92rem; line-height: 1.9; color: var(--text-main); }
.br-article p { margin: 0 0 14px; }
.br-article h3 { font-size: 1.05rem; margin: 22px 0 10px; color: var(--wine-red); }
.br-article h4 { font-size: .98rem; margin: 18px 0 8px; }
.br-article ul, .br-article ol { padding-left: 22px; margin: 0 0 14px; }
.br-article li { margin-bottom: 6px; }
.br-article img { max-width: 100%; border-radius: 12px; margin: 10px 0; }
.br-article blockquote {
  margin: 14px 0; padding: 12px 16px; border-left: 4px solid var(--wine-red);
  background: #fdf6f2; border-radius: 0 10px 10px 0; color: var(--text-sub);
}

.br-goods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.br-good {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.br-good:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.br-good-img { aspect-ratio: 1 / 1; overflow: hidden; background: #faf5f1; }
.br-good-img img { width: 100%; height: 100%; object-fit: cover; }
.br-good-body { padding: 12px 13px 14px; }
.br-good-body h4 {
  font-size: .84rem; line-height: 1.5; margin: 0 0 8px; color: var(--text-main); font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.br-good-spec { display: inline-block; font-size: .72rem; color: var(--text-muted); background: #faf5f1; border-radius: 5px; padding: 1px 7px; margin-bottom: 8px; }
.br-good-price { display: block; color: var(--wine-red); font-size: 1rem; font-weight: 700; }

.br-compare { margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--line); }
.br-compare h4 { margin: 0 0 14px; font-size: .95rem; color: var(--text-main); }
.br-compare-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.br-compare-item {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff;
  transition: border-color .2s;
}
.br-compare-item:hover { border-color: var(--wine-red); }
.br-compare-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #faf5f1; }
.br-compare-name {
  display: block; font-size: .76rem; color: var(--text-sub); padding: 8px 10px 4px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.br-compare-price { display: block; padding: 0 10px 10px; font-size: .8rem; font-weight: 700; color: var(--wine-red); }

/* ---------- 详情侧栏 ---------- */
.br-side { position: sticky; top: 16px; }
.br-side-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; margin-bottom: 18px;
}
.br-side-card h3 { margin: 0 0 14px; font-size: 1rem; color: var(--text-main); }
.br-side-card h3.mt { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); }
.br-side-card > p { font-size: .84rem; color: var(--text-sub); line-height: 1.7; margin: 0 0 12px; }
.br-side-join {
  background: linear-gradient(160deg, #fffaf7, #fff);
  border-color: #f3e0d6;
}
.br-info-list { list-style: none; padding: 0; margin: 0; }
.br-info-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .84rem; padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.br-info-list li:last-child { border-bottom: none; }
.br-info-list span { color: var(--text-muted); }
.br-info-list b { color: var(--text-main); font-weight: 600; text-align: right; }
.br-side-brands { display: flex; gap: 8px; flex-wrap: wrap; }
.br-side-brands a {
  font-size: .8rem; padding: 5px 12px; border-radius: 999px;
  background: #faf5f1; color: var(--text-sub); transition: all .2s;
}
.br-side-brands a:hover { background: var(--wine-red); color: #fff; }
.br-side-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.br-side-brand img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; }
.br-side-brand strong { display: block; font-size: .95rem; color: var(--text-main); }
.br-side-brand span { font-size: .78rem; color: var(--text-muted); }
.br-side-brand-desc { font-size: .82rem; color: var(--text-sub); line-height: 1.65; margin: 0 0 14px; }
.br-side-posts { display: flex; flex-direction: column; gap: 12px; }
.br-side-posts a { display: flex; gap: 10px; align-items: center; }
.br-side-posts img { width: 62px; height: 46px; border-radius: 8px; object-fit: cover; flex: none; }
.br-side-posts strong {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .82rem; font-weight: 500; color: var(--text-main); line-height: 1.45;
}
.br-side-posts span { font-size: .74rem; color: var(--text-muted); }
.br-side-cta { background: linear-gradient(150deg, #fdf6ee, #fff); }
.br-side-cta p { font-size: .84rem; color: var(--text-sub); margin: 0 0 14px; }

/* ---------- 图文详情 ---------- */
.br-article-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 34px; margin-bottom: 20px;
}
.br-article-cat {
  display: inline-block; background: #fdf0ea; color: var(--wine-red);
  font-size: .76rem; padding: 3px 12px; border-radius: 999px; margin-bottom: 14px;
}
.br-article-title { font-size: 1.6rem; line-height: 1.45; margin: 0 0 16px; color: var(--text-main); font-weight: 800; }
.br-article-meta {
  display: flex; gap: 18px; flex-wrap: wrap; font-size: .8rem; color: var(--text-muted);
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px;
}
.br-article-feat { color: #b8860b; }
.br-article-cover { margin: 0 0 20px; border-radius: 14px; overflow: hidden; }
.br-article-cover img { width: 100%; display: block; }
.br-article-lead {
  font-size: .95rem; line-height: 1.8; color: var(--text-sub);
  background: #fdf8f4; border-left: 4px solid var(--wine-red);
  padding: 14px 18px; border-radius: 0 12px 12px 0; margin: 0 0 22px;
}
.br-article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.br-article-tags span { background: #faf5f1; color: var(--text-sub); font-size: .78rem; padding: 4px 12px; border-radius: 999px; }
.br-article-foot {
  display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap;
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
}

/* ---------- 会员发布 ---------- */
.br-img-row { display: flex; gap: 10px; align-items: center; }
.br-img-row .form-control { flex: 1; }
.br-preview { max-width: 240px; border-radius: 12px; margin-top: 10px; display: none; }
.br-preview.show { display: block; }
.br-preview-html {
  border: 1px dashed var(--line); border-radius: 12px; padding: 18px;
  margin-top: 12px; max-height: 420px; overflow-y: auto; background: #fcfcfc;
}
.mb-editor-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.mb-editor-hint { font-size: .78rem; color: var(--text-muted); margin: 0 0 10px; line-height: 1.6; }
.mb-content { font-family: inherit; line-height: 1.8; }
.mb-submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.mb-tip { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ---------- 我的发布 ---------- */
.mb-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.mb-list { display: flex; flex-direction: column; gap: 14px; }
.mb-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px;
}
.mb-item-cover { width: 130px; height: 92px; border-radius: 10px; object-fit: cover; background: #faf5f1; }
.mb-item-ph {
  width: 130px; height: 92px; border-radius: 10px; background: #faf5f1;
  display: flex; align-items: center; justify-content: center; color: #d9b8a8; font-size: 1.5rem;
}
.mb-item-body { min-width: 0; }
.mb-item-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.mb-item-cat { font-size: .74rem; background: #fdf0ea; color: var(--wine-red); padding: 2px 10px; border-radius: 999px; }
.mb-item-title { font-size: .98rem; font-weight: 600; margin: 0 0 6px; color: var(--text-main); }
.mb-item-summary {
  font-size: .84rem; color: var(--text-sub); line-height: 1.6; margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mb-item-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .76rem; color: var(--text-muted); }
.mb-item-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.mb-badge { display: inline-block; border-radius: 999px; padding: 2px 10px; font-size: .74rem; }
.mb-badge.pending { background: #fff4e0; color: #b26a00; }
.mb-badge.approved { background: #e7f6ec; color: #1a7f3c; }
.mb-badge.rejected { background: #fdeaea; color: #b71c1c; }
.mb-reason { font-size: .8rem; color: #b71c1c; background: #fdeaea; border-radius: 8px; padding: 8px 12px; margin-top: 10px; }

/* ---------- 品牌栏目响应式 ---------- */
@media (max-width: 1200px) {
  .br-grid { grid-template-columns: repeat(3, 1fr); }
  .br-layout { grid-template-columns: 1fr 290px; }
  .br-goods { grid-template-columns: repeat(2, 1fr); }
  .br-compare-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .br-hero { grid-template-columns: 1fr; padding: 30px 26px; }
  .br-hero-side { grid-template-columns: repeat(4, 1fr); }
  .br-join-layout { grid-template-columns: 1fr; }
  .br-layout { grid-template-columns: 1fr; }
  .br-side { position: static; }
  .br-post-grid { grid-template-columns: repeat(2, 1fr); }
  .br-head-inner { grid-template-columns: 80px 1fr; padding: 24px 22px; }
  .br-head-logo { width: 80px; height: 80px; }
  .br-head-actions { grid-column: 1 / -1; flex-direction: row; }
  .br-goods { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .br-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .br-card-body { padding: 12px; }
  .br-post-grid { grid-template-columns: 1fr; }
  .br-join-cards { grid-template-columns: 1fr; }
  .br-hero-side { grid-template-columns: repeat(2, 1fr); }
  .br-hero-main h1 { font-size: 1.6rem; }
  .br-form-row { grid-template-columns: 1fr; }
  .br-article-card { padding: 22px 18px; }
  .br-article-title { font-size: 1.3rem; }
  .br-compare-list { grid-template-columns: repeat(2, 1fr); }
  .mb-item { grid-template-columns: 1fr; }
  .mb-item-cover, .mb-item-ph { width: 100%; height: 160px; }
  .br-head-inner { grid-template-columns: 1fr; }
  .br-head-logo { width: 68px; height: 68px; }
}
@media (max-width: 480px) {
  .br-grid { grid-template-columns: 1fr; }
  .br-goods { grid-template-columns: repeat(2, 1fr); }
}

/* ============ 后台通用组件（供求 / VIP / 品牌好酒 等共用） ============ */
.brm-head { display: flex; align-items: center; justify-content: space-between; }
.brm-head h3 { margin: 0 0 8px; color: var(--wine-red); }
.brm-actions { display: flex; gap: 10px; }
.brm-tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.brm-tab { background: none; border: none; padding: 10px 16px; cursor: pointer; font-size: .95rem; color: var(--text-sub); border-bottom: 2px solid transparent; }
.brm-tab.active { color: var(--wine-red); border-bottom-color: var(--wine-red); font-weight: 700; }
.brm-count { display: inline-block; min-width: 18px; padding: 0 6px; border-radius: 999px; background: #fef0ea; color: var(--wine-red); font-size: .72rem; }
.brm-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.brm-toolbar .form-control { max-width: 220px; }
.brm-status-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.brm-pill { background: #f7f7f7; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .82rem; cursor: pointer; color: #666; }
.brm-pill.active { background: var(--wine-red); border-color: var(--wine-red); color: #fff; }
.brm-empty { padding: 36px; text-align: center; color: #999; }
.brm-thumb { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: #f5f5f5; }
.brm-sub { font-size: .78rem; color: #999; }
.brm-tagline { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.brm-tagline span { background: #fef5f0; color: var(--wine-red); border-radius: 6px; padding: 1px 8px; font-size: .72rem; }
.brm-post-list { display: grid; gap: 12px; }
.brm-post { display: grid; grid-template-columns: 120px 1fr auto; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; align-items: start; }
.brm-post img { width: 120px; height: 84px; border-radius: 10px; object-fit: cover; background: #f5f5f5; }
.brm-post h5 { margin: 0 0 6px; font-size: 1rem; }
.brm-post p { margin: 0; color: #666; font-size: .85rem; }
.brm-post-meta { font-size: .76rem; color: #999; margin-top: 6px; }
.brm-post-act { display: flex; flex-direction: column; gap: 6px; min-width: 92px; }
.brm-badge { display: inline-block; border-radius: 999px; padding: 2px 10px; font-size: .72rem; }
.brm-badge.pending { background: #fff4e0; color: #b26a00; }
.brm-badge.approved { background: #e7f6ec; color: #1a7f3c; }
.brm-badge.rejected { background: #fdeaea; color: #b71c1c; }
.brm-badge.new { background: #fff4e0; color: #b26a00; }
.brm-badge.contacted { background: #e8f1fe; color: #0d5bbd; }
.brm-badge.done { background: #e7f6ec; color: #1a7f3c; }
.brm-modal { max-width: 880px; }
.brm-modal-foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.brm-fieldset { border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 16px; }
.brm-fieldset-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.brm-fieldset-head h5 { margin: 0; color: var(--wine-red); }
.brm-fieldset > label { font-size: .84rem; color: #555; display: block; }
.brm-img-row { display: flex; gap: 8px; align-items: center; }
.brm-check { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: .9rem; }
.brm-goods-row { display: grid; grid-template-columns: 1.2fr 1.4fr .9fr .7fr 1.6fr auto; gap: 8px; margin-bottom: 8px; align-items: center; }
.brm-goods-row input { padding: 8px 10px; font-size: .84rem; border-radius: 8px; }
.brm-lead-info { background: #fafafa; border-radius: 12px; padding: 14px; margin-bottom: 16px; font-size: .88rem; line-height: 1.8; }
.brm-join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brm-join-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.brm-join-card h5 { margin: 0 0 10px; color: var(--wine-red); }
.brm-join-card label { font-size: .84rem; color: #555; display: block; margin-bottom: 4px; }
.brm-join-card .form-control { margin-bottom: 10px; }

/* ============ 后台：供求信息 ============ */
.sply-thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; background: #f5f5f5; }
.sply-title { font-weight: 600; }
.sply-sub { font-size: .76rem; color: #999; margin-top: 2px; max-width: 320px; }
.sply-pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: .72rem; }
.sply-pill.supply { background: #e7f1ff; color: #0d5bbd; }
.sply-pill.demand { background: #fdeaea; color: #b71c1c; }
.sply-price { color: var(--wine-red); font-weight: 600; }

/* ============ 后台：VIP 会员 ============ */
.vip-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 6px 0 18px; }
.vip-stat { background: var(--light-bg); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.vip-stat .n { font-size: 1.5rem; font-weight: 800; color: var(--wine-red); }
.vip-stat .l { font-size: .8rem; color: #888; margin-top: 2px; }
.vip-perk-row { display: grid; grid-template-columns: 1.4fr 2fr 3fr auto; gap: 10px; margin-bottom: 10px; align-items: start; }
@media (max-width: 900px) {
  .brm-post { grid-template-columns: 1fr; }
  .brm-post img { width: 100%; height: 150px; }
  .brm-post-act { flex-direction: row; }
  .brm-join-grid { grid-template-columns: 1fr; }
  .brm-goods-row { grid-template-columns: 1fr; }
  .brm-toolbar .form-control { max-width: none; }
  .vip-stats { grid-template-columns: repeat(2, 1fr); }
  .vip-perk-row { grid-template-columns: 1fr; }
}


/* ============================================================
   酒界 · VIP 会员 / 供求栏目 新增样式
   ============================================================ */

/* ---------- 基础工具 ---------- */
.mono { font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; font-size: 0.86em; }
.muted { color: var(--text-sub); }
.btn-lg { padding: 14px 30px; border-radius: 12px; font-size: 1.05rem; border: none; cursor: pointer; }
.btn-plain { background: transparent; color: var(--wine-red); border: none; padding: 10px 14px; cursor: pointer; }
.btn-plain:hover { text-decoration: underline; }
.btn-outline-light { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ---------- VIP 落地页 / 会员中心 Hero ---------- */
.vip-notice { display: flex; align-items: center; gap: 10px; background: #fff6e9; color: #8a5a00; border: 1px solid #f3dca6; border-radius: 12px; padding: 12px 16px; margin: 16px 0; font-size: 0.92rem; }
.vip-notice i { color: #d98e00; font-size: 1.1rem; }

.vip-hero { display: grid; grid-template-columns: 1fr 300px; gap: 26px; align-items: center; background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-dark) 100%); color: #fff; border-radius: 20px; padding: 38px 34px; margin-bottom: 26px; box-shadow: var(--shadow-md); }
.vip-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.16); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; }
.vip-hero-main h1 { font-size: 1.8rem; font-weight: 800; margin: 0 0 10px; line-height: 1.3; }
.vip-hero-sub { color: #ffe9c9; font-size: 1rem; margin: 0 0 12px; font-weight: 600; }
.vip-hero-desc { color: rgba(255,255,255,0.86); font-size: 0.9rem; line-height: 1.8; margin: 0 0 20px; }
.vip-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.vip-hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vip-stat { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 16px 12px; text-align: center; }
.vip-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.vip-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ---------- 我的会员状态条（落地页 / 会员中心不登录态通用） ---------- */
.vip-my { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: linear-gradient(135deg, #fff6ef 0%, #fff 100%); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin-bottom: 26px; }
.vip-my.on { border-color: #f0d28a; background: linear-gradient(135deg, #fff8e6 0%, #fff 100%); }
.vip-my-left { display: flex; align-items: center; gap: 16px; }
.vip-my-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--wine-red), var(--wine-red-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.vip-my-name { font-size: 1.15rem; font-weight: 700; color: var(--text-main); }
.vip-my-desc { font-size: 0.88rem; color: var(--text-sub); margin-top: 4px; }
.vip-my-right { display: flex; gap: 10px; flex-wrap: wrap; }

.vip-level { display: inline-block; margin-left: 8px; font-size: 0.72rem; background: #eee; color: #888; padding: 2px 10px; border-radius: 999px; vertical-align: middle; }
.vip-level.on { background: linear-gradient(135deg, var(--wine-gold), #c59d2e); color: #3a2c00; }

/* ---------- 区块通用 ---------- */
.vip-section { margin-bottom: 34px; }

/* ---------- 权益 ---------- */
.vip-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vip-perk { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 18px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.vip-perk:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.vip-perk-icon { width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 12px; background: linear-gradient(135deg, #fff3e6 0%, #ffe6d2 100%); color: var(--wine-red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.vip-perk h3 { font-size: 1.02rem; margin: 0 0 6px; color: var(--text-main); }
.vip-perk p { font-size: 0.82rem; color: var(--text-sub); line-height: 1.7; margin: 0; }
.vip-perks.sm { grid-template-columns: repeat(4, 1fr); }
.vip-perk.on .vip-perk-icon { background: linear-gradient(135deg, #fff3d6 0%, #f7e2a0 100%); color: #a8800f; }

/* ---------- 套餐卡片 ---------- */
.vip-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vip-plans.compact { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vip-plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 20px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.vip-plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vip-plan.hot { border-color: var(--wine-gold); box-shadow: 0 12px 30px rgba(212,175,55,0.3); }
.vip-plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #eee; color: var(--text-sub); font-size: 0.72rem; padding: 3px 14px; border-radius: 999px; white-space: nowrap; }
.vip-plan.hot .vip-plan-tag { background: #eee; }
.vip-plan-flag { position: absolute; top: 14px; right: -8px; background: linear-gradient(135deg, var(--wine-gold), #c59d2e); color: #3a2c00; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 6px 0 0 6px; }
.vip-plan-name { font-size: 1.12rem; font-weight: 700; color: var(--text-main); margin-bottom: 12px; }
.vip-plan-price { color: var(--wine-red); margin-bottom: 6px; }
.vip-plan-price em { font-size: 1rem; font-style: normal; vertical-align: super; margin-right: 2px; }
.vip-plan-price strong { font-size: 2.1rem; font-weight: 800; }
.vip-plan-price del { color: #bbb; font-size: 0.9rem; margin-left: 8px; font-weight: 400; }
.vip-plan-duration { font-size: 0.82rem; color: var(--text-sub); margin-bottom: 10px; }
.vip-plan-duration i { margin-right: 4px; }
.vip-plan-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.vip-buy-btn { margin-top: auto; }

.vip-pay-tip { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.82rem; color: var(--text-sub); margin-top: 16px; }
.vip-pay-tip i { color: var(--wine-gold); }

/* ---------- FAQ ---------- */
.vip-faq { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.vip-faq h3 { margin: 0 0 14px; font-size: 1.1rem; color: var(--text-main); }
.vip-faq dl { margin: 0; display: grid; gap: 14px; }
.vip-faq dt { font-weight: 700; color: var(--wine-red); margin-bottom: 4px; }
.vip-faq dd { margin: 0; color: var(--text-sub); font-size: 0.9rem; line-height: 1.7; }

/* ---------- 会员中心：状态卡 / 提示 ---------- */
.vip-paid-tip { display: flex; align-items: center; gap: 12px; background: #e9f8ee; color: #1a7f3c; border: 1px solid #b9e6c6; border-radius: 14px; padding: 16px 18px; margin-bottom: 20px; }
.vip-paid-tip i { font-size: 1.5rem; }
.vip-paid-tip strong { display: block; color: #15602f; }
.vip-paid-tip span { font-size: 0.86rem; color: #2e7d4f; }

.vip-status-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.vip-status-card.on { border-color: #f0d28a; background: linear-gradient(135deg, #fff8e6 0%, #fff 100%); }
.vip-status-left { display: flex; align-items: center; gap: 16px; }
.vip-status-crown { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--wine-gold), #c59d2e); color: #3a2c00; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.vip-status-name { font-size: 1.2rem; font-weight: 700; color: var(--text-main); }
.vip-status-desc { font-size: 0.9rem; color: var(--text-sub); margin-top: 4px; }
.vip-status-right { display: flex; gap: 10px; flex-wrap: wrap; }
.mm-hint { font-size: 0.8rem; color: var(--text-sub); font-weight: 400; }

/* ---------- VIP 收银台补充 ---------- */
.vip-pay-amount { margin: 6px 0 18px; }
.vip-pay-plan { background: #fff6ef; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; }
.vip-pay-plan-name { font-weight: 700; font-size: 1.05rem; color: var(--wine-red); display: flex; align-items: center; gap: 8px; }
.vip-pay-plan-meta { font-size: 0.86rem; color: var(--text-sub); margin-top: 6px; }
.vip-pay-plan-expire { font-size: 0.82rem; color: #8a5a00; margin-top: 6px; }
.vip-pay-perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vip-pay-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-main); }
.vip-pay-perks li i { color: var(--wine-gold); }
.vip-pay-side-tip { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-sub); margin-top: 14px; }
.vip-pay-side-tip i { color: var(--wine-gold); }

/* ---------- 供求落地页 Hero / 锁条 ---------- */
.sp-hero { display: grid; grid-template-columns: 1fr 300px; gap: 26px; align-items: center; background: linear-gradient(135deg, #2b211c 0%, #4a2f23 100%); color: #fff; border-radius: 20px; padding: 38px 34px; margin-bottom: 26px; box-shadow: var(--shadow-md); }
.sp-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,0.22); color: #f3dca6; padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; }
.sp-hero-main h1 { font-size: 1.8rem; font-weight: 800; margin: 0 0 10px; }
.sp-hero-sub { color: #f3dca6; font-size: 1rem; margin: 0 0 12px; font-weight: 600; }
.sp-hero-desc { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.8; margin: 0; }
.sp-hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sp-stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 16px 12px; text-align: center; }
.sp-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #f3dca6; }
.sp-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.78); }

.sp-lock-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: linear-gradient(135deg, #fff6e9 0%, #fff 100%); border: 1px solid #f3dca6; border-radius: 14px; padding: 16px 20px; margin-bottom: 22px; }
.sp-lock-bar-left { display: flex; align-items: center; gap: 12px; }
.sp-lock-bar-left i { font-size: 1.8rem; color: #d98e00; }
.sp-lock-bar-left strong { display: block; color: #8a5a00; font-size: 1rem; }
.sp-lock-bar-left span { font-size: 0.85rem; color: #9a7b3a; }

/* ---------- 筛选 ---------- */
.sp-filter { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.sp-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.sp-tab { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 999px; background: #faf5f1; color: var(--text-sub); font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: all 0.2s; }
.sp-tab:hover { color: var(--wine-red); }
.sp-tab.active { background: linear-gradient(135deg, var(--wine-red), var(--wine-red-dark)); color: #fff; }
.sp-tab em { font-style: normal; font-size: 0.78rem; opacity: 0.85; }
.sp-tab.supply.active { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.sp-tab.demand.active { background: linear-gradient(135deg, #c2185b, #880e4f); }

.sp-filter-row { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.sp-filter-label { flex: 0 0 48px; font-size: 0.86rem; font-weight: 600; color: var(--text-sub); padding-top: 8px; }
.sp-cats { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.sp-cat { padding: 6px 14px; border-radius: 999px; background: #faf5f1; color: var(--text-sub); text-decoration: none; font-size: 0.85rem; transition: all 0.2s; }
.sp-cat:hover { color: var(--wine-red); }
.sp-cat.active { background: var(--wine-red); color: #fff; }
.sp-cat em { font-style: normal; font-size: 0.72rem; opacity: 0.8; margin-left: 2px; }

.sp-search { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.sp-search .form-control { flex: 1; min-width: 220px; }
.sp-chosen { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.sp-chosen-label { font-size: 0.84rem; color: var(--text-sub); }
.sp-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff0e9; color: var(--wine-red); padding: 5px 12px; border-radius: 999px; font-size: 0.82rem; text-decoration: none; }
.sp-chip i { font-size: 0.8rem; }

/* ---------- 供求列表 ---------- */
.sp-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.sp-card { display: block; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--wine-red); border-radius: 14px; padding: 18px 20px; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.sp-card.supply { border-left-color: #2e7d32; }
.sp-card.demand { border-left-color: #c2185b; }
.sp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sp-card.locked { background: #fdfbfa; }
.sp-card.sm { padding: 14px 16px; border-radius: 12px; }
.sp-card-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.sp-badge { display: inline-block; padding: 2px 10px; border-radius: 6px; font-size: 0.74rem; font-weight: 700; color: #fff; }
.sp-badge.supply { background: #2e7d32; }
.sp-badge.demand { background: #c2185b; }
.sp-card-cat { font-size: 0.74rem; background: #fdf0ea; color: var(--wine-red); padding: 2px 10px; border-radius: 999px; }
.sp-badge-top { font-size: 0.72rem; background: var(--wine-gold); color: #3a2c00; padding: 2px 8px; border-radius: 6px; font-weight: 700; }
.sp-lock-icon { margin-left: auto; color: #c9a23a; font-size: 1rem; }
.sp-card-title { font-size: 1.05rem; font-weight: 700; margin: 4px 0 8px; color: var(--text-main); }
.sp-card.sm .sp-card-title { font-size: 0.95rem; margin: 2px 0 6px; }
.sp-card-summary { font-size: 0.88rem; color: var(--text-sub); line-height: 1.6; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sp-card-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.76rem; color: var(--text-sub); }
.sp-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.sp-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.sp-card-price { color: var(--wine-red); font-weight: 700; }
.sp-card-price em { font-style: normal; font-size: 0.8rem; }
.sp-card-price strong { font-size: 1.25rem; }
.sp-card-price span { font-size: 0.78rem; color: var(--text-sub); font-weight: 400; }
.sp-card-price .neg { font-size: 1.1rem; color: var(--text-sub); }
.sp-card-author { font-size: 0.8rem; color: var(--text-sub); display: inline-flex; align-items: center; gap: 5px; }
.sp-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.sp-card-tags span { background: #faf5f1; color: var(--text-sub); font-size: 0.74rem; padding: 3px 10px; border-radius: 999px; }

/* ---------- 底部 CTA ---------- */
.sp-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: linear-gradient(135deg, #fff6ef 0%, #fff 100%); border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; margin-top: 30px; }
.sp-cta-left h3 { margin: 0 0 6px; font-size: 1.15rem; color: var(--text-main); }
.sp-cta-left p { margin: 0; font-size: 0.88rem; color: var(--text-sub); }
.sp-cta-right { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- 供求详情 ---------- */
.sp-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.sp-detail-main { min-width: 0; }
.sp-detail-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; box-shadow: var(--shadow-sm); }
.sp-detail-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.sp-detail-title { font-size: 1.6rem; font-weight: 800; color: var(--text-main); margin: 0 0 10px; line-height: 1.4; }
.sp-detail-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-sub); margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.sp-detail-meta span { display: inline-flex; align-items: center; gap: 5px; }
.sp-keyinfo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.sp-keyinfo-item { background: #faf5f1; border-radius: 12px; padding: 14px; text-align: center; }
.sp-keyinfo-item .k { display: block; font-size: 0.76rem; color: var(--text-sub); margin-bottom: 6px; }
.sp-keyinfo-item .v { font-size: 1.05rem; font-weight: 700; color: var(--wine-red); }
.sp-keyinfo-item .v em { font-style: normal; font-size: 0.8rem; }
.sp-keyinfo-item .v small { font-size: 0.76rem; color: var(--text-sub); font-weight: 400; }
.sp-detail-lead { font-size: 1rem; line-height: 1.8; color: var(--text-main); margin: 0 0 18px; padding: 14px 16px; background: #fff9f5; border-radius: 12px; border-left: 3px solid var(--wine-gold); }
.sp-article { margin-bottom: 20px; }
.sp-contact { background: #fff6ef; border: 1px solid #f3dca6; border-radius: 14px; padding: 18px 20px; margin-bottom: 20px; }
.sp-contact h3 { margin: 0 0 14px; font-size: 1.05rem; color: var(--wine-red); }
.sp-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sp-contact-item { display: flex; flex-direction: column; gap: 4px; }
.sp-contact-item .k { font-size: 0.78rem; color: var(--text-sub); }
.sp-contact-item .v { font-size: 1rem; color: var(--text-main); }
.sp-contact-tip { font-size: 0.8rem; color: var(--text-sub); margin: 14px 0 0; display: flex; align-items: center; gap: 6px; }
.sp-detail-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-detail-tags a { background: #faf5f1; color: var(--text-sub); font-size: 0.8rem; padding: 5px 14px; border-radius: 999px; text-decoration: none; }
.sp-detail-tags a:hover { color: var(--wine-red); }

/* 详情：非 VIP 锁定态 */
.sp-locked { text-align: center; padding: 30px 20px; background: #fdfbfa; border: 1px solid var(--line); border-radius: 14px; }
.sp-locked-icon { font-size: 2.4rem; color: var(--wine-gold); margin-bottom: 12px; }
.sp-locked h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--text-main); }
.sp-locked p { font-size: 0.9rem; color: var(--text-sub); margin: 0 0 18px; }
.sp-locked-mask { max-width: 380px; margin: 0 auto 20px; padding: 18px 20px; background: #faf5f1; border-radius: 12px; }
.sp-locked-line { height: 12px; background: #ece0d8; border-radius: 6px; margin-bottom: 10px; }
.sp-locked-line.short { width: 60%; }
.sp-locked-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.sp-locked-tip { font-size: 0.82rem; color: var(--text-sub); margin: 0; }

/* 详情：相关推荐 */
.sp-related { margin-top: 26px; }
.sp-related-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sp-related-head h2 { font-size: 1.2rem; margin: 0; color: var(--text-main); }
.sp-related-head a { color: var(--wine-red); font-size: 0.86rem; text-decoration: none; }
.sp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* 详情：侧栏 */
.sp-detail-side { display: grid; gap: 18px; position: sticky; top: 16px; }
.sp-side-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.sp-side-card h3 { margin: 0 0 14px; font-size: 1.05rem; color: var(--text-main); }
.sp-side-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sp-side-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--wine-red), var(--wine-red-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.sp-side-author strong { display: block; color: var(--text-main); font-size: 0.95rem; }
.sp-side-author span { font-size: 0.78rem; color: var(--text-sub); }
.sp-side-locked { display: flex; align-items: center; gap: 8px; color: var(--text-sub); font-size: 0.86rem; background: #faf5f1; border-radius: 10px; padding: 12px; }
.sp-side-locked i { color: var(--wine-gold); }
.sp-side-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.sp-side-contact li { display: flex; justify-content: space-between; font-size: 0.9rem; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.sp-side-contact li:last-child { border-bottom: none; padding-bottom: 0; }
.sp-side-contact span { color: var(--text-sub); }
.sp-side-contact b { color: var(--text-main); }
.sp-side-cta { background: linear-gradient(135deg, #fff6ef 0%, #fff 100%); }
.sp-side-cta p { font-size: 0.86rem; color: var(--text-sub); line-height: 1.7; margin: 0 0 14px; }
.sp-side-posts { display: grid; gap: 12px; }
.sp-side-posts a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-main); font-size: 0.88rem; padding: 8px 10px; border-radius: 10px; transition: background 0.2s; }
.sp-side-posts a:hover { background: #faf5f1; }
.sp-side-badge { flex: 0 0 auto; font-size: 0.7rem; color: #fff; padding: 2px 8px; border-radius: 5px; }
.sp-side-badge.supply { background: #2e7d32; }
.sp-side-badge.demand { background: #c2185b; }
.sp-side-posts strong { font-weight: 500; line-height: 1.4; }
.sp-side-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-side-cats a { background: #faf5f1; color: var(--text-sub); font-size: 0.8rem; padding: 5px 12px; border-radius: 999px; text-decoration: none; }
.sp-side-cats a:hover { color: var(--wine-red); background: #fff0e9; }

/* ---------- 会员发布页：VIP 提示 / 类型选择 / 价格 ---------- */
.sp-vip-note { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; background: #fff6ef; border: 1px solid #f3dca6; border-radius: 12px; padding: 14px 16px; font-size: 0.9rem; color: #8a5a00; margin-bottom: 18px; }
.sp-vip-note i { color: var(--wine-gold); font-size: 1.1rem; }
.sp-vip-note b { color: var(--wine-red); }
.sp-vip-note-tip { margin-left: auto; font-size: 0.8rem; color: var(--text-sub); }
.sp-type-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sp-type-opt { cursor: pointer; }
.sp-type-opt input { position: absolute; opacity: 0; }
.sp-type-box { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px; border: 2px solid var(--line); border-radius: 14px; transition: all 0.2s; }
.sp-type-box i { font-size: 1.6rem; }
.sp-type-box b { font-size: 1.05rem; color: var(--text-main); }
.sp-type-box em { font-size: 0.78rem; color: var(--text-sub); font-style: normal; }
.sp-type-opt.supply .sp-type-box i { color: #2e7d32; }
.sp-type-opt.demand .sp-type-box i { color: #c2185b; }
.sp-type-opt input:checked + .sp-type-box { border-color: var(--wine-red); background: #fff6f2; box-shadow: 0 6px 16px rgba(178,34,34,0.12); }
.sp-type-opt.supply input:checked + .sp-type-box { border-color: #2e7d32; background: #f1faf2; }
.sp-type-opt.demand input:checked + .sp-type-box { border-color: #c2185b; background: #fdf0f5; }
.sp-price-row { display: flex; gap: 10px; }
.sp-price-row .form-control { flex: 1; }

.sp-vip-warn { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #fff4e8; border: 1px solid #f3dca6; border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; }
.sp-vip-warn i { font-size: 1.6rem; color: #d98e00; }
.sp-vip-warn strong { display: block; color: #8a5a00; }
.sp-vip-warn span { font-size: 0.85rem; color: #9a7b3a; }
.sp-vip-warn .btn { margin-left: auto; }

.sp-contact-form { background: #faf5f1; border-radius: 14px; padding: 18px 20px; margin-top: 8px; }
.sp-contact-form h4 { margin: 0 0 14px; font-size: 1rem; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.sp-contact-form h4 i { color: var(--wine-red); }
.mb-submit-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.sp-mine-item { align-items: center; }

/* ---------- 会员发布 / 我的供求：VIP 锁定卡片 ---------- */
.vip-lock-card { text-align: center; padding: 40px 24px; background: #fdfbfa; border: 1px solid var(--line); border-radius: 16px; }
.vip-lock-icon { font-size: 2.6rem; color: var(--wine-gold); margin-bottom: 14px; }
.vip-lock-card h3 { margin: 0 0 8px; font-size: 1.3rem; color: var(--text-main); }
.vip-lock-card > p { font-size: 0.9rem; color: var(--text-sub); margin: 0 0 18px; max-width: 460px; margin-left: auto; margin-right: auto; }
.vip-lock-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 480px; margin: 0 auto 22px; }
.vip-lock-perks span { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text-main); text-align: left; }
.vip-lock-perks i { color: #2e7d32; }
.vip-lock-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   VIP / 供求 响应式
   ============================================================ */
@media (max-width: 992px) {
  .vip-hero, .sp-hero { grid-template-columns: 1fr; }
  .vip-hero-side, .sp-hero-side { grid-template-columns: repeat(4, 1fr); }
  .vip-perks, .vip-perks.sm, .vip-plans, .vip-plans.compact { grid-template-columns: repeat(2, 1fr); }
  .sp-detail-layout { grid-template-columns: 1fr; }
  .sp-detail-side { position: static; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vip-hero, .sp-hero { padding: 28px 22px; }
  .vip-hero-main h1, .sp-hero-main h1 { font-size: 1.5rem; }
  .vip-hero-side, .sp-hero-side { grid-template-columns: repeat(2, 1fr); }
  .vip-perks, .vip-perks.sm, .vip-plans, .vip-plans.compact { grid-template-columns: 1fr; }
  .sp-keyinfo { grid-template-columns: repeat(2, 1fr); }
  .sp-contact-grid { grid-template-columns: 1fr; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-detail-card { padding: 20px 18px; }
  .sp-detail-title { font-size: 1.3rem; }
  .sp-type-picker { grid-template-columns: 1fr; }
  .vip-lock-perks { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sp-filter-row { flex-direction: column; gap: 6px; }
  .sp-filter-label { padding-top: 0; }
}
