.PCB-product-header {
  padding: 58px 0;
}

.PCB-product-filter {
  padding: 26px 0 35px;
}
.PCB-product-filter__row {
  color: #7f879e;
  display: flex;
  line-height: 30px;
}
/* .PCB-product-filter__row + .PCB-product-filter__row {
  margin-top: 10px;
} */
.PCB-product-filter__row .filter-title {
  width: 80px;
  min-width: 80px;
}
.PCB-product-filter__row .filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.PCB-product-filter__row .filter-options .filter-option {
  background: #ffffff;
  border-radius: 15px;
  cursor: pointer;
  padding: 0 14px;
  min-width: 76px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}
.PCB-product-filter__row .filter-options .filter-option:hover {
  background: #dce1e4;
}
.PCB-product-filter__row .filter-options .filter-option.active {
  background-color: #1969fa;
  color: white;
}

.PCB-product-list {
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 305px);
  gap: 20px;
}

.PCB-product-list__item {
  /* height: 260px; */
  background: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(26, 57, 128, 0.08);
  border-radius: 16px;
  padding: 17px;
  cursor: pointer;
}
.PCB-product-list__item:hover {
  box-shadow: 0px 0px 42px 0px rgba(4, 38, 94, 0.16);
}

/* .PCB-product-list__item .picture {} */
.PCB-product-list__item .picture img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
}

.PCB-product-list__item .title {
  padding: 18px 18px 16px;
  line-height: 12px;
}

.PCB-product-list .layui-flow-more {
  grid-column: span 4;
  padding: 0 0 20px;
}
.PCB-product-list .layui-flow-more a cite {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e8ee;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  width: 250px;
  color: #7f879e;
  margin: 40px 0;
}
.PCB-product-list .layui-flow-more a cite:hover {
  background: #1953ff;
  color: white;
}
.PCB-product-more {
  padding: 72px 0 60px;
  text-align: center;
}
.PCB-product-more button {
  width: 250px;
}

.PCB-product-detail {
  padding: 30px 39px 30px 30px;
  display: flex;
}
.PCB-product-detail .product-detail-image {
  text-align: center;
  margin-right: 39px;
  width: 696px;
}
.PCB-product-detail .product-detail-image img {
  width: 100%;
  height: 464px;
  object-fit: contain;
}
.PCB-product-detail .product-detail-content {
  padding: 30px 0;
  color: #333333;
  flex: 1;
}
.PCB-product-detail .product-detail-content .title {
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 28px;
}
.PCB-product-detail .product-detail-content .content {
  font-size: 14px;
  margin-bottom: 25px;
  max-height: 252px;
  overflow: auto;
}
.PCB-product-detail .product-detail-content .content-params {
  display: flex;
  flex-wrap: wrap;
  line-height: 12px;
}

.PCB-product-detail .product-detail-content .content-params div {
  margin-bottom: 14px;
  width: 33.33%;
}
.PCB-product-detail .product-detail-content .content-params div.span-2 {
  width: 66.66%;
}
.PCB-product-detail .product-detail-content .content-params div.block {
  width: 100%;
}
.PCB-product-detail .product-detail-content .content-params span {
  color: #7f879e;
}

.PCB-product-detail .product-detail-btn {
  /* width: 350px; */
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  background: #1969fa;
  color: #ffffff;
}
.PCB-product-detail .product-detail-btn:hover {
  background: #0a3ac9;
}
.PCB-product-detail .product-detail-btn.light {
  background: #f2f9ff;
  border: 1px solid #e0f1ff;
  color: #1969fa;
}
.PCB-product-detail .product-detail-btn.light:hover {
  background: #e0f1ff;
  border: 1px solid #e0f1ff;
}
.PCB-product-detail .product-detail-btn + .product-detail-btn {
  margin-top: 6px;
}
