:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --line: #e2ebf5;
  --text: #143457;
  --muted: #6e7f9a;
  --primary: #134074;
  --primary-2: #2f6fb2;
  --soft: #edf3fa;
  --major: #a8456b;
  --major-bg: rgba(168, 69, 107, 0.14);
  --moderate: #8d6f11;
  --moderate-bg: rgba(221, 200, 113, 0.18);
  --minor: #3f6c49;
  --minor-bg: rgba(131, 167, 141, 0.18);
  --unknown: #68707c;
  --unknown-bg: rgba(182, 178, 178, 0.2);
  --shadow: 0 16px 36px rgba(19, 64, 116, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
}

#app {
  min-height: 100vh;
}

.mobile-shell {
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  padding-bottom: 88px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(19, 64, 116, 0.18);
}

.back-btn,
.topbar-spacer {
  width: 38px;
  flex: 0 0 38px;
}

.back-btn {
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
}

.topbar-meta {
  min-width: 0;
  flex: 1;
}

.topbar-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.topbar-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.page {
  padding: 18px 14px 24px;
}

.stack {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-hero {
  background:
    radial-gradient(circle at top right, rgba(102, 164, 225, 0.18), transparent 30%),
    linear-gradient(180deg, #1f5b97, #134074);
  color: #fff;
}

.row {
  display: flex;
  align-items: center;
}

.row-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px;
}

.hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-text,
.muted,
.body-copy,
.list-copy {
  line-height: 1.75;
}

.hero-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.page-title,
.section-title {
  font-weight: 800;
  line-height: 1.35;
}

.page-title {
  font-size: 24px;
}

.section-title {
  font-size: 18px;
}

.section-hint,
.muted {
  color: var(--muted);
  font-size: 13px;
}

.body-copy,
.list-copy {
  color: #465771;
  font-size: 14px;
}

.input,
.select {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7fbff;
  color: var(--text);
  border-radius: 16px;
  min-height: 48px;
  padding: 0 14px;
  outline: none;
}

.textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

.controls,
.grid-2,
.grid-3,
.button-row,
.chip-row,
.stats-grid,
.summary-grid,
.meta-grid {
  display: grid;
  gap: 12px;
}

.grid-2,
.summary-grid,
.meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  border-radius: 18px;
  padding: 16px 14px;
  background: #f5f9ff;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #10325d;
}

.stat-lines {
  display: block;
  margin-top: 8px;
  color: #71829f;
  font-size: 13px;
  line-height: 1.55;
}

.highlight-card,
.shortcut-card,
.list-card,
.subcard {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.highlight-tag,
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
}

.highlight-tag,
.pill {
  padding: 6px 12px;
  background: var(--soft);
  color: #35577f;
  font-size: 12px;
  font-weight: 700;
}

.shortcut-card h3,
.highlight-card h3,
.list-card h3,
.subcard h3 {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(19, 64, 116, 0.18);
}

.secondary-btn {
  background: #e8eef6;
  color: var(--primary);
}

.ghost-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid #c5d4e8;
}

.chip-row {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.badge {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}

.badge-major {
  background: var(--major-bg);
  color: var(--major);
}

.badge-moderate {
  background: var(--moderate-bg);
  color: var(--moderate);
}

.badge-minor {
  background: var(--minor-bg);
  color: var(--minor);
}

.badge-unknown {
  background: var(--unknown-bg);
  color: var(--unknown);
}

.pair-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.actions-col {
  display: grid;
  gap: 10px;
}

.actions-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tab-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.tab-pill {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef4fb;
  color: #49698e;
  font-weight: 700;
}

.tab-pill.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(430px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  backdrop-filter: blur(10px);
}

.bottom-link {
  display: grid;
  gap: 4px;
  justify-items: center;
  color: #6c768c;
  font-size: 12px;
  padding: 6px 0;
}

.bottom-link.active {
  color: var(--primary);
  font-weight: 700;
}

.suggestion-list,
.contact-list,
.candidate-grid,
.reference-list,
.insight-list,
.metabolism-list,
.pair-list,
.item-list {
  display: grid;
  gap: 12px;
}

.suggestion-item,
.contact-item,
.candidate-item,
.reference-item,
.insight-item,
.metabolism-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: #37577f;
  font-size: 12px;
}

.selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #eaf2fd;
  color: #154578;
  font-weight: 700;
}

.selected-chip button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(19, 64, 116, 0.12);
  color: #154578;
  padding: 0;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 18px 12px;
  line-height: 1.7;
}

.load-more {
  margin-top: 6px;
}

.detail-block + .detail-block {
  margin-top: 16px;
}

.detail-value {
  margin-top: 8px;
}

.toggle-link {
  margin-top: 8px;
  color: var(--primary-2);
  font-weight: 700;
  background: none;
  padding: 0;
}

.graph-stage {
  position: relative;
  height: 320px;
  margin-top: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(250, 252, 255, 0.96), rgba(240, 246, 252, 0.98)),
    linear-gradient(180deg, #f7fbff, #eef4fb);
  border: 1px solid var(--line);
  overflow: hidden;
}

.graph-edge {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  opacity: 0.72;
  transform-origin: 0 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.48);
}

.graph-label {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.graph-node {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(19, 64, 116, 0.15);
  color: #13355b;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  padding: 8px;
}

.metabolism-track {
  height: 12px;
  border-radius: 999px;
  background: #e7eef7;
  overflow: hidden;
}

.metabolism-fill-a,
.metabolism-fill-b {
  height: 100%;
  border-radius: 999px;
}

.metabolism-fill-a {
  background: linear-gradient(90deg, #4c6dcc, #6c8aea);
}

.metabolism-fill-b {
  background: linear-gradient(90deg, #7cbf63, #9ad67a);
}

.metabolism-line {
  display: grid;
  grid-template-columns: 88px 1fr 56px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 58px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.email-link {
  color: var(--primary-2);
  word-break: break-all;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 431px) {
  body {
    padding: 16px 0;
  }

  .mobile-shell {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(19, 64, 116, 0.14);
  }
}

/* Mini program style overrides */
body {
  background: #f4f7fb;
  color: #1f2a44;
}

.mobile-shell {
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f4f7fb;
  padding-bottom: 84px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  background: #134074;
  color: #fff;
  box-shadow: none;
}

.topbar-spacer,
.back-btn {
  width: 40px;
  height: 40px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  padding: 0;
}

.topbar-meta {
  min-width: 0;
  text-align: center;
}

.topbar-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.topbar-subtitle {
  display: none;
}

.page {
  padding: 18px 12px calc(28px + env(safe-area-inset-bottom));
}

.stack {
  display: grid;
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 16px;
  box-shadow: 0 7px 17px rgba(19, 64, 116, 0.075);
}

.page-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.28;
  color: #102544;
}

.section-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.38;
  color: #102544;
}

.section-hint,
.muted {
  color: #7182a3;
  font-size: 13px;
  line-height: 1.72;
}

.body-copy,
.list-copy,
.hero-text {
  line-height: 1.82;
  color: #44536d;
  word-break: break-word;
}

.pair-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
  color: #143457;
}

.input,
.select {
  min-height: 44px;
  border-radius: 11px;
  padding: 0 13px;
  border: 1px solid #e0e8f2;
  background: #f3f6fb;
  color: #143457;
}

.input::placeholder {
  color: #8b9ab2;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 16px;
}

.primary-btn {
  background: linear-gradient(135deg, #134074, #3d7dbc);
  color: #fff;
}

.secondary-btn {
  background: #e8eef6;
  color: #134074;
}

.ghost-btn {
  background: #fff;
  color: #134074;
  border: 1px solid #c5d4e8;
}

.badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e2ebf5;
  backdrop-filter: blur(12px);
}

.bottom-link {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #6c768c;
  font-size: 12px;
  padding: 4px 0;
}

.bottom-link.active {
  color: #134074;
  font-weight: 700;
}

.home-page {
  background:
    radial-gradient(circle at top right, rgba(94, 168, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #f4f7fb 36%, #f4f7fb 100%);
}

.card-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 180, 92, 0.22), transparent 28%),
    linear-gradient(145deg, #0d2f57 0%, #134074 42%, #2c6ca8 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-banner {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-shell {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  box-shadow: 0 7px 15px rgba(5, 18, 38, 0.24), inset 0 0 0 1px rgba(19, 64, 116, 0.08);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.hero-title {
  flex: 1;
  min-width: 0;
  font-size: 17px;
  line-height: 1.52;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(4, 14, 31, 0.28);
}

.hero-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
}

.hero-btn {
  width: 100%;
  min-height: 44px;
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  color: #13315c;
  box-shadow: 0 6px 12px rgba(8, 22, 44, 0.2);
}

.hero-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  flex: 1;
  min-width: 0;
  min-height: 42px;
}

.hero-actions .secondary-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #13315c;
}

.hero-actions .ghost-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.stats-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-card,
.summary-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 17px rgba(19, 64, 116, 0.05);
}

.summary-card {
  background: #f3f7fc;
  text-align: center;
}

.stat-topline {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1c62a5, #7da8d1);
}

.stat-value,
.summary-value {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 700;
  color: #134074;
  line-height: 1;
}

.stat-lines,
.summary-label {
  display: block;
  margin-top: 10px;
  color: #64758f;
  line-height: 1.55;
  font-size: 13px;
}

.highlight-card,
.guide-card,
.related-card,
.result-card {
  border: 1px solid #e8eff8;
}

.highlight-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.highlight-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
  color: #13315c;
  margin: 0;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef4fb;
  color: #2b6297;
  font-size: 12px;
  font-weight: 700;
}

.summary-panel {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.selected-row {
  margin-top: 10px;
}

.selected-label,
.pill,
.count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: #214d80;
  font-size: 12px;
  font-weight: 700;
}

.selected-text {
  display: block;
  margin-top: 10px;
  line-height: 1.7;
}

.graph-card {
  background:
    radial-gradient(circle at top right, rgba(100, 165, 229, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.graph-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.graph-stage {
  position: relative;
  margin-top: 16px;
  width: 100%;
  height: 320px;
  border-radius: 15px;
  background:
    radial-gradient(circle at center, rgba(250, 252, 255, 0.96), rgba(240, 246, 252, 0.98)),
    linear-gradient(180deg, #f7fbff, #eef4fb);
  border: 1px solid #e3edf8;
  overflow: hidden;
}

.graph-edge {
  height: 4px;
  border-radius: 999px;
  opacity: 0.72;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.graph-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 14px rgba(19, 64, 116, 0.15);
  padding: 8px;
}

.graph-label {
  box-shadow: 0 4px 10px rgba(19, 64, 116, 0.08);
}

.actions-col,
.pair-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.actions-top,
.pair-actions-top,
.related-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pair-btn,
.big-btn,
.related-btn {
  min-height: 44px;
}

.pair-btn-main,
.related-btn-wide {
  width: 100%;
}

.checker-hero {
  background: linear-gradient(160deg, #fffdf7, #ffffff 28%, #eef5fb 100%);
}

.selected-card,
.fact-card,
.filter-card {
  margin-top: 12px;
}

.tag-grid,
.guide-list,
.result-list,
.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drug-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  background: #f3f7fc;
}

.drug-tag-name,
.guide-title,
.related-title {
  display: block;
  font-weight: 700;
  line-height: 1.42;
  color: #143457;
}

.drug-tag-remove {
  color: #a8456b;
  font-weight: 600;
}

.note-text,
.guide-body,
.fact-line {
  color: #5d6d88;
  line-height: 1.82;
}

.fact-line {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f1f4f8;
}

.fact-line:last-child {
  border-bottom: none;
}

.meta-subtitle {
  display: block;
  margin-top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.info-item {
  padding: 14px;
  border-radius: 12px;
  background: #f3f7fc;
}

.info-label,
.chem-label {
  display: block;
  color: #7182a3;
  font-size: 12px;
  line-height: 1.6;
}

.info-value {
  display: block;
  margin-top: 8px;
  color: #13315c;
  font-weight: 700;
  word-break: break-word;
}

.chem-block,
.detail-block {
  margin-top: 14px;
}

.detail-line,
.detail-value,
.mono-line {
  display: block;
  margin-top: 8px;
  color: #44536d;
  line-height: 1.82;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.toggle-link {
  display: inline-block;
  margin-top: 8px;
  color: #2f6fb2;
  font-size: 13px;
  font-weight: 700;
}

.count-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tab-strip,
.tab-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.tab-pill,
.tab-item {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef4fb;
  color: #49698e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tab-pill.active,
.tab-item-active {
  background: linear-gradient(135deg, #134074, #3d7dbc);
  color: #fff;
}

.reference-item,
.insight-item,
.candidate-item,
.metabolism-item,
.suggestion-item {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #edf1f7;
  background: #fff;
}

.contact-item {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #edf1f7;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}
