.product-list-page,
.product-list-page * {
  box-sizing: border-box;
}

.product-list-page {
  --product-blue: #4574bc;
  --product-blue-dark: #315f9f;
  --product-text: #20252c;
  --product-muted: #7c838d;
  --product-line: #e3e7ec;
  padding: 0 0 92px;
  background: #fff;
  color: var(--product-text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.product-list-page__inner {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
}

.product-list-page__breadcrumb {
  display: flex;
  min-height: 88px;
  align-items: center;
}

.product-list-page__breadcrumb .common-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7b8189;
  font-size: 14px;
  line-height: 1.6;
}

.product-list-page__breadcrumb .common-breadcrumb img {
  flex: 0 0 15px;
  opacity: .58;
}

.product-list-page__breadcrumb .common-breadcrumb a {
  color: inherit;
  transition: color .22s ease;
}

.product-list-page__breadcrumb .common-breadcrumb a:hover {
  color: var(--product-blue);
}

.product-list-layout {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.product-sidebar {
  min-width: 0;
}

.product-category-card,
.product-contact-card,
.product-list-panel {
  border: 1px solid var(--product-line);
  background: #fff;
}

.product-side-heading {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--product-blue);
  color: #fff;
}

.product-side-heading h2 {
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.product-side-heading svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}

.product-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-list li {
  margin: 0;
  border-top: 1px solid var(--product-line);
}

.product-category-list li:first-child {
  border-top: 0;
}

.product-category-list a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 15px 10px 18px;
  color: #656c74;
  font-size: 15px;
  line-height: 1.5;
  transition: background-color .24s ease, color .24s ease, padding-left .24s ease;
}

.product-category-list a i {
  color: #b7bec7;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  transition: color .24s ease, transform .24s ease;
}

.product-category-list li:hover a,
.product-category-list li.is-active a {
  padding-left: 20px;
  background: var(--product-blue);
  color: #fff;
  font-weight: 600;
}

.product-category-list li:hover a i,
.product-category-list li.is-active a i {
  color: #fff;
  transform: translateX(2px);
}

.product-category-list a:focus-visible,
.product-card a:focus-visible,
.product-contact-card a:focus-visible {
  outline: 2px solid #214f93;
  outline-offset: 3px;
}

.product-contact-card {
  margin-top: 30px;
}

.product-contact-card__body {
  padding: 15px 15px 18px;
  color: #737a83;
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.product-contact-card__body strong {
  display: block;
  margin-bottom: 2px;
  color: var(--product-blue-dark);
  font-size: 15px;
}

.product-contact-card__body p {
  margin: 0;
}

.product-contact-card__body a {
  color: inherit;
  transition: color .2s ease;
}

.product-contact-card__body a:hover {
  color: var(--product-blue-dark);
}

.product-list-panel {
  min-width: 0;
  padding: 0 18px 44px;
}

.product-list-panel__heading {
  min-height: 65px;
  border-bottom: 1px solid var(--product-line);
}

.product-list-panel__heading h1 {
  margin: 0;
  padding: 18px 0 14px;
  color: var(--product-blue-dark);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.product-card-grid > li {
  min-width: 0;
  margin: 0;
}

.product-card {
  display: flex;
  height: 100%;
  min-height: 405px;
  flex-direction: column;
  border: 1px solid var(--product-line);
  background: #fff;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #f2f3f5;
}

.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .42s ease;
}

.product-card__body {
  display: flex;
  min-height: 158px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 17px 15px 0;
  text-align: center;
}

.product-card__body h2 {
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__body h2 a {
  color: #161a20;
  transition: color .24s ease;
}

.product-card__body p {
  display: -webkit-box;
  width: 100%;
  min-height: 42px;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__more {
  display: inline-flex;
  min-width: 86px;
  min-height: 32px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 6px 12px;
  background: #f0f1f2;
  color: #31363d;
  font-size: 13px;
  line-height: 20px;
  transition: background-color .24s ease, color .24s ease;
}

.product-card:hover,
.product-card:focus-within {
  z-index: 1;
  border-color: var(--product-blue);
  box-shadow: 0 14px 28px rgba(39, 66, 105, .24);
  transform: translateY(-3px);
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  transform: scale(1.045);
}

.product-card:hover h2 a,
.product-card:focus-within h2 a {
  color: var(--product-blue-dark);
}

.product-card:hover .product-card__more,
.product-card:focus-within .product-card__more {
  background: var(--product-blue);
  color: #fff;
}

.product-list-panel .pagebar {
  padding: 42px 0 0;
}

.product-list-panel .pagebar .pagination {
  gap: 7px;
  margin: 0;
}

.product-list-panel .pagination a {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  margin: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--product-line);
  background: #fff;
  color: #777;
  font-size: 13px;
  line-height: 32px;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.product-list-panel .pagination a:hover,
.product-list-panel .pagination a.page-num-current {
  border-color: var(--product-blue);
  background: var(--product-blue);
  color: #fff;
}

.product-list-empty {
  padding: 90px 20px;
  color: var(--product-muted);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 1180px) {
  .product-list-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-list-page {
    padding-bottom: 58px;
  }

  .product-list-page__inner {
    width: calc(100% - 30px);
  }

  .product-list-page__breadcrumb {
    min-height: 60px;
  }

  .product-list-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-contact-card {
    margin-top: 0;
  }

  .product-list-panel {
    padding: 0 14px 34px;
  }

  .product-card-grid {
    gap: 16px 12px;
    margin-top: 20px;
  }

  .product-card {
    min-height: 345px;
  }
}

@media (max-width: 560px) {
  .product-sidebar,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card__body {
    min-height: 158px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-list-page *,
  .product-list-page *::before,
  .product-list-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
