.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: 350px; */
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(26, 57, 128, 0.08);
  border-radius: 8px;
  padding: 11px 11px 0;
  cursor: pointer;
}
.PCB-product-list__item:hover {
  box-shadow: 0px 0px 20px 0px rgba(15, 135, 255, 0.15);
}

.PCB-product-list__item .picture img {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  object-fit: cover;
}

.PCB-product-list__item .content {
  padding: 14px 12px 22px;
}

.PCB-product-list__item .title {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 44px;
}
.PCB-product-list__item .tags {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 13px;
  color: #7f879e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.PCB-product-list__item .tags span {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #f0f1f5;
  padding: 0 6px;
  display: inline-block;
  line-height: 20px;
}
.PCB-product-list__item .tags span + span {
  margin-left: 4px;
}
.PCB-product-list__item .btn {
  color: #dadada;
  border: #dadada solid 1px;
  border-radius: 17px;
  min-width: 34px;
  height: 34px;
  line-height: 32px;
  width: max-content;
  text-align: center;
  margin-top: 13px;
  transition: 0.3s;
}
.PCB-product-list__item .btn span {
  display: none;
}
.PCB-product-list__item .btn i {
  vertical-align: middle;
  font-size: 16px;
}

.PCB-product-list__item .btn:hover {
  width: 130px;
  background: #1969fa;
  border-color: #1969fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 22px;
  padding-right: 17px;
}
.PCB-product-list__item .btn:hover span {
  display: block;
  font-size: 13px;
  color: #ffffff;
}
.PCB-product-list__item .btn:hover i {
  color: #ffffff;
}

.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;
}
