/* ======================================================
   物种详情页 v2 — 专用样式
   前缀：.spd-
   ====================================================== */


.species-detail-main {
  margin: 40px 0;
}

/* -------------------------------------------------------
   基础 / 容器
------------------------------------------------------- */
body.spd-page {
  background: #f4f7f3;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: rgba(0, 0, 0, 0.85);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* -------------------------------------------------------
   面包屑 .spd-breadcrumb
------------------------------------------------------- */
.spd-breadcrumb {
  padding: 12px 0;
  font-size: 12px;
  color: #646a73;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spd-breadcrumb a {
  color: #646a73;
  text-decoration: none;
  transition: color 0.2s;
}

.spd-breadcrumb a:hover {
  color: #186338;
}

.spd-breadcrumb__sep {
  color: #c8cdd3;
  font-size: 12px;
}

.spd-breadcrumb__current {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}

/* -------------------------------------------------------
   概览区 .spd-overview
------------------------------------------------------- */
.spd-overview {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}

/* 主信息卡 .spd-hero-card */
.spd-hero-card {
  border-radius: 4px;
  background: #FFFFFF;
  box-sizing: border-box;
  border-width: 3px 0px 0px 0px;
  border-style: solid;
  border-color: #186338;
  padding: 20px 17px;
}

.spd-hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  border-radius: 4px;
  background: #F6F6F6;
  padding: 15px;
}

.spd-hero-card__title-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.spd-hero-card__name {
  font-size: 23px;
  font-weight: 700;
  color: #1f2329;
  line-height: 1.2;
  letter-spacing: 2px;
}

.spd-hero-card__pinyin {
  font-size: 14px;
  color: #646a73;
  font-style: italic;
}

/* 收藏按钮 .spd-fav */
.spd-fav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 0;
  height: 30px;
  border-radius: 100px;
  background: #E0EAE8;
  color: #186338;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.spd-fav:hover {
  background: rgba(24, 99, 56, 0.06);
}

.spd-fav::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23186338' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
  flex-shrink: 0;
}

.spd-fav.is-active {
  /* background: linear-gradient(135deg, #186338, #2da44e); */
  border-color: transparent;
  color: #186338;
}

.spd-fav.is-active::before {
  background-color: #186338;
  background-size: 45%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
}

/* 元数据网格 */
.spd-hero-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  border-top: 1px solid #edf0f2;
  padding-top: 20px;
}

.spd-meta-item {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.spd-meta-item--full {
  grid-column: 1 / -1;
}

.spd-meta-item__label {
  flex-shrink: 0;
  font-size: 14px;
  padding-left: 15px;
  background: url(../assets/images/xiangqing/detail-section-bullet-diamond@2x.png) no-repeat left 6px / auto 10px;
}

.spd-meta-item__value {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
  line-height: 1.5;
}

.spd-meta-item__source {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

/* 分类学标签列 */
.spd-taxon-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px 5px;
  flex: 1;
  flex-shrink: 0;
}

.spd-taxon-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0px 2px;
  /* background: #edf2e0; */
  border-radius: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.spd-taxon-tag__rank {
  color: #646a73;
}

/* 基础信息卡 .spd-info-card */
.spd-info-card {
  background: #fff;
  border-radius: 12px;
  border-top: 3px solid #186338;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spd-info-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2329;
  margin-bottom: 4px;
}

.spd-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spd-info-row__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.spd-info-row__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spd-info-row__label {
  font-size: 14px;
  color: #646a73;
  display: flex;
  width: 100%;
  background: linear-gradient(90deg, rgba(135, 169, 47, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  height: 26px;
  align-items: center;
  padding: 10px 5px;
}

.spd-info-row__value {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 9px;
  padding-left: 25px;
}

/* -------------------------------------------------------
   主内容区 .spd-body
------------------------------------------------------- */
.spd-body {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 16px;
  align-items: start;
  min-width: 0; /* 允许 grid 在容器内收缩，避免总宽溢出 1200px */
}

.spd-main-col {
  min-width: 0; /* 关键：覆盖 grid 子项默认 min-width:auto，否则第一列会按内容撑开导致整体溢出 */
}

/* -------------------------------------------------------
   Tab 导航 .spd-tabs
------------------------------------------------------- */
.spd-tabs {
  position: sticky;
  top: 100px;
  z-index: 100;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.spd-tab {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  text-decoration: none;
  color: #646a73;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  background: #E4EBD6;
  border-radius: 4px;
}

.spd-tab:hover {
  color: #186338;
  background: rgba(24, 99, 56, 0.04);
}

.spd-tab.is-active {
  background: #186338;
  font-weight: 600;
  color: #FFFFFF;
}

.spd-tab__icon {
  width: 22px;
  height: 22px;
  display: block;
  margin-left: 5px;
}

.spd-tab__icon--default {
  display: block;
}

.spd-tab__icon--active {
  display: none;
}

.spd-tab.is-active .spd-tab__icon--default {
  display: none;
}

.spd-tab.is-active .spd-tab__icon--active {
  display: block;
}



/* -------------------------------------------------------
   Section .spd-section
------------------------------------------------------- */
.spd-section {
  padding-bottom: 28px;
  background: #fff;
  padding-top: 10px;
}

/* Section 标题徽章 .spd-badge */
.spd-badge {
  display: block;
  align-items: center;
  gap: 8px;
  background: #186338;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  width: 125px;
  height: 44px;
  text-align: center;
  line-height: 34px;
  transform: translate(-10px, 24px);
  background: url(../assets/images/xiangqing/detail-section-pill-bg@2x.png) no-repeat center / 100% 100%;
}


/* -------------------------------------------------------
   Block .spd-block
------------------------------------------------------- */
.spd-block {
  border-radius: 10px;
  padding: 20px 24px;
  padding-bottom: 0px;
}

.spd-block-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2329;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.spd-block-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url(../assets/images/xiangqing/detail-process-arrow@2x.png) no-repeat center / 12px 12px;
}

.spd-summary {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
  margin-bottom: 14px;
}

.spd-summary strong{
  color: #186338;
}

/* 数据来源注 .spd-note */
.spd-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8f959e;
  margin-top: 8px;
  padding-top: 12px;
  /* border-top: 1px dashed #e8ecef; */
}

.spd-note img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   生境区块 .spd-block--habitat（按设计图）
------------------------------------------------------- */
.spd-block--habitat .spd-habitat-title {
  font-size: 16px;
  font-weight: 700;
  color: #186338;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spd-habitat-title__icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #186338;
  flex-shrink: 0;
  vertical-align: middle;
}

.spd-habitat-section {
  margin-bottom: 20px;
}

.spd-habitat-section:last-of-type {
  margin-bottom: 0;
}

.spd-habitat-section__title {
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  min-width: 140px;
  height: 25px;
  background: rgba(135, 169, 47, 0.15);
  border-radius: 0 10px 0 0;
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  color: #186338;
  line-height: 25px;
}

.spd-habitat-section__subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #1f2329;
  margin: 10px 0 6px 0;
}

.spd-habitat-section__text {
  font-size: 12px;
  color: #646a73;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.spd-habitat-kw {
  font-weight: 700;
  color: #186338;
}

.spd-block--habitat .spd-table-wrap--habitat {
  margin-top: 12px;
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.spd-block--habitat .spd-table--habitat thead tr {
  /* background: rgba(135, 169, 47, 0.15); */
}

.spd-block--habitat .spd-table--habitat th {
  background: rgba(135, 169, 47, 0.15);
  border-bottom: 1px solid #d0ddd2;
  color: #1f2329;
}

.spd-block--habitat .spd-table--habitat td {
  border-bottom: 1px solid #eee;
}

.spd-block--habitat .spd-table--habitat tfoot tr td {
  background: rgba(24, 99, 56, 0.05);
  /* border-top: 1px solid #d0ddd2; */
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

/* -------------------------------------------------------
   药用情况（设计图：双列浅灰框 + 采收 pill）
------------------------------------------------------- */
.spd-medicinal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.spd-medicinal-col {
  min-width: 0;
}

.spd-medicinal-box {
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 0;
}

.spd-medicinal-pill {
  display: inline-block;
  background: rgba(135, 169, 47, 0.15);
  ;
  color: #186338;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 10px 0 0;
  margin-bottom: 12px;
}

.spd-medicinal-box__text {
  font-size: 12px;
  color: #333;
  line-height: 1.75;
  margin: 0 0 12px 0;
}

.spd-medicinal-kw {
  color: #186338;
  font-weight: 700;
}

.spd-note--inbox {
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}

/* 采收时间与加工方法 - 设计图 */
.spd-harvest-intro-list {
  font-size: 12px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 18px 0;
  padding-left: 20px;
  list-style: disc;
}

.spd-harvest-intro-list li {
  margin-bottom: 6px;
}

.spd-harvest-cards-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 4px;
}

.spd-harvest-card-v2 {
  border-radius: 4px;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E7E7E7;
  border-left: 4px solid #186338;
  padding: 16px 18px;
}

.spd-harvest-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(135, 169, 47, 0.15);
  ;
  color: #186338;
  font-size: 12px;
  font-weight: 700;
  padding: 0px 40px 0px 15px;
  border-radius: 100px;
  margin-bottom: 14px;
  justify-content: center;
}

.spd-harvest-pill__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.spd-harvest-pill__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.spd-harvest-pill__text {}

.spd-harvest-card-v2__list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  font-size: 12px;
  color: #333;
  line-height: 1.7;
}

.spd-harvest-card-v2__list li {
  margin-bottom: 6px;
}

.spd-harvest-label {
  color: #186338;
  font-weight: 700;
}

.spd-block--harvest .spd-note {
  margin-top: 5px;
}

/* -------------------------------------------------------
   地图 .spd-map
------------------------------------------------------- */
.spd-map {
  position: relative;
  width: 100%;
  height: 420px;
  background: #f0f4f2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.spd-map__surface {
  position: relative;
  width: 100%;
  height: 100%;
}

.spd-map__chart {
  width: 100%;
  height: 100%;
  cursor: grab;
}

.spd-map__chart:active {
  cursor: grabbing;
}

/* 重置视角按钮 */
.spd-map__reset {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  color: #646a73;
  font-size: 12px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.spd-map__reset:hover {
  background: #fff;
  color: #186338;
  border-color: #186338;
}

/* 地图弹窗 .spd-map-popup */
.spd-map-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.spd-map-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, calc(-50% - 8px));
}

.spd-map-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 5px 15px;
  color: #fff;

  border-radius: 4px 4px 0px 0px;
  background: #186338;
}

.spd-map-popup__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.spd-map-popup__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spd-map-popup__close:hover {
  opacity: 1;
}

.spd-map-popup__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 15px;
}

.spd-map-popup__list li,
.spd-map-popup__item {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  padding-left: 20px;
  background: url(../assets/images/xiangqing/detail-process-arrow@2x.png) no-repeat left 4px / 12px 12px;
}

.spd-map-popup__list li a,
.spd-map-popup__link {
  color: #186338;
  text-decoration: none;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.spd-map-popup__link:hover {
  text-decoration: underline;
}

.spd-map-popup__link img {
  width: 12px;
  height: 12px;
}

/* 地图统计 */
.spd-map-stats {
  display: flex;
  gap: 24px;
  padding: 12px 0;
}

.spd-map-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spd-map-stat__num {
  font-size: 22px;
  font-weight: 700;
  color: #186338;
}

.spd-map-stat__label {
  font-size: 12px;
  color: #646a73;
}

/* -------------------------------------------------------
   形态卡片 .spd-feat-grid / .spd-feat-card
------------------------------------------------------- */
.spd-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.spd-feat-card {
  background: #f9fafb;
  border: 1px solid #e8ecef;
  border-radius: 4px;
}

.spd-feat-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #186338;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px 4px 0px 0px;
  background: rgba(135, 169, 47, 0.15);
  height: 28px;
  line-height: 28px;
  text-align: center;
  justify-content: center;
}

.spd-feat-card__title img {
  width: 10px;
  height: 10px;
  display: none;
}

.spd-feat-card__subtitle {
  font-size: 12px;
  color: #646a73;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 15px;
  font-weight: bold;
  margin-top: 10px;
}

.spd-feat-card__subtitle img {
  width: 16px;
  height: 16px;
}

.spd-feat-card__text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  padding: 0px 15px 0 35px;
  margin-bottom: 30px;
}

/* -------------------------------------------------------
   highlight 列表 .spd-hl-list / .spd-hl-item
------------------------------------------------------- */
.spd-hl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.spd-hl-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f0f7f3, #fafffe);
  border-radius: 4px;
  border-left: 3px solid #186338;
}

.spd-hl-item__num {
  font-size: 18px;
  font-weight: 700;
  color: #186338;
  flex-shrink: 0;
  min-width: 24px;
}

.spd-hl-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spd-hl-item__title {
  font-size: 12px;
  font-weight: 600;
  color: #1f2329;
}

.spd-hl-item__desc {
  font-size: 12px;
  color: #646a73;
  line-height: 1.6;
}

/* -------------------------------------------------------
   表格 .spd-table-wrap / .spd-table
------------------------------------------------------- */
.spd-table-wrap {
  overflow-x: auto;
  margin-bottom: 4px;
  border-radius: 4px;
  border: 1px solid #e8ecef;
}

.spd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.spd-table thead tr {
  background: #edf2e0;
}

.spd-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: #1f2329;
  font-size: 12px;
  border-bottom: 1px solid #d9e5c8;
  white-space: nowrap;
}

.spd-table td {
  padding: 5px 14px;
  color: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid #f0f2f4;
  line-height: 1.5;
}

.spd-table tbody tr:last-child td {
  border-bottom: none;
}

.spd-table tbody tr:hover td {
  background: #f9fafb;
}

.spd-table tfoot tr td {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  background: #f7f9f7;
  border-top: 1px solid #d9e5c8;
  border-bottom: none;
}

/* 濒危现状-遗传因素表格：表头浅绿、深灰字，内容白底黑字 */
.spd-block--genetic .spd-table-wrap {
  margin-top: 12px;
}

.spd-table--genetic thead tr {
  background: rgba(135, 169, 47, 0.15);
  ;
}

.spd-table--genetic th {
  color: #4a5568;
  font-weight: 600;
  font-size: 12px;
}

.spd-table--genetic td {
  color: #1f2329;
  background: #fff;
  padding: 10px 14px;
}

/* -------------------------------------------------------
   信息卡 .spd-icard / .spd-icard-tag
------------------------------------------------------- */
.spd-icard {
  background: #fff;
  border-radius: 4px;
  border-left: 3px solid #186338;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 16px;
}

.spd-icard__label {
  font-size: 12px;
  color: #646a73;
  margin-bottom: 6px;
}

.spd-icard__value {
  font-size: 14px;
  font-weight: 600;
  color: #1f2329;
  line-height: 1.6;
}

.spd-icard__desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 6px;
  line-height: 1.7;
}

.spd-icard-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.spd-icard-tag--green {
  background: #e0f0e8;
  color: #186338;
}

.spd-icard-tag--orange {
  background: #fff3e0;
  color: #e6820a;
}

.spd-icard-tag--red {
  background: #fde8e8;
  color: #c93b3b;
}

/* -------------------------------------------------------
   两列并排 .spd-two-col
------------------------------------------------------- */
.spd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.spd-two-col--3-2 {
  grid-template-columns: 3fr 2fr;
}

/* -------------------------------------------------------
   致危因素区 .spd-threat（设计图：左表右图+图例在饼图左侧）
------------------------------------------------------- */
.spd-threat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.spd-threat__table-wrap {
  min-width: 0;
}

.spd-threat__chart-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.spd-table-wrap--threat {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.spd-block--threat .spd-table--threat thead tr,
.spd-block--threat .spd-table--threat th {
  background: rgba(135, 169, 47, 0.15);
  ;
  border-bottom: 1px solid #d0ddd2;
  color: #1f2329;
}

.spd-block--threat .spd-table--threat td {
  border-bottom: 1px solid #eee;
}

.spd-chart-legend--threat {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spd-chart-legend--threat .spd-chart-legend__dot {
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.spd-pie-chart {
  width: 180px;
  height: 180px;
}

.spd-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.spd-chart-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.spd-chart-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   采收卡 .spd-harvest-grid / .spd-harvest-card
------------------------------------------------------- */
.spd-harvest-intro {
  margin-bottom: 16px;
}

.spd-harvest-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 8px;
  line-height: 1.6;
}

.spd-harvest-intro__item::before {
  content: "·";
  color: #186338;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.spd-harvest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.spd-harvest-card {
  background: #f9fafb;
  border: 1px solid #e8ecef;
  border-radius: 10px;
  padding: 16px;
}

.spd-harvest-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.spd-harvest-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.spd-harvest-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2329;
}

.spd-harvest-card__subtitle {
  font-size: 12px;
  color: #646a73;
}

.spd-harvest-card__method {
  font-size: 12px;
  font-weight: 500;
  color: #186338;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spd-harvest-card__reason {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.6;
}

/* -------------------------------------------------------
   功效对比 .spd-effi-grid / .spd-effi-card（设计图：双列+浅绿 pill+虚线分隔）
------------------------------------------------------- */
.spd-effi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 12px;
  align-items: start;
  margin-top: 40px;
}

.spd-effi-card {
  background: #f9fafb;
  border: 1px solid #e8ecef;
  border-radius: 10px;
  padding: 16px;
}

.spd-effi-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2329;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8ecef;
}

/* 设计图：传统功效和现代药理 */
.spd-block--effi .spd-effi-col {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  padding-top: 28px;
  border: 1px solid #eee;
  position: relative;
}

.spd-effi-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  display: block;
  background: #EDF2E0;
  color: #186338;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-align: center;
  min-width: 220px;
}

.spd-checklist--effi {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spd-checklist--effi .spd-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #333;
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.spd-checklist--effi .spd-checklist__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spd-checklist--effi .spd-checklist__item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* check list .spd-checklist */
.spd-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spd-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

.spd-checklist__item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* -------------------------------------------------------
   工艺流程 .spd-process
------------------------------------------------------- */
.spd-process {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0 8px;
  overflow-x: auto;
}

.spd-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 100px;
}

.spd-process__step-icon {
  width: 64px;
  height: 64px;
}

.spd-process__step-label {
  font-size: 12px;
  font-weight: 500;
  color: #1f2329;
  text-align: center;
  line-height: 1.4;
}

.spd-process__arrow {
  flex-shrink: 0;
  width: 40px;
  /* height: 20px; */
  margin: 0 20px;
  margin-bottom: 28px;
}

/* 设计图：采收加工 - 图标绿圆+外圈虚线方框 */
.spd-process--design .spd-process__step-box {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #fafafa;
}

.spd-process--design .spd-process__step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.spd-process--design .spd-process__step-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.spd-process--design .spd-process__step-label {
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .spd-process--design .spd-process__step-label {
    white-space: normal;
    text-align: center;
    max-width: 100px;
  }
}

/* 中成药处方表（设计图：表头浅绿、网格线） */
.spd-table-wrap--prescription {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.spd-block--prescription .spd-table--prescription thead tr,
.spd-block--prescription .spd-table--prescription th {
  background: #EDF2E0;
  color: #333;
  font-weight: 700;
  text-align: center;
  padding: 10px 14px;
}

.spd-block--prescription .spd-table--prescription td {
  padding: 12px 14px;
  color: #333;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  vertical-align: top;
}

.spd-block--prescription .spd-table--prescription td:last-child {
  border-right: none;
}

.spd-block--prescription .spd-table--prescription tbody tr:last-child td {
  border-bottom: none;
}

/* -------------------------------------------------------
   保护等级卡 .spd-eval-card
------------------------------------------------------- */
.spd-eval-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.spd-eval-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8ecef;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.spd-eval-card__icon {
  width: 56px;
  height: 56px;
}

.spd-eval-card__title {
  font-size: 12px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.85);
}

.spd-eval-card__badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* 国家保护：浅橙/蜜桃底+深橙字 */
.spd-eval-card__badge--national {
  background: #FDEDDA;
  color: #FF8C00;
}

/* IUCN：浅红/粉底+深红字 */
.spd-eval-card__badge--iucn {
  background: #FFD7D6;
  color: #C80100;
}

.spd-eval-card__badge--local {
  background: #e8f0fb;
  color: #3b6fd4;
}

/* 第三张卡仅显示描述文字，无徽章 */
.spd-eval-card--local .spd-eval-card__desc {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  ;
  line-height: 1.5;
}

.spd-eval-card__desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  ;
  line-height: 1.6;
}

/* -------------------------------------------------------
   生产现状（设计图：双卡片+栽培/技术）
------------------------------------------------------- */
.spd-block--production .spd-prod-layout {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.spd-prod-card {
  background: #fff;
  border-radius: 4px;
  padding: 20px 22px;
  border: 1px solid #eee;
}

.spd-prod-card .spd-block-title {
  margin-top: 0;
}

.spd-prod-text {
  font-size: 12px;
  color: #333;
  line-height: 1.75;
  margin: 0 0 12px 0;
}

.spd-prod-text:last-of-type {
  margin-bottom: 16px;
}

/* 核心问题卡片（设计图：浅灰底+细边框+黄底橙叹号+标题深灰） */
.spd-warn-card--core {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px 16px;
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.spd-warn-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 6px;
}

.spd-warn-card--core .spd-warn-card__body {
  flex: 1;
}

.spd-warn-card__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #186338;
  margin-bottom: 12px;
}

.spd-warn-card__title img {
  width: 17px;
}

.spd-warn-card--core .spd-warn-card__text {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* warning card .spd-warn-card */
.spd-warn-card {
  background: #F5F5F5;
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
}

.spd-warn-card__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.spd-warn-card__text {
  font-size: 12px;
  color: #874d0f;
  line-height: 1.7;
}

/* pill .spd-pill--orange / .spd-pill--danger */
.spd-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.spd-pill--orange {
  background: #fff3e0;
  color: #e6820a;
}

.spd-pill--danger {
  background: #fde8e8;
  color: #c93b3b;
}

.spd-pill--green {
  background: #e0f0e8;
  color: #186338;
}

/* -------------------------------------------------------
   技术面板 .spd-tech
------------------------------------------------------- */
.spd-tech__heading {
  font-size: 14px;
  font-weight: 600;
  color: #1f2329;
  margin-bottom: 12px;
}

/* 设计图：技术成熟度/主要技术问题 浅绿 pill 副标题 */
.spd-tech__section {
  margin-bottom: 18px;
}

.spd-tech__section:last-child {
  margin-bottom: 0;
}

.spd-tech__pill {
  display: inline-block;
  background: #EDF2E0;
  color: #186338;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 12px;
  border-radius: 0 10px 0 0;
}

.spd-ring-charts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.spd-ring-chart-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* 环形图 .spd-ring-chart */
.spd-ring-chart {
  width: 80px;
  height: 80px;
}

.spd-ring-chart-label {
  font-size: 11px;
  color: #646a73;
  text-align: center;
  line-height: 1.4;
}

.spd-tech-issues {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spd-tech-issue {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  line-height: 1.5;
}

.spd-tech-issue__num {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #186338;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 设计图：主要技术问题 - 表格式 左浅绿标签+右描述 */
.spd-tech-issues--table {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.spd-tech-issues--table .spd-tech-issue {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 4px;
  min-height: 44px;
  background: #F5F5F5;
}

.spd-tech-issues--table .spd-tech-issue__tag {
  height: 100%;
  display: flex;
  align-items: center;
  background: #EDF2E0;
  color: #186338;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 5px;
  padding-left: 10px;
  border-radius: 4px;
  margin-right: 12px;
}

.spd-tech-issues--table .spd-tech-issue__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  padding: 5px 12px 5px 0;

}

.spd-tech-issue__tag {
  display: inline-block;
  background: #e6f4ea;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.spd-tech-issue__desc {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
}

/* -------------------------------------------------------
   保护布局 .spd-protect-layout
------------------------------------------------------- */
.spd-protect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.spd-protect-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.spd-protect-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f0f7f3;
  border-radius: 4px;
}

.spd-protect-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.spd-protect-item__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.spd-protect-item__title {
  font-size: 12px;
  font-weight: 600;
  color: #1f2329;
}

.spd-protect-item__desc {
  font-size: 12px;
  color: #646a73;
  line-height: 1.6;
}

.spd-protect-ol {
  padding-left: 20px;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spd-protect-ol li {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* -------------------------------------------------------
   保护与利用现状模块 - 按设计图一比一还原
------------------------------------------------------- */
.spd-block--protection {
  margin-top: 20px;
}


.spd-block--protection .spd-block-title {
  margin-top: 0;
}

.spd-protect-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 保护模块内信息卡：圆角、浅灰背景卡片 */
.spd-icard--protection {
  background: #fff;
  border-radius: 4px;
  border-left: none;
  box-shadow: none;
  padding: 16px 18px;
  border: 1px solid #E7E7E7;
}

/* 模块内标题：浅绿色圆角矩形、深灰字、约16px粗体 */
.spd-icard__label--green {
  display: inline-block;
  background: #EDF2E0;
  color: #186338;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 0 10px 0 0;
  margin-bottom: 12px;
}

/* 正文中绿色强调（如《国家重点保护野生植物名录》） */
.spd-text-highlight {
  color: #186338;
  font-weight: 500;
}

.spd-icard--protection .spd-icard__desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  ;
  line-height: 1.7;
  margin-top: 0;
}

/* 无 value 时仅 label + desc，避免多余间距 */
.spd-icard--no-value .spd-icard__desc {
  margin-top: 0;
}

/* 致危因子：每项独立小卡片，左侧深绿圆白字数字 */
.spd-danger-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spd-danger-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 12px;
  color: #1f2329;
  line-height: 1.5;
  border-radius: 4px;
  background: #F5F5F5;
}

.spd-danger-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 4px;
  background: #186338;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* 栖息地子项：图标外绿色虚线圆 */
.spd-protect-item__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.spd-block--protection .spd-protect-item {
  background: #F5F5F5;
  border-radius: 4px;
  padding: 12px 14px;
}

.spd-block--protection .spd-protect-item__icon {
  width: 50px;
  height: 50px;
}

.spd-block--protection .spd-protect-item__title {
  font-size: 12px;
  font-weight: 700;
  color: #186338;
}

.spd-block--protection .spd-protect-item__desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

.spd-block--protection .spd-protect-items {
  margin-top: 8px;
  gap: 10px;
}

/* 保护区块内数据来源：小字号、深灰 */
.spd-block--protection .spd-note {
  font-size: 12px;
  color: #646a73;
}

/* -------------------------------------------------------
   迁地保护 .spd-block--exsitu（设计图：主标题+虚线、子标题菱形、表格+合计行）
------------------------------------------------------- */
.spd-block--exsitu {
  padding-left: 20px;
  border-left: 1px dashed #c8d0d4;
}

.spd-block--exsitu .spd-block-title {
  margin-top: 0;
}

.spd-exsitu {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 20px 0;
}

.spd-exsitu__section {
  margin-bottom: 0;
  border-left: 1px dashed #186338;
  padding: 10px 0;
  padding-bottom: 15px;
}



.spd-exsitu__subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #186338;
  margin: 0 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(0, -15px);
}

.spd-exsitu__subtitle img {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  transform: translate(-5px, 0px);
}

.spd-table-wrap--exsitu {
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 20px;
}

.spd-table--exsitu {
  font-size: 12px;
}

.spd-table--exsitu thead tr,
.spd-table--exsitu th {
  background: #EDF2E0;
  color: #1f2329;
  font-weight: 600;
  padding: 10px 14px;
}

.spd-table--exsitu th:nth-child(1) {
  text-align: left;
}

.spd-table--exsitu th:nth-child(2),
.spd-table--exsitu th:nth-child(3),
.spd-table--exsitu th:nth-child(4) {
  text-align: center;
}

.spd-table--exsitu td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  color: rgba(0, 0, 0, 0.65);
}

.spd-table--exsitu tbody tr:nth-child(odd) td {
  background: #fff;
}

.spd-table--exsitu tbody tr:nth-child(even) td {
  /* background: #f5f6f7; */
}

.spd-table--exsitu tbody tr:last-child td {
  border-bottom: 1px solid #eee;
}

.spd-table--exsitu tfoot tr td {
  background: rgba(24, 99, 56, 0.05);
  ;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  border-bottom: none;
}

.spd-block--exsitu .spd-exsitu__section .spd-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: none;
  border-bottom: none;
}

/* -------------------------------------------------------
   推荐建议卡 .spd-rec-grid / .spd-rec-card
------------------------------------------------------- */
.spd-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.spd-rec-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spd-rec-card__badge {
  width: 32px;
  height: 32px;
}

.spd-rec-card__title {
  font-size: 12px;
  font-weight: 600;
  color: #186338;
  line-height: 1.5;
}

.spd-rec-card__desc {
  font-size: 12px;
  color: #646a73;
  line-height: 1.7;
  flex: 1;
}

/* 保护建议设计图：主标题+虚线、2x2 虚线框+绿色序号块、正文、数据来源 */


.spd-block--suggestions {
  padding-left: 20px;
  border-left: 1px dashed #c8d0d4;
}

.spd-block--suggestions-baohu {
  padding-left: 0;
  border-left: none;
  margin: 0 20px;
}


.spd-block--suggestions .spd-block-title {
  margin-top: 0;
}

.spd-rec-grid--v2 {
  grid-template-columns: repeat(1fr, 4);
  gap: 14px;
  margin-bottom: 12px;
  margin-top: 30px;
}


.spd-rec-card--v2 {
  position: relative;
  padding: 24px 16px 16px 16px;
  border: 1px dashed #186338;
  border-radius: 4px;
  box-shadow: none;
  background: #fff;
}

.spd-rec-card--v2 .spd-rec-card__num {
  position: absolute;
  left: 22px;
  top: -15px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #186338;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spd-rec-card--v2 .spd-rec-card__text {
  font-size: 12px;
  color: #1f2329;
  line-height: 1.7;
  margin: 0;
  font-weight: normal;
}

/* -------------------------------------------------------
   Gallery aside .spd-gallery
------------------------------------------------------- */
.spd-gallery {
  /* position: sticky; */
  /* top: 130px; */
  display: flex;
  flex-direction: column;
  min-width: 0; /* 保证右侧栏在 grid 内不撑开，总宽不超出 1200px */
}

.spd-gallery__title {
  display: flex;
  justify-content: space-between;
  border-radius: 3px;
  background: #FFFFFF;
  box-sizing: border-box;
  border-width: 3px 0px 0px 0px;
  border-style: solid;
  border-color: #186338;
  align-items: center;
  padding: 0 15px;
  height: 45px;
  margin-bottom: 25px;
}

.spd-gallery__title .name {

  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
}

.spd-gallery__title .link {
  font-family: PingFang SC;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #186338;
  display: flex;
  align-items: center;
}

.spd-gallery__title .link:hover {
  opacity: 0.8;
}

.spd-gallery__title .link .img {
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-left: 5px;
}

.spd-gallery-card {
  padding-left: 20px;
  padding-bottom: 20px;
  border-left: 1px dashed #186338;
}

.spd-gallery-card:last-of-type {
  padding-bottom: 0;
}

.spd-gallery-card__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: 5px 5px 0 0;
}

.spd-gallery-card__body {
  padding: 10px 12px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

.spd-gallery-card__loc {
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  color: #186338;
  margin-bottom: 10px;
  position: relative;
  transform: translate(0, -5px);
}

.spd-gallery-card__loc::after {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: #186338;
}

.spd-gallery-card__sci {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: normal;
  line-height: 23px;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 2px;
}

.spd-gallery-card__sci em {
  font-style: normal;
}

.spd-gallery-card__meta {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.65);
}

/* -------------------------------------------------------
   友情链接 .spd-links
------------------------------------------------------- */
.spd-links {
  background: #fff;
  padding: 24px 0;
  border-top: 1px solid #e8ecef;
  margin-top: 32px;
}

.spd-links__title {
  font-size: 14px;
  font-weight: 600;
  color: #646a73;
  margin-bottom: 12px;
}

.spd-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.spd-links__item {
  color: #186338;
  font-size: 12px;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #b8d4c4;
  border-radius: 4px;
  transition: all 0.2s;
}

.spd-links__item:hover {
  background: #186338;
  color: #fff;
  border-color: #186338;
}

/* -------------------------------------------------------
   种群现状卡片（设计图：浅绿标题栏+白字+正文）
------------------------------------------------------- */
/* 种群现状区块标题：粗体深灰 + 绿色右向播放三角 */
.spd-block--population .spd-population-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2329;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spd-population-title__icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #186338;
  flex-shrink: 0;
  vertical-align: middle;
}

.spd-pop-cards--v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}

.spd-pop-card-v2 {
  overflow: hidden;
  border: 1px solid #e8ecef;
  border-radius: 4px;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #E7E7E7;
  padding: 17px;
}

.spd-pop-card-v2__head {
  color: #186338;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  text-align: center;
  border-radius: 8px 8px 0 0;
  background: rgba(135, 169, 47, 0.15);
  border-radius: 0 10px 0 0;
  display: inline-block;
  min-width: 90px;
}

.spd-pop-card-v2__body {
  font-size: 12px;
  color: #1f2329;
  line-height: 1.7;
  flex: 1;
  margin-top: 12px;
}

.spd-pop-card-v2__kw {
  font-weight: 600;
  color: #186338;
}

/* 兼容旧版种群卡（未使用 --v2 时保留） */
.spd-pop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.spd-pop-card {
  background: #f9fafb;
  border: 1px solid #e8ecef;
  border-radius: 4px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spd-pop-card__title {
  font-size: 12px;
  font-weight: 600;
  color: #186338;
}

.spd-pop-card__num {
  font-size: 20px;
  font-weight: 700;
  color: #1f2329;
}

.spd-pop-card__unit {
  font-size: 11px;
  color: #646a73;
}

/* -------------------------------------------------------
   引用卡 .spd-quote-card
------------------------------------------------------- */
.spd-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.spd-quote-card {
  background: #f9fafb;
  border-left: 3px solid #186338;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
}

.spd-quote-card__title {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #186338;
  margin-bottom: 8px;
  background: #EDF2E0;
  padding: 5px 20px;
  border-radius: 0 10px 0 0;

}

.spd-quote-card__text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  ;
  line-height: 1.75;
  font-style: normal;
}

/* 保护级别评判标准区块：引用卡白底+左侧绿线，数据来源在区块内 */
.spd-block--criteria .spd-quote-card {
  border: 1px solid #e8ecef;
  border-left: 3px solid #186338;
  border-radius: 4px;
}

.spd-quote-card__text strong {
  color: #186338;
}

.spd-block--criteria .spd-note {
  margin-bottom: 0;
}

/* -------------------------------------------------------
   通用 pill / tag
------------------------------------------------------- */
.spd-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.spd-tag--green {
  background: #e0f0e8;
  color: #186338;
}

.spd-tag--blue {
  background: #e8f0fb;
  color: #3b6fd4;
}

.spd-tag--gray {
  background: #f0f2f4;
  color: #646a73;
}

/* -------------------------------------------------------
   辅助工具类
------------------------------------------------------- */
.spd-mt-0 {
  margin-top: 0;
}

.spd-mb-8 {
  margin-bottom: 8px;
}

.spd-mb-12 {
  margin-bottom: 12px;
}

.spd-mb-16 {
  margin-bottom: 16px;
}

.spd-mb-20 {
  margin-bottom: 20px;
}

.spd-text-green {
  color: #186338;
}

.spd-text-muted {
  color: #646a73;
}

.spd-fw-600 {
  font-weight: 600;
}

.spd-fs-13 {
  font-size: 12px;
}

.spd-fs-12 {
  font-size: 12px;
}

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