/* Kimi-inspired personal center shell */
:root {
  --pc-sidebar-w: 200px;
  --pc-sidebar-collapsed-w: 64px;
  --pc-tabbar-h: 56px;
  --pc-safe-bottom: env(safe-area-inset-bottom, 0px);
  --pc-bg: #f9f9f9;
  --pc-sidebar-bg: #f5f5f5;
  --pc-main-bg: #ffffff;
  --pc-text: #1a1a1a;
  --pc-text-muted: #8b8b8b;
  --pc-hover: rgba(0, 0, 0, 0.04);
  --pc-active: rgba(0, 0, 0, 0.06);
  --pc-border: rgba(0, 0, 0, 0.06);
  --pc-radius: 10px;
  --pc-ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --pc-accent: #111111;
}

html,
body.pc-body {
  height: 100%;
  margin: 0;
}

body.pc-body {
  background: var(--pc-bg);
  color: var(--pc-text);
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  overflow: hidden;
  padding-top: 0 !important;
}

body.pc-body .content {
  padding: 0;
  margin: 0;
  min-height: 0;
}

.pc-app {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Sidebar */
.pc-sidebar {
  width: var(--pc-sidebar-w);
  flex-shrink: 0;
  background: var(--pc-sidebar-bg);
  display: flex;
  flex-direction: column;
  transition: width var(--pc-ease);
  border-right: 1px solid var(--pc-border);
  z-index: 30;
  position: relative;
}

.pc-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 6px;
  min-height: 48px;
}

.pc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pc-text);
  min-width: 0;
  overflow: hidden;
}

.pc-logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.pc-logo__text {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
  transition: opacity var(--pc-ease);
}

.pc-collapse-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--pc-ease), color var(--pc-ease);
}

.pc-collapse-btn:hover {
  background: var(--pc-hover);
  color: var(--pc-text);
}

.pc-collapse-btn svg {
  width: 18px;
  height: 18px;
}

.pc-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 8px 12px;
}

.pc-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  margin-bottom: 2px;
  border-radius: var(--pc-radius);
  color: var(--pc-text);
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1.3;
  transition: background var(--pc-ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.pc-nav-item:hover,
.pc-nav-item:focus {
  background: var(--pc-hover);
  color: var(--pc-text);
}

.pc-nav-item.is-active {
  background: var(--pc-active);
  font-weight: 500;
}

.pc-nav-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  position: relative;
}

.pc-nav-item__icon svg {
  width: 18px;
  height: 18px;
}

.pc-nav-item__label {
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity var(--pc-ease);
}

/* 气泡贴在「聊天」文字右上角 */
.pc-nav-item[data-nav="chat"] {
  position: relative;
}

.pc-nav-item__badge {
  position: relative;
  top: -8px;
  margin-left: 2px;
  align-self: flex-start;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #fa5151;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 2;
}

.pc-nav-item__badge.hidden {
  display: none !important;
}

.pc-nav-section {
  margin-top: 16px;
  padding: 0 12px 6px;
  font-size: 12px;
  color: var(--pc-text-muted);
  white-space: nowrap;
  overflow: hidden;
  transition: opacity var(--pc-ease);
}

.pc-nav-hint {
  margin: 4px 12px 10px;
  font-size: 12px;
  color: var(--pc-text-muted);
  line-height: 1.4;
}

/* Bottom account */
.pc-sidebar__foot {
  padding: 10px;
  border-top: 1px solid var(--pc-border);
  position: relative;
}

.pc-account {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--pc-radius);
  text-decoration: none !important;
  color: var(--pc-text);
  cursor: pointer;
  transition: background var(--pc-ease);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.pc-account:hover {
  background: var(--pc-hover);
  color: var(--pc-text);
}

.pc-account__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8e8e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: #666;
}

.pc-account__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-account__avatar svg {
  width: 16px;
  height: 16px;
}

.pc-account__meta {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  transition: opacity var(--pc-ease);
}

.pc-account__name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-account__sub {
  font-size: 12px;
  color: var(--pc-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-account-menu {
  display: none;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  padding: 6px;
  z-index: 40;
  min-width: 220px;
  overflow: hidden;
}

.pc-account-menu.is-open {
  display: block;
  animation: pc-fade-up 0.18s ease;
}

@keyframes pc-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pc-menu-panel {
  display: none;
}

.pc-menu-panel.is-active {
  display: block;
}

.pc-menu-head {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text);
}

.pc-menu-back {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pc-menu-back:hover {
  background: var(--pc-hover);
  color: var(--pc-text);
}

.pc-menu-back svg {
  width: 16px;
  height: 16px;
}

.pc-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--pc-text);
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  text-align: left;
  transition: background var(--pc-ease);
}

.pc-menu-item:hover {
  background: var(--pc-hover);
  color: var(--pc-text);
}

.pc-menu-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.pc-menu-item__icon svg,
.pc-menu-item__arrow svg,
.pc-menu-item__check svg {
  width: 16px;
  height: 16px;
}

.pc-menu-item__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc-menu-item__meta {
  font-size: 12px;
  color: var(--pc-text-muted);
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc-menu-item__arrow,
.pc-menu-item__check {
  color: #999;
  display: inline-flex;
  flex-shrink: 0;
}

.pc-menu-item.is-checked .pc-menu-item__check {
  color: #111;
}

.pc-menu-item--danger {
  color: #c0392b;
}

.pc-menu-item--danger .pc-menu-item__icon {
  color: #c0392b;
}

.pc-menu-divider {
  height: 1px;
  background: var(--pc-border);
  margin: 6px 8px;
}

/* legacy link styles inside menu kept minimal */
.pc-account-menu a.pc-menu-item {
  color: var(--pc-text);
}

/* Main */
.pc-main {
  flex: 1;
  min-width: 0;
  background: var(--pc-main-bg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pc-main__scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.pc-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 32px 48px;
  min-height: 100%;
}

.pc-panel--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 0px);
  padding-top: 8vh;
  padding-bottom: 8vh;
}

.pc-hero-brand {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: var(--pc-text);
}

.pc-hero-desc {
  margin: 0 0 36px;
  color: var(--pc-text-muted);
  font-size: 15px;
}

.pc-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--pc-text-muted);
}

.pc-empty__title {
  font-size: 20px;
  color: var(--pc-text);
  font-weight: 600;
  margin: 0 0 8px;
}

.pc-empty__desc {
  font-size: 14px;
  margin: 0;
}

.pc-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 28px 28px 20px;
}

.pc-card h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0;
  border: none;
}

.pc-user-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.pc-user-summary__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}

.pc-user-summary__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-user-summary__name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.pc-user-summary__bio {
  margin: 0;
  color: var(--pc-text-muted);
  font-size: 14px;
}

.pc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.pc-stat {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--pc-border);
}

.pc-stat__label {
  font-size: 12px;
  color: var(--pc-text-muted);
  margin-bottom: 4px;
}

.pc-stat__value {
  font-size: 16px;
  font-weight: 600;
}

.pc-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.pc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pc-border);
  background: #fff;
  color: var(--pc-text);
  text-decoration: none !important;
  font-size: 13px;
  transition: background var(--pc-ease), border-color var(--pc-ease);
}

.pc-chip:hover {
  background: #f7f7f7;
  color: var(--pc-text);
  border-color: rgba(0, 0, 0, 0.12);
}

.pc-chip svg {
  width: 16px;
  height: 16px;
  color: #666;
}

/* Forms inside center */
.pc-panel .form-horizontal .control-label {
  text-align: left;
}

.pc-panel .user-section.login-section {
  max-width: 400px;
  margin: 48px auto;
  box-shadow: none;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  overflow: hidden;
}

body.pc-body .footer {
  display: none;
}

/* Chat / Workspace pages: keep left site menu, fill right content area only */
body.pc-body.chat-app-mode,
body.pc-body.ws-app-mode {
  overflow: hidden;
}

body.chat-app-mode .pc-app,
body.ws-app-mode .pc-app {
  height: 100vh;
  height: 100dvh;
}

body.chat-app-mode .pc-main,
body.ws-app-mode .pc-main {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

body.chat-app-mode .pc-main__scroll,
body.ws-app-mode .pc-main__scroll {
  height: 100%;
  padding: 0;
  overflow: hidden;
}

body.chat-app-mode .chat-app,
body.ws-app-mode .ws-app {
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

body.chat-app-mode.chat-room-open .pc-tabbar {
  display: none !important;
}

@media (max-width: 768px) {
  body.chat-app-mode .pc-app,
  body.ws-app-mode .pc-app {
    display: block;
    height: 100vh;
    height: 100dvh;
  }

  body.chat-app-mode .pc-main,
  body.chat-app-mode .pc-main__scroll,
  body.ws-app-mode .pc-main,
  body.ws-app-mode .pc-main__scroll {
    height: 100%;
    min-height: 0;
    padding-bottom: 0;
  }

  body.chat-app-mode:not(.chat-room-open) .pc-main__scroll,
  body.ws-app-mode .pc-main__scroll {
    padding-bottom: calc(var(--pc-tabbar-h) + var(--pc-safe-bottom));
  }

  body.chat-app-mode:not(.chat-room-open) .chat-app,
  body.ws-app-mode .ws-app {
    height: 100%;
  }

  body.chat-app-mode.chat-room-open .pc-main__scroll {
    padding-bottom: 0;
  }

  body.chat-app-mode.chat-room-open .chat-app {
    height: 100%;
  }
}

/* CSS variables used by chat.css */
:root {
  --cm-primary: #111111;
  --cm-primary-dark: #000000;
  --cm-text-muted: #999999;
  --cm-border: #eeeeee;
  --cm-safe-bottom: env(safe-area-inset-bottom, 0px);
  --cm-tabbar-height: 56px;
  --cm-tabbar-gap: calc(56px + env(safe-area-inset-bottom, 0px) + 12px);
}

.pc-my-card,
.pc-my-group {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pc-my-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  text-decoration: none !important;
  color: var(--pc-text);
}

.pc-my-user__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pc-my-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-my-user__avatar--empty {
  color: #888;
}

.pc-my-user__avatar--empty svg {
  width: 26px;
  height: 26px;
}

.pc-my-user__meta {
  flex: 1;
  min-width: 0;
}

.pc-my-user__name {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.pc-my-user__sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--pc-text-muted);
}

.pc-my-user__arrow {
  color: #c0c0c0;
  display: inline-flex;
}

.pc-my-user__arrow svg {
  width: 16px;
  height: 16px;
}

.pc-my-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none !important;
  color: var(--pc-text);
  border-top: 1px solid var(--pc-border);
  background: #fff;
}

.pc-my-group .pc-my-row:first-child,
.pc-my-group .pc-my-row--static:first-child {
  border-top: none;
}

.pc-my-row--static {
  cursor: default;
}

.pc-my-row__icon {
  width: 20px;
  color: #666;
  text-align: center;
}

.pc-my-row__text {
  flex: 1;
  font-size: 15px;
}

.pc-my-row__meta {
  font-size: 12px;
  color: var(--pc-text-muted);
}

.pc-my-row__arrow {
  color: #c0c0c0;
  display: inline-flex;
}

.pc-my-row__arrow svg {
  width: 14px;
  height: 14px;
}

.pc-my-row--danger {
  color: #c0392b;
  justify-content: center;
}

.pc-my-row--danger .pc-my-row__icon,
.pc-my-row--danger .pc-my-row__text {
  color: #c0392b;
  flex: none;
}

.pc-setting-switch-row .pc-my-row__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.pc-setting-hint {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

.pc-setting-limit-row.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.pc-setting-select {
  width: 88px;
  height: 30px;
  padding: 2px 8px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--pc-border, #e5e5e5);
  background: #fff;
}

.pc-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 28px;
  flex-shrink: 0;
  margin: 0;
}

.pc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pc-switch__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d0d0d0;
  border-radius: 28px;
  transition: 0.2s;
}

.pc-switch__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
}

.pc-switch input:checked + .pc-switch__slider {
  background: #07c160;
}

.pc-switch input:checked + .pc-switch__slider:before {
  transform: translateX(18px);
}

.pc-my-langs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pc-border);
}

.pc-my-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 48px;
  color: var(--pc-text);
  text-decoration: none !important;
  font-size: 14px;
  border-top: 1px solid var(--pc-border);
}

.pc-my-langs .pc-my-lang:first-child {
  border-top: none;
}

.pc-my-lang.is-active {
  font-weight: 600;
}

.pc-my-lang svg {
  width: 16px;
  height: 16px;
}

/* Collapsed */
body.pc-sidebar-collapsed .pc-sidebar {
  width: var(--pc-sidebar-collapsed-w);
}

body.pc-sidebar-collapsed .pc-logo__text,
body.pc-sidebar-collapsed .pc-nav-item__label,
body.pc-sidebar-collapsed .pc-nav-section,
body.pc-sidebar-collapsed .pc-nav-hint,
body.pc-sidebar-collapsed .pc-account__meta {
  opacity: 0;
  width: 0;
  pointer-events: none;
}

body.pc-sidebar-collapsed .pc-sidebar__head {
  justify-content: center;
  padding-left: 8px;
  padding-right: 8px;
}

body.pc-sidebar-collapsed .pc-logo {
  display: none;
}

body.pc-sidebar-collapsed .pc-nav-item {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* 收起侧栏时气泡回到图标右上角，避免跟着文字一起隐藏 */
body.pc-sidebar-collapsed .pc-nav-item[data-nav="chat"] .pc-nav-item__badge {
  position: absolute;
  top: 2px;
  right: 6px;
  margin-left: 0;
  opacity: 1;
  width: auto;
  pointer-events: none;
}

body.pc-sidebar-collapsed .pc-account {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

body.pc-sidebar-collapsed .pc-account-menu {
  left: calc(100% + 8px);
  right: auto;
  bottom: 10px;
  width: 200px;
}

/* Mobile: WeChat-style bottom tabs, hide left sidebar */
@media (max-width: 768px) {
  body.pc-body {
    overflow: auto;
  }

  .pc-app {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    display: block;
  }

  .pc-sidebar {
    display: none !important;
  }

  .pc-main {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .pc-main__scroll {
    height: auto;
    overflow: visible;
    padding-bottom: calc(var(--pc-tabbar-h) + var(--pc-safe-bottom) + 12px);
  }

  .pc-panel {
    padding: 16px 14px 24px;
    max-width: none;
  }

  .pc-panel--center {
    min-height: calc(100vh - var(--pc-tabbar-h) - var(--pc-safe-bottom));
    min-height: calc(100dvh - var(--pc-tabbar-h) - var(--pc-safe-bottom));
    padding-top: 10vh;
    padding-bottom: 24px;
    justify-content: flex-start;
  }

  .pc-tabbar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--pc-border);
    padding-bottom: var(--pc-safe-bottom);
  }

  .pc-tabbar__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: var(--pc-tabbar-h);
    max-width: 560px;
    margin: 0 auto;
  }

  .pc-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #8a8a8a;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
  }

  .pc-tab__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .pc-tab__icon svg {
    width: 22px;
    height: 22px;
  }

  .pc-tab__badge {
    position: absolute;
    top: -5px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: #fa5151;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
    z-index: 2;
  }

  .pc-tab__badge.hidden {
    display: none !important;
  }

  .pc-nav-badge,
  .tab-unread-badge {
    display: inline-block;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    margin-left: 6px;
    border-radius: 8px;
    background: #fa5151;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
  }

  .pc-tab__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
  }

  .pc-tab__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pc-tab.is-active {
    color: var(--pc-accent);
  }

  .pc-tab.is-active .pc-tab__avatar {
    box-shadow: 0 0 0 1.5px var(--pc-accent);
  }
}
