/* 贵金属产品列表页 — 卡片式布局 */
.metal-list {
  display: block;
}
.metal-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.metal-item.metal-even {
  background: #f9fafb;
}
.metal-item:last-child {
  border-bottom: none;
}
.metal-img {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  margin-right: 24px;
}
.metal-img-box {
  width: 180px;
  height: 180px;
  background-color: #f3f4f6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.metal-info {
  flex: 1;
  padding-top: 8px;
}
.metal-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.4;
}
.metal-detail {
  list-style: none;
  padding: 0;
  margin: 0;
}
.metal-detail li {
  font-size: 14px;
  color: #4b5563;
  line-height: 2;
  padding: 0;
}
