#state_container {
  overflow: visible;
  margin: 0;
  padding: 0;
  /* position: relative; */
  width: 100%;
  height: 100%;
  padding: 10px 0 10px 0;
}

ol,
ul {
  list-style: none;
}

.superBold {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  display: block;
  text-transform: uppercase;
  margin: 15px 0 15px 0;
  color: black;
  text-decoration: none;
}

/* ----- Statistics ----- */
.statistics-box {
  display: flex;
  padding: 1.15rem 0.625rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 0.0625rem solid #d4d4d4;
  border-radius: 0.3125rem;
}

.statistics-box .statistics-item {
  text-align: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.625rem 0;
}

.statistics-box .statistics-item .statistics-value {
  display: block;
  font-weight: 700;
  line-height: 1em;
  color: #343434;
  font-size: 1.5625rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.78125rem;
}

.statistics-box .statistics-item .statistics-title {
  margin: 0;
  font-size: 1.125rem;
  color: #717171;
  line-height: 1em;
  letter-spacing: 1px;
  font-family: "Source Sans Pro", sans-serif;
}

.statistics-box .statistics-item:not(:last-of-type) {
  border-right: 1px solid #d4d4d4;
}

/* ----- Statistics ----- */

/* ----- 细胞图标 ----- */
.image-world {
  position: relative;
}

.cell-container {
  position: absolute;
  cursor: pointer;
  font-size: 1rem;
  font-family: ArialMT, Arial;
  font-weight: 500;
  white-space: nowrap;
}

.cell-image {
  cursor: pointer;
  opacity: 1;
  width: 2.5rem;
}

.btn-group-vertical {
  margin-top: -1.5rem;
}

/* ----- 细胞图标 ----- */

/* ----- 边框 ----- */
.inside {
  /* margin: 0 10px 10px 10px; */
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  /* position: relative; */
}

.thumbnail {
  transition: 0.5s ease;
  /* width: 10.875rem; */
  width: 100%;
  height: 16.625rem;
  margin: 0.5rem 0 0.25rem 0.25rem;
  padding: 0.25rem;
}

.selected {
  box-shadow: 0 0 0 0.2rem #000000;
  transition: 0.5s ease;
}

.thumbnail:hover {
  box-shadow: 0 0 0 0.2rem #000000;
  transition: 0.5s ease;
}

.thumbnail * {
  pointer-events: none;
}

/* ----- 边框 ----- */

.stat {
  font-size: 1rem;
}

hr {
  margin: 1.8rem 0 1.8rem 0;
}

.stat_row {
  margin-bottom: 1.2rem;
}

/*--------------------------------------------------------------
#' 统计数字
--------------------------------------------------------------*/
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.stats-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.stat-card {
  text-align: center;
  padding: 14.5px;
  /* 调整这样使左右对齐 */
  border-radius: 8px;
  transition: all 0.2s;
  flex-direction: column;
  justify-content: center;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  min-height: 80px;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.number {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.highlight {
  border: 2px solid #D1D5DB;
  background: #F3F4F6;
  color: #131212;
}

.highlight .number {
  color: #1F2937;
}

.cancer {
  color: var(--color-cancer) !important;
  border: 1px solid rgba(22, 94, 131, 0.4);
  background: rgba(22, 94, 131, 0.05);
  box-shadow: 0 1px 2px rgba(22, 94, 131, 0.1);
}

.immune {
  color: var(--color-immune) !important;
  border: 1px solid rgba(0, 123, 67, 0.4);
  background: rgba(0, 123, 67, 0.05);
  box-shadow: 0 1px 2px rgba(0, 123, 67, 0.1);
}

.stromal {
  color: var(--color-stroma) !important;
  border: 1px solid rgba(187, 85, 72, 0.4);
  background: rgba(187, 85, 72, 0.05);
  box-shadow: 0 1px 2px rgba(187, 85, 72, 0.1);
}

.general {
  color: #6b7280 !important;
  border: 1px solid rgba(107, 114, 128, 0.4);
  background: rgba(107, 114, 128, 0.03);
  box-shadow: 0 1px 2px rgba(107, 114, 128, 0.08);
}

.cancer:hover,
.immune:hover,
.stromal:hover,
.general:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.label {
  font-size: 0.9rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .stats-row {
    flex-wrap: wrap;
  }

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

.reference-list {
  list-style-type: disc;
  padding-left: 20px;
}

.btn-group-vertical {
  margin-top: -1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 70%;
  padding: 2px;
  /* 减小内边距从8px到4px */
  box-sizing: border-box;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  gap: 5px;
}

/* 滚动条样式保持不变 */
.btn-group-vertical::-webkit-scrollbar {
  width: 6px;
}

.btn-group-vertical::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

.btn-group-vertical::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* 按钮样式 */
.cell-button {
  display: flex !important;
  align-items: center !important;
  padding: 2px 8px !important;
  /* 减小垂直内边距，保持水平内边距 */
  margin-bottom: 0px !important;
  /* 减小按钮间距从4px到2px */
  transition: all 0.2s ease !important;
  /* border-radius: 6px !important; */
  min-height: 40px;
  height: auto;
}

/* 其他样式保持不变 */
.cell-image {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: transform 0.2s ease;
  margin-right: 8px;
}

/* 悬浮效果保持不变 */
.cell-button:hover {
  background-color: #f8f9fa !important;
  transform: translateX(2px);
}

.cell-button:hover .cell-image {
  transform: scale(1.1);
}

/* 激活状态 */
.cell-button.active {
  background-color: #e7f1ff !important;
  border: 1px solid #0d6efd !important;
  color: #0d6efd !important;
}

/* 文字样式 */
.cell-button span {
  font-size: 1rem;
  color: #2c3e50;
  margin-left: 4px;
}

.cell-button.active span {
  color: #0d6efd;
}

@media (max-width: 768px) {
  .cell-button {
    padding: 6px !important;
  }

  .cell-image {
    width: 2rem;
    height: 2rem;
  }
}

ul.circle-list {
  list-style-type: circle;
  margin-top: 8px;
}

.subfeature-title {
  font-weight: bold;
}

/*# sourceMappingURL=index.min.css.map*/