/* =====================================
   产品详情页专属样式 - 同步首页高端科技风
   兼容现有common.css，布局不乱、样式统一
===================================== */

/* 统一面包屑样式 完全对齐首页 */
.breadcrumbs {
  width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.breadcrumbs a {
  color: #0070c0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: #005a9c;
}
.breadcrumbs span {
  color: #333;
  font-weight: 500;
}

/* 新增卡片样式，不影响你原有全局样式 */
.product-card {
  max-width: 1200px; /* 控制表格最大宽度，不撑满屏幕 */
  margin: 0px auto; /* 上下留空，水平居中 */
  padding: 0 20px; /* 左右内边距 */
}
.product-table-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* 让表格圆角生效 */
}
/* 适配你现有表格的样式，和原图保持一致 */
.product-table {
  width: 100%;
  border-collapse: collapse;
}
.product-table th {
  background-color: #0066b3; /* 和你原图的蓝色表头一致 */
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  font-weight: normal;
}
.product-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.product-table tr:nth-child(even) {
  background-color: #e6f4ff; /* 浅蓝交替行 */
}
.product-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}


table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}

/* 表头 科技蓝底色、白色文字、居中对齐 */
thead th {
  background: #0070c0;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 14px 12px;
  border: none;
}

/* 表格内容 柔和边框、隔行变色、阅读舒适 */
tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #eaecef;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
}
/* 隔行换色 提升可读性 */
tbody tr:nth-child(even) {
  background: #f8fbff;
}
tbody tr:hover {
  background: #e6f4ff;
  transition: background 0.2s ease;
}
