
  /* 容器样式 */
  .pdp-guarantee-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #f4f8f5;
    border: 1px solid #dbe6dd;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    box-sizing: border-box;
  }

  .pdp-guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2b4736;
    line-height: 1.2;
    position: relative;
  }

  .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: 10;
    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) {
    .pdp-guarantee-bar {
      padding: 7px 8px;
      margin-bottom: 10px;
    }
    .pdp-guarantee-item {
      font-size: 11px;
      gap: 4px;
    }
    .pdp-guarantee-item svg {
      width: 13px;
      height: 13px;
    }
    .pdp-tooltip-box {
      width: 160px;
      font-size: 10px;
    }
  }
