.wechat-member-bar,
.tx-member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.wechat-member-bar img,
.tx-member-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tx-member-avatar--fallback {
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface));
  color: var(--color-primary);
  font-size: 1rem;
}
.tx-member-body { min-width: 0; }
.tx-member-name {
  display: block;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: inherit;
}
.tx-member-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.1rem;
  font-size: 0.75rem;
}
.tx-member-links a {
  color: var(--color-primary);
  font-weight: 600;
}
.tx-member-links button {
  border: none;
  background: none;
  padding: 0;
  color: var(--color-muted-text);
  cursor: pointer;
  font: inherit;
}
@media (min-width: 900px) {
  .tx-member-links { font-size: 0.8125rem; }
  .tx-member-name { max-width: 5.5rem; }
}

/* 开放标签须在 wx.config 时可被解析：勿用 hidden/display:none，用离屏占位 */
.yh-wx-subscribe-slot {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.01;
  pointer-events: none;
  z-index: -1;
}
.yh-wx-subscribe-slot.is-visible {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: auto;
}
.yh-wx-subscribe-slot.is-visible .yh-wx-subscribe-host {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
