/*
 * 雪茄 H5 主题补丁 01
 * 1. 商品卡片等高、图片与按钮对齐
 * 2. 手机页脚压缩为两列常用链接
 */

/* 商品卡片：电脑端和手机端共用的稳定布局。 */
.product-layout {
  display: flex;
}

.product-layout .product-thumb {
  width: 100%;
}

.product-thumb .image {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 230px;
  overflow: hidden;
}

.product-thumb .image a {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-thumb .image img {
  height: 210px;
  max-width: 100%;
  object-fit: contain;
  transition: transform .2s ease;
  width: 100%;
}

.product-thumb:hover .image img {
  transform: scale(1.025);
}

.product-thumb .caption {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 205px;
}

.product-thumb .caption h4 {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-thumb .caption .price {
  margin-top: auto;
  min-height: 54px;
}

.product-thumb .button-group button:first-child {
  flex: 1 1 auto;
  width: auto;
}

.product-thumb .button-group button:nth-child(2),
.product-thumb .button-group button:nth-child(3) {
  flex: 0 0 52px;
  width: 52px;
}

.product-thumb .button-group button:first-child span {
  display: inline !important;
}

@media (max-width: 767px) {
  /* 两列商品卡片保持紧凑，同时让各行价格和按钮对齐。 */
  .product-thumb .image {
    height: 150px;
    min-height: 150px;
    padding: 8px;
  }

  .product-thumb .image img {
    height: 134px;
  }

  .product-thumb .caption {
    min-height: 112px;
    padding: 9px 9px 6px;
  }

  .product-thumb .caption h4 {
    font-size: 14px;
    height: auto;
    line-height: 20px;
    margin-bottom: 5px;
    min-height: 40px;
  }

  .product-thumb .caption .price {
    font-size: 16px;
    line-height: 1.35;
    margin: auto 0 4px;
    min-height: 22px;
  }

  .product-thumb .price-tax {
    display: none !important;
  }

  .product-thumb .button-group button {
    min-height: 40px;
  }

  .product-thumb .button-group button:first-child {
    font-size: 12px;
    min-width: 0;
    padding-left: 4px;
    padding-right: 4px;
  }

  .product-thumb .button-group button:nth-child(2) {
    flex: 0 0 40px;
    width: 40px;
  }

  .product-thumb .button-group button:nth-child(3) {
    display: none;
  }

  /* 手机页脚仅保留“信息咨询”和“客户服务”两列。 */
  .h5-footer {
    margin-top: 22px;
    padding: 18px 0 10px;
  }

  .h5-footer-brand {
    margin-bottom: 12px;
    padding-bottom: 10px;
    text-align: center;
  }

  .h5-footer-brand strong {
    font-size: 16px;
  }

  .h5-footer-brand p {
    font-size: 11px;
    line-height: 1.55;
    margin: 3px 0 0;
  }

  .h5-footer-links > div {
    min-height: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .h5-footer-links > div:nth-child(n+3) {
    display: none;
  }

  .h5-footer-links h5 {
    font-size: 14px;
    margin: 0 0 7px;
  }

  .h5-footer-links ul {
    margin-bottom: 4px;
  }

  .h5-footer-links li {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 4px;
  }

  .h5-footer-bottom {
    font-size: 10px;
    line-height: 1.45;
    margin-top: 10px;
    padding-top: 9px;
  }
}

@media (min-width: 768px) {
  .product-thumb .button-group button:first-child {
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}
