.list-group-item {
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}

.list-group-item:hover {
  background-color: #d9261c;
  color: #fff;
}

.list-group {
  border-radius: 0;
}

.productPageTitle {
  font-size: 32px;
  font-weight: 800;
}

.productItemImage {
  width: 100%;
  height: 100%;
}

.bread {
  padding: 0 168px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}

.layout {
  padding: 64px 138px;
}

.banner {
  width: 100%;
}

.tableLayout {
  width: 100%; /* 设置表格宽度 */
  max-width: 100%;
  overflow-x: scroll;
  margin: 36px 0;
}

table {
  border-collapse: collapse; /* 合并边框 */
  width: 100%;
}

table,
th,
td {
  border: 1px solid black; /* 给表格、表头、单元格添加边框 */
  font-weight: 400;
  font-size: 12px;
}

table,
tr,
th {
  font-weight: 800;
  font-size: 14px;
}

th,
td {
  padding: 10px; /* 为单元格内容添加内边距 */
  text-align: left; /* 设置文字左对齐 */
}

.tableTitle {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0;
}

.backBtn {
  color: #00ada9;
  border: 1px solid #00ada9;
  margin-top: 16px;
  display: flex;
  margin-left: auto;
}

.backBtn:hover {
  background-color: #00ada9;
  color: #fff;
}

@media (max-width: 1200px) {
  .layout {
    padding: 32px;
  }

  .bread {
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .productPageTitle {
    margin: 24px 0;
  }

  .layout {
    padding: 16px;
  }

  table,
  th,
  td {
    border: 1px solid black; /* 给表格、表头、单元格添加边框 */
    font-weight: 400;
    font-size: 12px;
  }

  table,
  tr,
  th {
    font-weight: 800;
    font-size: 12px;
  }

  th,
  td {
    padding: 10px; /* 为单元格内容添加内边距 */
    text-align: left; /* 设置文字左对齐 */
  }

  .bread {
    padding: 0 12px;
    justify-content: center;
  }
}
