/* templet2 内页样式 — 列表 / 详情 / 店铺 / 登录等 */

.t2-btn-full { width: 100%; }
.t2-btn-muted {
  background: #e2e8f0;
  color: #64748b;
  cursor: not-allowed;
}
.t2-btn-buy { min-width: 140px; }

/* 面包屑 */
.t2-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 16px 0 14px;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-crumb a:hover { color: var(--t2-brand); }
.t2-crumb-sep { opacity: .45; }
.t2-crumb-here {
  color: var(--t2-ink);
  max-width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 分页 */
.t2-page-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.t2-page-link {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--t2-line);
  background: #fff;
  font-size: 13px;
}
.t2-page-link.t2-is-active,
.t2-page-link:hover {
  background: var(--t2-brand);
  color: #fff;
  border-color: var(--t2-brand);
}

/* —— 商品列表（店铺页复用的基础卡片） —— */
.t2-item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-item-cell {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .15s ease;
}
.t2-item-cell:hover {
  border-color: #67e8f9;
  box-shadow: var(--t2-shadow);
  transform: translateY(-2px);
}
.t2-item-thumb,
.t2-item-thumb a {
  display: block;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}
.t2-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-no-img {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 160px;
  color: var(--t2-muted);
  font-size: 13px;
  font-style: normal;
}
.t2-item-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.t2-item-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.t2-item-name a:hover { color: var(--t2-brand); }
.t2-item-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.t2-item-price em {
  font-style: normal;
  color: var(--t2-danger);
  font-weight: 800;
  font-size: 17px;
}
.t2-item-price s {
  color: #94a3b8;
  font-size: 12px;
}
.t2-item-stats {
  margin: 0;
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-item-vendor {
  margin: 0;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-item-vendor a:hover { color: var(--t2-brand); }
.t2-catalog-main { min-width: 0; }

/* —— 商品中心列表页（筛选条 + 四列商城卡） —— */
.t2-mall {
  padding: 0 0 28px;
}
.t2-mall-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 14px 0 12px;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-mall-crumb a:hover { color: var(--t2-brand); }
.t2-mall-crumb i { font-style: normal; opacity: .45; }
.t2-mall-panel {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 12px;
  padding: 14px 18px 10px;
  margin-bottom: 16px;
}
.t2-mall-filter-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed #e8eef5;
}
.t2-mall-filter-row:last-of-type { border-bottom: 0; }
.t2-mall-filter-label {
  flex: 0 0 48px;
  padding-top: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}
.t2-mall-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  min-width: 0;
}
.t2-mall-chip {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #334155;
  line-height: 1.4;
}
.t2-mall-chip:hover { color: var(--t2-brand); }
.t2-mall-chip.is-on {
  background: #f59e0b;
  color: #fff;
  font-weight: 600;
}
.t2-mall-chip.is-on:hover { color: #fff; }
.t2-mall-chip-price {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.t2-mall-sort-arrow {
  display: inline-block;
  margin-left: 2px;
  font-size: 12px;
  line-height: 1;
  color: #94a3b8;
  font-weight: 700;
  transform: translateY(-0.5px);
}
.t2-mall-chip.is-on .t2-mall-sort-arrow,
.t2-mall-sort-arrow.is-on {
  color: #fff;
}
.t2-mall-kw {
  margin: 4px 0 2px;
  font-size: 12px;
  color: #94a3b8;
}
.t2-mall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-mall-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  height: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.t2-mall-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}
.t2-mall-cover {
  display: block;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}
.t2-mall-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.t2-mall-card:hover .t2-mall-cover img { transform: scale(1.04); }
.t2-mall-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 12px 14px;
  flex: 1;
}
.t2-mall-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--t2-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.t2-mall-card:hover .t2-mall-name { color: var(--t2-brand); }
.t2-mall-foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.t2-mall-price {
  font-style: normal;
  color: var(--t2-danger);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
}
.t2-mall-sales {
  font-style: normal;
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
}
.t2-mall-pager {
  justify-content: center;
  margin-top: 22px;
}
.t2-mall-promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 18px 16px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 12px;
}
.t2-mall-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.t2-mall-promises b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--t2-brand);
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.t2-mall-promises span {
  font-size: 13px;
  color: #64748b;
}

/* —— 商品详情 —— */
.t2-pdetail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  margin-bottom: 18px;
  align-items: start;
}
.t2-pdetail-visual {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 14px;
}
.t2-pdetail-hero {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  display: grid;
  place-items: center;
}
.t2-pdetail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-pdetail-hero--empty {
  color: var(--t2-muted);
  min-height: 320px;
}
.t2-pdetail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.t2-pdetail-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: #f1f5f9;
  cursor: pointer;
}
.t2-pdetail-thumb.t2-is-active,
.t2-pdetail-thumb:hover { border-color: var(--t2-brand); }
.t2-pdetail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-pdetail-panel {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 20px;
}
.t2-pdetail-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}
.t2-pdetail-pricebox {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  background: linear-gradient(90deg, #fff7ed, #fff);
  border-radius: 10px;
  margin-bottom: 14px;
}
.t2-pdetail-price-label {
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-pdetail-price {
  font-size: 30px;
  color: var(--t2-danger);
  font-weight: 800;
}
.t2-pdetail-was {
  color: #94a3b8;
  font-size: 14px;
}
.t2-pdetail-promo {
  border: 1px dashed #fdba74;
  background: #fffbeb;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}
.t2-pdetail-promo-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #c2410c;
}
.t2-pdetail-promo-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #9a3412;
}
.t2-pdetail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-pdetail-specs {
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}
.t2-pdetail-spec-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  font-size: 13px;
}
.t2-pdetail-spec-row dt { margin: 0; color: var(--t2-muted); }
.t2-pdetail-spec-row dd { margin: 0; }
.t2-pdetail-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.t2-pdetail-qty-label { font-size: 13px; color: var(--t2-muted); }
.t2-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--t2-line);
  border-radius: 999px;
  overflow: hidden;
}
.t2-qty-stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #f8fafc;
  cursor: pointer;
  font-size: 16px;
}
.t2-qty-stepper input {
  width: 56px;
  border: 0;
  text-align: center;
  outline: none;
}
.t2-pdetail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.t2-pdetail-seller {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--t2-line);
}
.t2-seller-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--t2-brand-soft);
  color: var(--t2-brand);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-weight: 800;
  flex-shrink: 0;
}
.t2-seller-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-seller-badge--lg { width: 56px; height: 56px; font-size: 18px; }
.t2-seller-badge--xl { width: 72px; height: 72px; font-size: 24px; }
.t2-seller-info { flex: 1; min-width: 0; }
.t2-seller-info strong { display: block; font-size: 14px; }
.t2-seller-info em {
  font-style: normal;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-pdetail-desc,
.t2-article-content,
.t2-article-publisher,
.t2-article-related {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.t2-section-title {
  margin: 0 0 14px;
  font-size: 17px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--t2-brand);
  display: inline-block;
}
.t2-rich-content {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.t2-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}
.t2-rich-content p { margin: 0 0 12px; }

/* —— 信息列表（资讯双栏，原创） —— */
.t2-news { margin-bottom: 8px; }
.t2-news-band {
  background: linear-gradient(120deg, #ecfeff 0%, #f0f9ff 48%, #fff7ed 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0 22px;
  margin-bottom: 18px;
}
.t2-news-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--t2-muted);
  margin-bottom: 12px;
}
.t2-news-crumb a:hover { color: var(--t2-brand); }
.t2-news-crumb i { font-style: normal; opacity: .45; }
.t2-news-band-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.t2-news-title {
  margin: 0;
  font-size: 28px;
  color: var(--t2-brand);
  letter-spacing: .02em;
}
.t2-news-lead {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--t2-muted);
}
.t2-news-search {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 2px solid var(--t2-brand);
  border-radius: 999px;
  overflow: hidden;
  min-width: min(100%, 340px);
}
.t2-news-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 16px;
  background: transparent;
}
.t2-news-search button {
  border: 0;
  background: var(--t2-brand);
  color: #fff;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
}
.t2-news-search button:hover { background: #083049; }

.t2-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.t2-news-main { min-width: 0; }

.t2-news-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.t2-news-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--t2-line);
  font-size: 13px;
  color: #334155;
}
.t2-news-chip em {
  font-style: normal;
  font-size: 11px;
  color: var(--t2-muted);
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 999px;
}
.t2-news-chip:hover {
  border-color: var(--t2-brand-mid);
  color: var(--t2-brand);
}
.t2-news-chip.is-on {
  background: var(--t2-brand);
  border-color: var(--t2-brand);
  color: #fff;
}
.t2-news-chip.is-on em {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.t2-news-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-news-source label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.t2-news-source select {
  border: 1px solid var(--t2-line);
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
}
.t2-news-count strong { color: var(--t2-brand); }

.t2-news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t2-news-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
  transition: .15s ease;
}
.t2-news-card:hover {
  border-color: #67e8f9;
  box-shadow: var(--t2-shadow);
}
.t2-news-card-link {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 0;
  color: inherit;
  min-height: 126px;
}
.t2-news-thumb {
  background: #f1f5f9;
  overflow: hidden;
  min-height: 126px;
}
.t2-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-news-thumb-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 126px;
  font-size: 32px;
  color: var(--t2-muted);
  background: linear-gradient(145deg, #ecfeff, #f8fafc);
}
.t2-news-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.t2-news-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--t2-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-news-card:hover .t2-news-card-title { color: var(--t2-brand); }
.t2-news-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.t2-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--t2-muted);
  align-items: center;
}
.t2-news-cat {
  background: var(--t2-brand-soft);
  color: var(--t2-brand);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.t2-news-price {
  color: var(--t2-danger);
  font-weight: 700;
  font-size: 13px;
}
.t2-news-pager { margin-top: 16px; }

.t2-news-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 60px;
}
.t2-news-side-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
}
.t2-news-side-head {
  padding: 12px 14px;
  background: linear-gradient(90deg, #ecfeff, #fff);
  border-bottom: 1px solid var(--t2-line);
}
.t2-news-side-head h2 {
  margin: 0;
  font-size: 15px;
  color: var(--t2-brand);
}
.t2-news-side-empty {
  margin: 0;
  padding: 16px;
  color: var(--t2-muted);
  font-size: 13px;
}
.t2-news-rank {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.t2-news-rank li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: flex-start;
  padding: 9px 14px;
  border-bottom: 1px dashed #f1f5f9;
}
.t2-news-rank li:last-child { border-bottom: 0; }
.t2-news-rank-no {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.t2-news-rank li:nth-child(1) .t2-news-rank-no,
.t2-news-rank li:nth-child(2) .t2-news-rank-no,
.t2-news-rank li:nth-child(3) .t2-news-rank-no {
  background: var(--t2-accent);
  color: #111;
}
.t2-news-rank a {
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-news-rank a:hover { color: var(--t2-brand); }
.t2-news-side-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}
.t2-news-side-links a {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.t2-news-side-links a:hover {
  border-color: var(--t2-brand-mid);
  color: var(--t2-brand);
  background: var(--t2-brand-soft);
}
.t2-news-side-tip {
  padding: 14px;
  background: linear-gradient(160deg, #fff7ed, #fff);
}
.t2-news-side-tip h2 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #c2410c;
}
.t2-news-side-tip p {
  margin: 0;
  font-size: 13px;
  color: #9a3412;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .t2-news-layout { grid-template-columns: 1fr; }
  .t2-news-side { position: static; }
  .t2-news-card-link { grid-template-columns: 120px 1fr; }
  .t2-news-thumb,
  .t2-news-thumb-fallback { min-height: 100px; }
}

@media (max-width: 560px) {
  .t2-news-title { font-size: 22px; }
  .t2-news-card-link { grid-template-columns: 1fr; }
  .t2-news-thumb { height: 160px; }
  .t2-news-thumb-fallback { min-height: 120px; }
}

/* —— 信息列表（资讯双栏，原创）以上 —— */

/* —— 信息列表（旧筛选块保留兼容） —— */
.t2-info-sub {
  margin: 4px 0 0;
  color: var(--t2-muted);
  font-size: 13px;
}
.t2-info-filter {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 14px;
  margin-bottom: 14px;
}
.t2-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.t2-filter-form input,
.t2-filter-form select {
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  padding: 9px 12px;
  outline: none;
  min-width: 140px;
}
.t2-filter-form input { flex: 1; min-width: 180px; }
.t2-filter-form input:focus,
.t2-filter-form select:focus { border-color: var(--t2-brand-mid); }

.t2-info-feed {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t2-info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 12px;
}
.t2-info-row--text { grid-template-columns: 1fr; }
.t2-info-media {
  width: 140px;
  height: 105px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  display: grid;
  place-items: center;
}
.t2-info-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-info-icon { font-size: 28px; }
.t2-info-body { min-width: 0; }
.t2-info-row-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.t2-info-title {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}
.t2-info-title a:hover { color: var(--t2-brand); }
.t2-info-snippet {
  margin: 0 0 10px;
  color: var(--t2-muted);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-info-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-info-price {
  color: var(--t2-danger);
  font-weight: 700;
  font-size: 14px;
}
.t2-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: #f1f5f9;
  color: var(--t2-muted);
  white-space: nowrap;
}

/* —— 信息详情 —— */
.t2-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}
.t2-article-main { min-width: 0; }
.t2-article-head {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.t2-article-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
}
.t2-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-article-gallery {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 12px;
  margin-bottom: 14px;
}
.t2-article-gallery-main {
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
}
.t2-article-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.t2-article-slide.t2-is-visible { display: block; }
.t2-article-gallery-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.t2-gallery-dot {
  width: 64px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: #f1f5f9;
  cursor: pointer;
}
.t2-gallery-dot.t2-is-active { border-color: var(--t2-brand); }
.t2-gallery-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-article-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 14px 18px;
  margin-bottom: 14px;
}
.t2-article-price span {
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-article-price strong {
  font-size: 26px;
  color: var(--t2-danger);
}
.t2-related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-related-list li {
  padding: 0;
  border-bottom: 1px dashed var(--t2-line);
}
.t2-related-list li:last-child { border-bottom: 0; }
.t2-related-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  color: inherit;
}
.t2-related-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t2-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-related-thumb em {
  font-style: normal;
  font-size: 22px;
  color: var(--t2-muted);
}
.t2-related-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t2-related-text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t2-ink);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-related-text span,
.t2-related-excerpt {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.45em;
}
.t2-related-row:hover .t2-related-text strong { color: var(--t2-brand); }
.t2-related-row time {
  color: #94a3b8;
  font-size: 13px;
  white-space: nowrap;
  align-self: flex-start;
  padding-top: 2px;
}
@media (max-width: 560px) {
  .t2-related-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .t2-related-thumb {
    width: 64px;
    height: 64px;
  }
  .t2-related-row time {
    grid-column: 2;
    padding-top: 0;
  }
}
.t2-article-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 60px;
}
.t2-contact-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 16px;
}
.t2-contact-title {
  margin: 0 0 12px;
  font-size: 15px;
}
.t2-contact-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
}
.t2-contact-row dt { margin: 0; color: var(--t2-muted); }
.t2-contact-row dd { margin: 0; font-weight: 600; }
.t2-contact-phone { color: var(--t2-brand); font-size: 16px; }
.t2-contact-empty,
.t2-contact-hint,
.t2-contact-points,
.t2-contact-foot {
  font-size: 13px;
  color: var(--t2-muted);
  margin: 0 0 10px;
}
.t2-contact-foot a { color: var(--t2-brand); font-weight: 600; }
.t2-tip-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--t2-muted);
  line-height: 1.7;
}

/* —— 店铺街 / 店铺页 —— */
/* —— 店铺街（商家列表，原创） —— */
.t2-mstreet { margin-bottom: 8px; }
.t2-mstreet-band {
  background: linear-gradient(120deg, #ecfeff 0%, #f0f9ff 50%, #fff7ed 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0 22px;
  margin-bottom: 18px;
}
.t2-mstreet-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--t2-muted);
  margin-bottom: 12px;
}
.t2-mstreet-crumb a:hover { color: var(--t2-brand); }
.t2-mstreet-crumb i { font-style: normal; opacity: .45; }
.t2-mstreet-band-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.t2-mstreet-title {
  margin: 0;
  font-size: 28px;
  color: var(--t2-brand);
}
.t2-mstreet-lead {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--t2-muted);
}
.t2-mstreet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.t2-mstreet-toolbar {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-mstreet-count strong { color: var(--t2-brand); }

.t2-mstreet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t2-mstreet-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
  transition: .15s ease;
}
.t2-mstreet-card:hover {
  border-color: #67e8f9;
  box-shadow: var(--t2-shadow);
}
.t2-mstreet-card-link {
  display: grid;
  grid-template-columns: 132px 1fr;
  color: inherit;
  min-height: 132px;
}
.t2-mstreet-brand {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  overflow: hidden;
}
.t2-mstreet-brand.tone-a { background: linear-gradient(145deg, #0b3d5c, #0e7490); }
.t2-mstreet-brand.tone-b { background: linear-gradient(145deg, #c2410c, #f59e0b); }
.t2-mstreet-brand.tone-c { background: linear-gradient(145deg, #1e3a8a, #0369a1); }
.t2-mstreet-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-mstreet-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.t2-mstreet-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.t2-mstreet-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}
.t2-mstreet-card:hover .t2-mstreet-name { color: var(--t2-brand); }
.t2-mstreet-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--t2-brand-soft);
  color: var(--t2-brand);
  font-weight: 700;
}
.t2-mstreet-biz,
.t2-mstreet-addr {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}
.t2-mstreet-biz span {
  display: inline-block;
  margin-right: 6px;
  color: var(--t2-brand);
  font-weight: 700;
  font-size: 12px;
}
.t2-mstreet-stats {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-mstreet-stats em { font-style: normal; }
.t2-mstreet-stats b { color: var(--t2-brand); margin-right: 2px; }
.t2-mstreet-go {
  margin-left: auto;
  color: var(--t2-brand-mid);
  font-weight: 700;
}
.t2-mstreet-pager { margin-top: 16px; }

.t2-mstreet-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 60px;
}
.t2-mstreet-side-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
}
.t2-mstreet-join {
  padding: 16px;
  background: linear-gradient(160deg, #fff7ed, #fff);
}
.t2-mstreet-join h2 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #c2410c;
}
.t2-mstreet-join p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #9a3412;
  line-height: 1.55;
}
.t2-mstreet-side-head {
  padding: 12px 14px;
  background: linear-gradient(90deg, #ecfeff, #fff);
  border-bottom: 1px solid var(--t2-line);
}
.t2-mstreet-side-head h2 {
  margin: 0;
  font-size: 15px;
  color: var(--t2-brand);
}
.t2-mstreet-rank {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.t2-mstreet-rank li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px dashed #f1f5f9;
  align-items: flex-start;
}
.t2-mstreet-rank li:last-child { border-bottom: 0; }
.t2-mstreet-rank-no {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.t2-mstreet-rank li:nth-child(-n+3) .t2-mstreet-rank-no {
  background: var(--t2-accent);
  color: #111;
}
.t2-mstreet-rank a {
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-mstreet-rank a:hover { color: var(--t2-brand); }
.t2-mstreet-side-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}
.t2-mstreet-side-links a {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.t2-mstreet-side-links a:hover {
  border-color: var(--t2-brand-mid);
  color: var(--t2-brand);
  background: var(--t2-brand-soft);
}

@media (max-width: 980px) {
  .t2-mstreet-layout { grid-template-columns: 1fr; }
  .t2-mstreet-side { position: static; }
  .t2-mstreet-card-link { grid-template-columns: 100px 1fr; }
}
@media (max-width: 560px) {
  .t2-mstreet-title { font-size: 22px; }
  .t2-mstreet-card-link { grid-template-columns: 1fr; }
  .t2-mstreet-brand { min-height: 110px; }
  .t2-mstreet-go { margin-left: 0; width: 100%; }
}

/* 旧店铺街卡片（兼容保留） */
.t2-storefront-head { margin: 18px 0 14px; }
.t2-storefront-sub {
  margin: 4px 0 0;
  color: var(--t2-muted);
  font-size: 13px;
}
.t2-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-store-card {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
  transition: .15s ease;
}
.t2-store-card:hover {
  border-color: #67e8f9;
  box-shadow: var(--t2-shadow);
}
.t2-store-link {
  display: block;
  padding: 16px;
  color: inherit;
}
.t2-store-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.t2-store-names strong { display: block; font-size: 15px; }
.t2-store-names em {
  font-style: normal;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-store-bio {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--t2-muted);
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-store-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px 0;
  border-top: 1px solid var(--t2-line);
  border-bottom: 1px solid var(--t2-line);
  list-style: none;
  text-align: center;
}
.t2-store-metrics strong {
  display: block;
  font-size: 16px;
  color: var(--t2-brand);
}
.t2-store-metrics span {
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-store-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-store-enter {
  color: var(--t2-brand-mid);
  font-weight: 700;
}

/* —— 店铺详情（店招 + 侧栏联系 + 商品墙） —— */
.t2-shopfront { margin-bottom: 28px; }
.t2-sf-masthead {
  position: relative;
  margin-bottom: 18px;
}
.t2-sf-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 158, 11, .35), transparent 50%),
    linear-gradient(125deg, #062636 0%, #0b3d5c 42%, #0e7490 100%);
}
.t2-sf-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .88;
}
.t2-sf-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 32, .15) 0%, rgba(6, 20, 32, .72) 100%);
  pointer-events: none;
}
.t2-sf-head {
  position: relative;
  z-index: 1;
  margin-top: -72px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.t2-sf-brand {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  min-width: 0;
}
.t2-sf-logo {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t2-sf-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-sf-logo span {
  font-size: 34px;
  font-weight: 800;
  color: var(--t2-brand);
}
.t2-sf-brand-text { min-width: 0; padding-bottom: 4px; }
.t2-sf-eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}
.t2-sf-name {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.t2-sf-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-sf-meta li {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.t2-sf-meta li.is-cert {
  background: var(--t2-accent);
  color: #1f1400;
  font-weight: 700;
}
.t2-sf-stats {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  box-shadow: var(--t2-shadow);
}
.t2-sf-stats li {
  min-width: 88px;
  text-align: center;
  padding: 6px 10px;
}
.t2-sf-stats b {
  display: block;
  font-size: 20px;
  color: var(--t2-brand);
  line-height: 1.2;
}
.t2-sf-stats span {
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-sf-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.t2-sf-side {
  position: sticky;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t2-sf-panel {
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 14px;
  padding: 16px;
}
.t2-sf-panel h2 {
  margin: 0 0 12px;
  font-size: 15px;
}
.t2-sf-phone {
  display: block;
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--t2-brand);
  letter-spacing: .02em;
}
.t2-sf-muted {
  margin: 0;
  color: var(--t2-muted);
  font-size: 13px;
}
.t2-sf-dl {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.t2-sf-dl > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  font-size: 13px;
}
.t2-sf-dl dt {
  margin: 0;
  color: var(--t2-muted);
}
.t2-sf-dl dd {
  margin: 0;
  color: var(--t2-ink);
  word-break: break-all;
}
.t2-sf-about p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
.t2-sf-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.t2-sf-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.t2-sf-tabs a em {
  font-style: normal;
  font-size: 12px;
  color: #94a3b8;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 1px 7px;
}
.t2-sf-tabs a.is-on {
  background: var(--t2-brand);
  color: #fff;
}
.t2-sf-tabs a.is-on em {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}
.t2-sf-goods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t2-sf-good {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.t2-sf-good:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.t2-sf-good-cover {
  display: block;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}
.t2-sf-good-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.t2-sf-good:hover .t2-sf-good-cover img { transform: scale(1.04); }
.t2-sf-good-cover i {
  display: grid;
  place-items: center;
  height: 100%;
  font-style: normal;
  color: var(--t2-muted);
  font-size: 13px;
}
.t2-sf-good-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 11px 12px 13px;
  flex: 1;
}
.t2-sf-good-body strong {
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.t2-sf-good:hover .t2-sf-good-body strong { color: var(--t2-brand); }
.t2-sf-good-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.t2-sf-good-foot em {
  font-style: normal;
  color: var(--t2-danger);
  font-weight: 800;
  font-size: 17px;
}
.t2-sf-good-foot i {
  font-style: normal;
  font-size: 12px;
  color: #94a3b8;
}
.t2-sf-posts {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: 14px;
  overflow: hidden;
}
.t2-sf-post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--t2-line);
  color: inherit;
  align-items: center;
}
.t2-sf-posts li:last-child .t2-sf-post { border-bottom: 0; }
.t2-sf-post-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  display: grid;
  place-items: center;
}
.t2-sf-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t2-sf-post-thumb em { font-style: normal; font-size: 22px; }
.t2-sf-post-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.t2-sf-post-text strong {
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-sf-post:hover .t2-sf-post-text strong { color: var(--t2-brand); }
.t2-sf-post-text span {
  font-size: 13px;
  color: #94a3b8;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t2-sf-post-text i {
  font-style: normal;
  font-size: 12px;
  color: #94a3b8;
}
.t2-sf-pager { margin-top: 16px; }

/* 兼容旧类名（若其它地方仍引用） */
.t2-shop-hero {
  margin-top: 16px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
}
.t2-shop-banner {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(120deg, #0b3d5c, #0e7490);
}
.t2-shop-banner--placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.t2-shop-profile {
  display: grid;
  grid-template-columns: auto 1fr 240px;
  gap: 16px;
  padding: 16px 18px;
  align-items: start;
}
.t2-shop-name { margin: 0 0 8px; font-size: 22px; }
.t2-shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-shop-intro strong { display: block; margin-bottom: 6px; font-size: 13px; }
.t2-shop-intro p { margin: 0; font-size: 14px; color: #475569; line-height: 1.6; }
.t2-shop-intro-empty { color: var(--t2-muted); }
.t2-shop-contact {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px;
}
.t2-shop-contact h3 { margin: 0 0 8px; font-size: 14px; }
.t2-shop-phone {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--t2-brand);
}
.t2-shop-extra { margin: 8px 0 0; font-size: 12px; color: var(--t2-muted); }
.t2-shop-tabs {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.t2-shop-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid var(--t2-line);
}
.t2-shop-tab:last-child { border-right: 0; }
.t2-shop-tab.t2-is-active {
  background: var(--t2-brand);
  color: #fff;
}
.t2-info-feed--compact .t2-info-row {
  padding: 12px 14px;
}

/* —— 登录 / 注册 —— */
.t2-auth-panel {
  max-width: 420px;
  margin: 48px auto;
  background: #fff;
  border: 1px solid var(--t2-line);
  border-radius: var(--t2-radius);
  padding: 28px;
  box-shadow: var(--t2-shadow);
}
.t2-auth-title {
  margin: 0 0 18px;
  font-size: 22px;
  text-align: center;
}
.t2-auth-form { display: grid; gap: 14px; }
.t2-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}
.t2-field input,
.t2-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  outline: none;
}
.t2-field input:focus,
.t2-field select:focus { border-color: var(--t2-brand-mid); }
.t2-auth-foot {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--t2-muted);
}
.t2-auth-panel--wide { max-width: 520px; }
.t2-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--t2-line);
  border-radius: 10px;
  outline: none;
  resize: vertical;
  font: inherit;
}
.t2-field textarea:focus { border-color: var(--t2-brand-mid); }
.t2-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--t2-muted);
}
.t2-agree-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
}
.t2-agree-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #475569;
}
.t2-agree-item a { color: var(--t2-brand); font-weight: 600; }

@media (max-width: 980px) {
  .t2-item-grid,
  .t2-mall-grid { grid-template-columns: repeat(2, 1fr); }
  .t2-mall-promises { grid-template-columns: repeat(2, 1fr); }
  .t2-pdetail,
  .t2-article-layout,
  .t2-shop-profile,
  .t2-sf-body,
  .t2-store-grid { grid-template-columns: 1fr; }
  .t2-sf-side { position: static; }
  .t2-sf-goods { grid-template-columns: repeat(2, 1fr); }
  .t2-sf-head { margin-top: -56px; }
  .t2-sf-name { font-size: 22px; }
  .t2-article-aside { position: static; }
  .t2-info-row { grid-template-columns: 100px 1fr; }
  .t2-info-media { width: 100px; height: 76px; }
}

@media (max-width: 560px) {
  .t2-item-grid,
  .t2-mall-grid,
  .t2-sf-goods,
  .t2-store-grid { grid-template-columns: 1fr; }
  .t2-mall-promises { grid-template-columns: 1fr; }
  .t2-mall-filter-row { flex-direction: column; gap: 6px; }
  .t2-mall-filter-label { padding-top: 0; }
  .t2-sf-banner { height: 160px; }
  .t2-sf-logo { width: 72px; height: 72px; border-radius: 14px; }
  .t2-sf-stats { width: 100%; justify-content: space-between; }
  .t2-sf-tabs { width: 100%; }
  .t2-sf-tabs a { flex: 1; justify-content: center; }
  .t2-info-row { grid-template-columns: 1fr; }
  .t2-info-media { width: 100%; height: 160px; }
  .t2-pdetail-actions { flex-direction: column; }
  .t2-pdetail-actions .t2-btn { width: 100%; }
}
