
  /* 基础容器防溢出重置 */
  .ss-pdp-wrapper {
    font-family: system-ui, -apple-system, sans-serif;
    color: #2b3b36;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
  }

  /* 1. 简短描述要点卡片 */
  .ss-desc-box {
    background: #faf9f6;
    border: 1px solid #e8e5df;
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left;
    box-sizing: border-box;
  }

  .ss-desc-list {
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.6;
    font-size: 12.5px;
    color: #333;
  }

  .ss-desc-list strong {
    color: #1a1a1a;
  }

  .ss-season-badge {
    display: inline-block;
    background: #fff3d4;
    border: 1px solid #f2e2b6;
    color: #8a5b00;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
  }

  /* 2. 服务保障条 (支持悬浮 Tooltip 气泡) */
  .pdp-guarantee-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #f4f8f5;
    border: 1px solid #dbe6dd;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 10px;
    margin-bottom: 14px;
    box-sizing: border-box;
    width: 100%;
  }

  .pdp-guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2b4736;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
  }

  .pdp-guarantee-item strong {
    color: #1b3826;
  }

  .pdp-divider {
    color: #c4d6c8;
    font-size: 12px;
  }

  /* ⓘ 图标样式 */
  .info-icon {
    font-style: normal;
    font-size: 11px;
    color: #6a8e73;
    margin-left: 2px;
    cursor: pointer;
  }

  /* Tooltip 悬浮提示框样式 */
  .pdp-tooltip-wrap {
    cursor: pointer;
  }

  .pdp-tooltip-box {
    visibility: hidden;
    opacity: 0;
    width: 200px;
    background-color: #2b4736;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 10px;
    position: absolute;
    z-index: 20;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    font-size: 11px;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
  }

  /* 提示框小三角箭头 */
  .pdp-tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2b4736 transparent transparent transparent;
  }

  /* 鼠标悬停时显示提示框 */
  .pdp-tooltip-wrap:hover .pdp-tooltip-box {
    visibility: visible;
    opacity: 1;
  }

  /* 移动端适配 */
  @media (max-width: 640px) {
    .ss-desc-box { padding: 10px 12px; }
    .ss-desc-list { font-size: 12px; }
    .ss-season-badge { font-size: 10.5px; }
    .pdp-guarantee-bar {
      padding: 7px 12px;
      gap: 12px;
      margin-bottom: 10px;
    }
    .pdp-guarantee-item {
      font-size: 11.5px;
      gap: 4px;
    }
    .pdp-guarantee-item svg {
      width: 14px;
      height: 14px;
    }
    .pdp-tooltip-box {
      width: 160px;
      font-size: 10px;
    }
  }
