.header__logo-list {
  display: flex;
}
.header__logo-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__logo-list__item {
  padding: 0 20px;
}
.header__logo-list__item__title {
  font-weight: 600;
}
.header__logo-list__item__logo-wrapper {
  display: flex;
  align-items: center;
}
.header__logo-list__item__logo-wrapper svg {
  width: 28px;
  height: 28px;
}
.header__logo-list__item__logo-wrapper img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 30px;
  max-height: 30px;
}
@media (max-width: 960px) {
  .header__logo-list {
    justify-content: center;
    padding: 5px 0;
  }
  .header__logo-list .header__logo-list__item__text-wrapper {
    display: flex;
    gap: 4px;
  }

  .header__logo-list .header__logo-list__item__logo-wrapper svg {
    width: 18px;
    height: 18px;
  }
}
/* The ipad end responds to the mobile end in vertical screen */
/* @custom-media --tablet (max-width: 959px); */
/* @custom-media --gt-mobile (min-width: 751px); */
/* detectingScreen need to consider the configuration of the tablet */

/* MERTON desktop shipping message refinement */
@media screen and (min-width: 960px) {

    /* 减少 Shipping 区域左右占用 */
    .header__logo-list__item {
        padding-left: 12px !important;
        padding-right: 12px !important;
        gap: 8px !important;
    }

    /* 主文案降低视觉权重 */
    .header__logo-list__item__title {
        font-size: 16px !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
    }

    /* 详细说明作为辅助信息 */
    .header__logo-list__item__subtitle {
        font-size: 13px !important;
        line-height: 1.3 !important;
        font-weight: 400 !important;
        color: rgba(var(--color-text), 0.72) !important;
    }

    /* 物流图标略微缩小 */
    .header__logo-list__item__logo-wrapper svg {
        width: 24px !important;
        height: 24px !important;
    }

    .header__logo-list__item__logo-wrapper img {
        max-width: 24px !important;
        max-height: 24px !important;
    }
}