/* =========================================================
   潜伏机器人 LMR 产品列表样式
   参考：海康机器人 LMR 产品页
   大图左 + 参数图标右上 + 规格表右下
   ========================================================= */

.lmr-products-section {
  padding: 0;
  background-color: #f5f5f5;
}

.lmr-product {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 50px 0;
}

.lmr-product:nth-child(even) {
  background-color: #fafafa;
}

.lmr-product:last-child {
  margin-bottom: 0;
}

.lmr-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}

.lmr-product-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.lmr-product-name {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff6a00;
  display: inline-block;
}

.lmr-product-params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 14px;
  margin-bottom: 28px;
  max-width: 720px;
}

.lmr-param-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lmr-param-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ff6a00;
  border-radius: 6px;
  color: #ff6a00;
  flex-shrink: 0;
}

.lmr-param-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.lmr-param-value {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

.lmr-param-label {
  font-size: 12px;
  color: #999999;
  line-height: 1.3;
}

.lmr-product-specs {
  width: 100%;
}

.lmr-product-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
}

.lmr-product-specs tr {
  border-bottom: 1px solid #eeeeee;
}

.lmr-product-specs tr:last-child {
  border-bottom: none;
}

.lmr-product-specs td {
  padding: 12px 16px;
  color: #333333;
  border-right: 1px solid #eeeeee;
}

.lmr-product-specs td:last-child {
  border-right: none;
  font-weight: 500;
}

.lmr-product-specs td:first-child {
  width: 45%;
  color: #666666;
  background-color: #f5f5f5;
}

@media (max-width: 991px) {
  .lmr-product {
    padding: 32px 15px;
  }

  .lmr-product-image {
    min-height: 240px;
    margin-bottom: 24px;
  }

  .lmr-product-image img {
    max-height: 260px;
  }

  .lmr-product-name {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .lmr-product-params {
    gap: 16px;
    margin-bottom: 24px;
  }

  .lmr-param-item {
    min-width: 120px;
  }

  .lmr-param-value {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .lmr-product-params {
    gap: 12px;
  }

  .lmr-param-item {
    min-width: 100px;
  }

  .lmr-param-icon {
    width: 36px;
    height: 36px;
  }

  .lmr-param-icon svg {
    width: 20px;
    height: 20px;
  }

  .lmr-param-value {
    font-size: 18px;
  }

  .lmr-param-label {
    font-size: 12px;
  }

  .lmr-product-specs td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
