  
  .product-center-page {
    --pcp-bg: #fbfbfb;
    --pcp-card: #ffffff;
    --pcp-text: #151515;
    --pcp-body: #666666;
    --pcp-muted: #aaaaaa;
    --pcp-line: #ececec;
    --pcp-red: #ef0f1a;
    --pcp-red-deep: #d90d17;
    --pcp-shell: 1640px;
    --pcp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    color: var(--pcp-text);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
    overflow-x: hidden;

     color-scheme: light;
  --honor-red: #d7000f;
  --honor-red-hover: #b9000d;
  --honor-ink: #121010;
  --honor-heading: #1a0404;
  --honor-brown: #3f1414;
  --honor-body: #666666;
  --honor-blue: #14363f;
  --honor-line: #dddddd;
  --honor-soft-red: #fdf2f2;
  --honor-font: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  --honor-outfit: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  }
  
  .product-center-page *,
  .product-center-page *::before,
  .product-center-page *::after {
    box-sizing: border-box;
  }
  
  .product-center-page a {
    color: inherit;
    text-decoration: none;
  }
  
  .product-center-page button,
  .product-center-page input { 
    font: inherit;
  }
  
  .product-center-page button,
  .product-center-page a,
  .product-center-page input,
  .product-center-page__card,
  .product-center-page__thumb,
  .product-center-page__card::before,
  .product-center-page__card-visual {
    transition:
      transform 0.45s var(--pcp-ease),
      box-shadow 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      border-color 0.3s var(--pcp-ease),
      color 0.3s var(--pcp-ease),
      opacity 0.3s var(--pcp-ease),
      filter 0.45s var(--pcp-ease);
  }

   

  .product-center-page__thumb img {
    background-color: #f9f8f4;
  }
  
  .product-center-page__reveal {
    opacity: 1;
    transform: translateY(0);
  }
  
  .product-center-page.is-enhanced .product-center-page__reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.85s var(--pcp-ease),
      transform 0.85s var(--pcp-ease);
    will-change: opacity, transform;
  }
  
  .product-center-page.is-enhanced .product-center-page__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
/* 	  padding: 10px; */
  }
  
  .product-center-page__shell {
    width: min(var(--pcp-shell), calc(100vw - 48px));
    margin: 0 auto;
    padding: 116px 0 84px;
  }
  
  .product-center-page__hero {
    display: grid;
    grid-template-columns: 579px 885px;
    justify-content: space-between;
    align-items: start;
  }
  
  .product-center-page__eyebrow {
    margin: 0 0 13px;
    color: var(--pcp-red);
    font-size: 16px;
    font-weight: 700;
  }
  
  .product-center-page__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: 0;
  }
  
  .product-center-page__cta {
    margin-top: 81px;
    width: 140px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 0 16px;
    border-radius: 999px;
    background: var(--pcp-red);
    border: 1px solid var(--pcp-red);
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0 18px 28px rgba(239, 15, 26, 0.12);
    overflow: hidden;
    position: relative;
    isolation: isolate;
  }
  
  .product-center-page__cta,
  .product-center-page__cta > span:first-child {
    color: #fff;
  }
  
  .product-center-page__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s var(--pcp-ease);
    z-index: 0;
  }
  
  .product-center-page__cta > span {
    position: relative;
    z-index: 1;
    transition:
      color 0.32s var(--pcp-ease),
      transform 0.45s var(--pcp-ease),
      background-color 0.32s var(--pcp-ease),
      border-color 0.32s var(--pcp-ease);
  }
  
  .product-center-page__cta-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--pcp-red);
    font-size: 14px;
    border: 1px solid #fff;
  }
  
  .product-center-page__cta-icon i {
    color: var(--pcp-red);
    transition: color 0.32s var(--pcp-ease);
  }
  
  .product-center-page__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(239, 15, 26, 0.2);
    border-color: var(--pcp-red);
  }
  
  .product-center-page__cta:hover::before {
    transform: scaleX(1);
  }
  
  .product-center-page__cta:hover > span:first-child {
    color: var(--pcp-red);
  }
  
  .product-center-page__cta:hover .product-center-page__cta-icon {
    transform: translateX(2px) scale(1.04);
    background: var(--pcp-red);
    border-color: var(--pcp-red);
  }
  
  .product-center-page__cta:hover .product-center-page__cta-icon i {
    color: #fff;
  }
  
  .product-center-page__cta:active {
    transform: translateY(0);
  }
  
  .product-center-page__hero-text {
    padding-top: 2px;
    color: var(--pcp-body);
    font-size: 16px;
    line-height: 30px;
  }
  
  .product-center-page__hero-text p {
    margin: 0 0 10px;
  }
  
  .product-center-page__video {
    position: relative;
    margin-top: 99px;
    border-radius: 30px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 34px 70px rgba(17, 17, 17, 0.06);
  }
  
  .product-center-page__video img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
  }
  
  .product-center-page__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin: -4px 0 0 -35px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 80, 87, 0.96), rgba(227, 7, 19, 0.96));
    box-shadow: 0 18px 40px rgba(239, 15, 26, 0.24);
    cursor: pointer;
  }
  
  .product-center-page__play span {
    position: absolute;
    left: 28px;
    top: 23px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
  }
  
  .product-center-page__play::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.6;
    animation: product-center-page-pulse 2.6s ease-out infinite;
  }
  
  .product-center-page__play:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 24px 48px rgba(239, 15, 26, 0.18);
    background: #fff;
    border-color: var(--pcp-red);
  }
  
  .product-center-page__play:active {
    transform: scale(0.98);
  }
  
  .product-center-page__play:hover span {
    border-left-color: var(--pcp-red);
  }
  
  .product-center-page__video-modal .modal-dialog {
    max-width: min(1240px, calc(100vw - 64px));
    transform: translateY(28px) scale(0.96);
    opacity: 0;
    transition:
      transform 0.42s var(--pcp-ease),
      opacity 0.42s var(--pcp-ease);
  }
  
  .product-center-page__video-modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  
  .product-center-page__video-modal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  
  .product-center-page__video-modal.show {
    background: rgba(7, 8, 10, 0.72);
    backdrop-filter: blur(10px);
  }
  
  .product-center-page__video-modal-content {
    position: relative;
    padding: 18px;
    border-radius: 32px;
    background:
      linear-gradient(180deg, rgba(19, 20, 24, 0.96), rgba(10, 11, 14, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 34px 90px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateZ(0);
  }
  
  .product-center-page__video-modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 2;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }
  
  .product-center-page__video-modal-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
  }
  
  .product-center-page__video-modal-close span:first-child {
    transform: rotate(45deg);
  }
  
  .product-center-page__video-modal-close span:last-child {
    transform: rotate(-45deg);
  }
  
  .product-center-page__video-modal-close:hover {
    transform: translateY(-2px);
    background: var(--pcp-red);
    border-color: var(--pcp-red);
    box-shadow: 0 18px 30px rgba(239, 15, 26, 0.28);
  }
  
  .product-center-page__video-modal-close:hover span {
    background: #fff;
  }
  
  .product-center-page__video-modal-body {
    padding: 0;
  }
  
  .product-center-page__video-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    background:
      radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 46%),
      #090909;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: scale(0.985);
    transition: transform 0.42s var(--pcp-ease);
  }
  
  .product-center-page__video-modal.show .product-center-page__video-frame-wrap {
    transform: scale(1);
  }
  
  .product-center-page__video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  .product-center-page__video-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at center, rgba(239, 15, 26, 0.14), transparent 26%),
      linear-gradient(180deg, rgba(17, 18, 22, 0.72), rgba(8, 8, 10, 0.92));
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s var(--pcp-ease),
      visibility 0.28s var(--pcp-ease);
    z-index: 1;
  }
  
  .product-center-page__video-loading.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .product-center-page__video-loading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.04em;
  }
  
  .product-center-page__video-loading-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--pcp-red);
    animation: product-center-page-spin 0.9s linear infinite;
  }
  
  .product-center-page__video-loading-text {
    font-size: 15px;
    font-weight: 500;
  }
  
  .product-center-page__catalog {
    margin-top: 90px;
  }
  
  .product-center-page__catalog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--pcp-line);
  }
  
  .product-center-page__catalog-head h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: 0;
  }
  
  .product-center-page__search {
    margin-top: 0;
    width: 392px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0);
  }
  
  .product-center-page__search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    color: #666;
    font-size: 16px;
    line-height: 1;
    background: transparent;
  }
  
  .product-center-page__search input::placeholder {
    color: #cecece;
  }
  
  .product-center-page__search:focus-within {
    border-color: rgba(239, 15, 26, 0.3);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.06);
    transform: translateY(-1px);
  }
  
  .product-center-page__search button {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border: 1px solid var(--pcp-red);
    border-radius: 50%;
    background: var(--pcp-red);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  
  .product-center-page__search button:hover {
    transform: scale(1.04);
    background: #fff;
    color: var(--pcp-red);
    border-color: var(--pcp-red);
    box-shadow: 0 10px 22px rgba(239, 15, 26, 0.24);
  }
  
  .product-center-page__search button:active {
    transform: scale(0.96);
  }
  
  .product-center-page__catalog-body {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    column-gap: 94px;
    margin-top: 58px;
  }
  
  .product-center-page__sidebar,
  .product-center-page__filter-block,
  .product-center-page__machine-list,
  .product-center-page__product-grid,
  .product-center-page__cards,
  .product-center-page__card,
  .product-center-page__card-info,
  .product-center-page__thumbs {
    min-width: 0;
  }
  
  .product-center-page__filter-block h3 {
    margin: 0;
    color: #8f8f8f;
    font-size: 18px;
    font-weight: 400;
  }
  
  .product-center-page__machine-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .product-center-page__machine-button {
    width: 100%;
    min-width: 0;
    min-height: 76px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 24px;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    background: #fff;
    color: #161616;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
      transform 0.45s var(--pcp-ease),
      box-shadow 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      border-color 0.3s var(--pcp-ease),
      color 0.3s var(--pcp-ease),
      opacity 0.3s var(--pcp-ease),
      filter 0.45s var(--pcp-ease);
  }
  
  .product-center-page__machine-button::before {
    display: none;
    content: none;
  }
  
  .product-center-page__machine-button > * {
    position: relative;
    z-index: 1;
  }
  
  .product-center-page__machine-button span {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: transparent;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-4px);
    transition:
      transform 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      color 0.3s var(--pcp-ease),
      opacity 0.2s var(--pcp-ease),
      visibility 0s linear 0s;
  }
  
  .product-center-page__machine-button i {
    font-size: 12px;
  }
  
  .product-center-page__machine-button:hover {
    transform: translateY(-2px);
    border-color: var(--pcp-red);
    background: var(--pcp-red);
    color: #fff;
    box-shadow: 0 16px 28px rgba(239, 15, 26, 0.14);
  }
  
  .product-center-page__machine-button:hover::before {
    display: none;
  }
  
  .product-center-page__machine-button:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    transition:
      transform 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      color 0.16s var(--pcp-ease) 0.2s,
      opacity 0.2s var(--pcp-ease),
      visibility 0s linear 0s;
  }
  
  .product-center-page__machine-button.is-active {
    background: var(--pcp-red);
    border-color: var(--pcp-red);
    color: #fff;
    box-shadow: 0 20px 36px rgba(239, 15, 26, 0.18);
  }
  
  .product-center-page__machine-button.is-active::before {
    display: none;
  }
  
  .product-center-page__machine-button.is-active,
  .product-center-page__machine-button.is-active span,
  .product-center-page__machine-button.is-active i {
    color: #fff;
  }
  
  .product-center-page__machine-button.is-active span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  
  .product-center-page__machine-button.is-active:hover {
    background: #fff;
    color: var(--pcp-red);
    border-color: var(--pcp-red);
  }
  
  .product-center-page__machine-button.is-active:hover::before {
    display: none;
  }
  
  .product-center-page__machine-button.is-active:hover span {
    background: var(--pcp-red);
    color: #fff;
  }
  
  .product-center-page__machine-button.is-active:hover span,
  .product-center-page__machine-button.is-active:hover i {
    transition:
      transform 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      color 0.3s var(--pcp-ease),
      opacity 0.2s var(--pcp-ease),
      visibility 0s linear 0s;
  }
  
  .product-center-page__filter-block--product {
    margin-top: 112px;
  }
  
  .product-center-page__product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }
  
  .product-center-page__product-button {
    min-height: 120px;
    min-width: 0;
    position: relative;
    padding: 12px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    background: #fff;
    color: #262626;
    cursor: pointer;
    transition:
      transform 0.45s var(--pcp-ease),
      box-shadow 0.45s var(--pcp-ease),
      background-color 0.3s var(--pcp-ease),
      border-color 0.3s var(--pcp-ease),
      color 0.3s var(--pcp-ease),
      opacity 0.3s var(--pcp-ease),
      filter 0.45s var(--pcp-ease);
  }
  
  .product-center-page__product-button::before {
    display: none;
    content: none;
  }
  
  .product-center-page__product-button > * {
    position: relative;
    z-index: 1;
  }
  
  .product-center-page__product-button span:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    word-break: break-word;
    transition:
        color 0.32s var(--pcp-ease),
        transform 0.42s var(--pcp-ease);
  }
  
  .product-center-page__product-button:hover {
    transform: translateY(-3px);
    border-color: var(--pcp-red);
    background: var(--pcp-red);
    color: #fff;
    box-shadow: 0 18px 28px rgba(239, 15, 26, 0.14);
  }
  
  .product-center-page__product-button:hover::before {
    display: none;
  }
  
  .product-center-page__product-button:hover .product-center-page__bag-icon {
    transform: translateY(-3px) scale(1.04);
  }
  
  .product-center-page__product-button:hover span:last-child {
    transform: translateY(1px);
  }
  
  .product-center-page__product-button.is-active {
    background: var(--pcp-red);
    border-color: var(--pcp-red);
    color: #fff;
    box-shadow: 0 20px 36px rgba(239, 15, 26, 0.18);
  }
  
  .product-center-page__product-button.is-active::before {
    display: none;
  }
  
  .product-center-page__product-button.is-active,
  .product-center-page__product-button.is-active span,
  .product-center-page__product-button.is-active i,
  .product-center-page__product-button.is-active svg {
    color: #fff;
  }
  
  .product-center-page__product-button.is-active:hover {
    background: #fff;
    border-color: var(--pcp-red);
  }
  
  .product-center-page__product-button.is-active:hover::before {
    display: none;
  }
  
  .product-center-page__product-button.is-active:hover,
  .product-center-page__product-button.is-active:hover span,
  .product-center-page__product-button.is-active:hover i,
  .product-center-page__product-button.is-active:hover svg {
    color: var(--pcp-red);
  }
  
  .product-center-page__bag-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
      transform 0.42s var(--pcp-ease),
      color 0.32s var(--pcp-ease);
  }
  
  .product-center-page__bag-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .product-center-page__content {
    min-width: 0;
  }
  
  .product-center-page__cards {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }
  
  .product-center-page__card {
    position: relative;
    min-height: 436px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 402px;
    align-items: center;
    gap: 20px 20px;
    padding: 0 36px 0 0;
    border-radius: 36px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    overflow: visible;
  }
  
  .product-center-page__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: none;
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition:
      opacity 0.38s var(--pcp-ease),
      box-shadow 0.5s var(--pcp-ease),
      transform 0.5s var(--pcp-ease);
    pointer-events: none;
  }
  
  .product-center-page__card:hover {
    transform: translateY(-8px);
  }
  
  .product-center-page__card:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 42px 96px rgba(18, 18, 18, 0.14);
  }
  
  .product-center-page__card-visual {
    position: relative;
    z-index: 1;
    padding: 42px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 24px 62px rgba(18, 18, 18, 0.035);
	  background-color: #fff;
    opacity: 1;
  }
  
  .product-center-page__card:hover .product-center-page__card-visual {
    box-shadow: none;
  }
  
  .product-center-page__card-visual img {
    width: min(100%, 760px);
    max-width: 100%;
    max-height: 332px;
    height: auto;
    display: block;
    margin: 0 auto;
/*     filter: drop-shadow(0 16px 28px rgba(24, 24, 24, 0.08)); */
    transition:
      transform 0.5s var(--pcp-ease),
      filter 0.5s var(--pcp-ease);
  }
 .product-center-page.is-enhanced .product-center-page__card.product-center-page__reveal {
    opacity: 1 !important;
  }
.product-center-page .product-center-page__card-visual,
  .product-center-page .product-center-page__card:hover .product-center-page__card-visual {
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
  }

  .product-center-page__card-visual .logo {
    position: absolute;
    width: auto;
    top: 24px;
    left: 20px;
    z-index: 3;
    width: 20%;
   }

  /* 111 */
  
  .product-center-page__card-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: center;
    padding: 0 8px 0 12px;
  }
  
  .product-center-page__card:hover .product-center-page__card-visual img {
    transform: translateY(-4px) scale(1.01);
    filter: drop-shadow(0 6px 16px rgba(24, 24, 24, 0.02));
  }
  
  .product-center-page__thumbs {
    display: flex;
    gap: 18px;
    margin-bottom: 36px;
  }
  
  .product-center-page__thumb {
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #fbfbfb;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  .product-center-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .product-center-page__thumb:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.5),
      0 14px 24px rgba(17, 17, 17, 0.08);
  }
  
  .product-center-page__thumb--placeholder {
    border: 1px dashed #dedede;
    background: repeating-linear-gradient(
      -45deg,
      #fafafa,
      #fafafa 10px,
      #f2f2f2 10px,
      #f2f2f2 20px
    );
  }
  
  .product-center-page__thumb--placeholder span {
    color: #b8b8b8;
    font-size: 14px;
    font-weight: 600;
  }
  
  .product-center-page__card h4 {
    margin: 0;
    color: #111111;
    font-family: "Outfit", "Microsoft YaHei", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    transition:
      color 0.32s var(--pcp-ease),
      transform 0.45s var(--pcp-ease);
  }
  
  .product-center-page__card-subtitle {
    margin: 12px 0 24px;
    font-family: "Outfit", "Microsoft YaHei", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #111111;
    transition:
      color 0.32s var(--pcp-ease),
      transform 0.45s var(--pcp-ease);
  }
  
  .product-center-page__card:hover h4,
  .product-center-page__card:hover .product-center-page__card-subtitle {
    color: #d7000f;
    transform: translateY(-1px);
  }
  
  .product-center-page__card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--pcp-muted);
    font-size: 16px;
    line-height: 32px;
  }
  
  .product-center-page__card li {
    position: relative;
    padding-left: 20px;
    line-height: 1.3;
	  margin-bottom: 10px;
  }
  
  .product-center-page__card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pcp-red);
  }
  
  .product-center-page__pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  
  .product-center-page__page-button {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #262626;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
  }
  
  .product-center-page__page-button:hover {
    transform: translateY(-2px);
    border-color: var(--pcp-red);
    background: var(--pcp-red);
    color: #fff;
    box-shadow: 0 12px 22px rgba(239, 15, 26, 0.16);
  }
  
  .product-center-page__page-button.is-active {
    border-color: var(--pcp-red);
    background: var(--pcp-red);
    color: #fff;
    box-shadow: 0 16px 28px rgba(239, 15, 26, 0.16);
  }
  
  .product-center-page__page-button.is-active,
  .product-center-page__page-button.is-active i {
    color: #fff;
  }
  
  .product-center-page__page-button.is-active:hover {
    background: #fff;
    color: var(--pcp-red);
    border-color: var(--pcp-red);
  }
  
  .product-center-page__page-button:active,
  .product-center-page__machine-button:active,
  .product-center-page__product-button:active {
    transform: translateY(0);
  }

  .certificate-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 99px 0 0;
  transform: translateX(-13px);
}

.certificate-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  color: #333333;
  background: #fff;
  font-family: var(--honor-outfit);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.certificate-pagination a:hover {
  color: #fff;
  background-color: #ef0f1a;
}

.certificate-pagination a:hover{
  border-color: var(--honor-red);
  transform: translateY(-2px);
}

.certificate-pagination a.active {
  color: #fff;
  border-color: var(--honor-red);
  background: var(--honor-red);
}

.certificate-pagination a.active:hover,
.certificate-pagination a.active:focus,
.certificate-pagination a.active:visited {
  color: #fff;
}

.certificate-pagination .pager-arrow {
  color: #999999;
}

.certificate-pagination .pager-arrow:hover {
  color: #fff;
}

.certificate-pagination .pager-arrow i {
  font-size: 18px;
}
  
  @keyframes product-center-page-pulse {
    0% {
      transform: scale(0.95);
      opacity: 0.55;
    }
    70% {
      transform: scale(1.14);
      opacity: 0;
    }
    100% {
      transform: scale(1.14);
      opacity: 0;
    }
  }
  
  @keyframes product-center-page-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .product-center-page *,
    .product-center-page *::before,
    .product-center-page *::after {
      animation: none !important;
      transition-duration: 0.01ms !important;
      transition-delay: 0ms !important;
      scroll-behavior: auto !important;
    }
  
    .product-center-page.is-enhanced .product-center-page__reveal {
      opacity: 1;
      transform: none;
    }
  }

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}
  
  @media (max-width: 1400px) {
    .product-center-page__shell {
      width: calc(100vw - 48px);
      padding: 72px 0 72px;
    }
  
    .product-center-page__hero {
      grid-template-columns: 1fr;
      row-gap: 40px;
    }
  
    .product-center-page__hero-copy {
      max-width: 760px;
    }
  
    .product-center-page__hero-text {
      max-width: 980px;
      padding-top: 0;
    }
  
    .product-center-page__video {
      margin-top: 84px;
    }
  
    .product-center-page__video img {
      height: 560px;
    }
  
    .product-center-page__catalog {
      margin-top: 80px;
    }
  
    .product-center-page__catalog-body {
      grid-template-columns: 1fr;
      row-gap: 52px;
    }
  
    .product-center-page__filter-block--product {
      margin-top: 56px;
    }
  
    .product-center-page__machine-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 16px;
    }
  
    .product-center-page__product-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  
    .product-center-page__cards {
      gap: 72px;
    }
  
    .product-center-page__card {
      min-height: 0;
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 0;
    }
  
    .product-center-page__card::before {
      border-radius: 32px;
    }
  
    .product-center-page__card-visual {
      min-height: 360px;
      border-radius: 32px;
    }
  
    .product-center-page__card-info {
      padding: 0 8px;
    }
  
    .product-center-page__card-visual img {
      width: min(100%, 680px);
      max-width: 680px;
    }
  
    .product-center-page.is-enhanced .product-center-page__reveal {
      opacity: 1;
      transform: none;
    }
  }
  
  @media (max-width: 1199px) {
    .product-center-page__shell {
      width: calc(100vw - 40px);
      padding: 60px 0 64px;
    }
  
    .product-center-page__title {
      font-size: 42px;
      line-height: 58px;
    }
  
    .product-center-page__hero-text {
      font-size: 15px;
      line-height: 28px;
    }
  
    .product-center-page__video img {
      height: 500px;
    }
  
    .product-center-page__catalog-head h2 {
      font-size: 36px;
      line-height: 1.2;
    }
  
    .product-center-page__catalog-body {
      margin-top: 48px;
    }
  
    .product-center-page__machine-button {
      min-height: 72px;
    }
  
    .product-center-page__product-grid {
      gap: 16px;
    }
  
    .product-center-page__product-button {
      min-height: 110px;
    }
  
    .product-center-page__card-visual {
      min-height: 320px;
      padding: 34px 20px;
    }
  
    .product-center-page__thumbs {
      margin-bottom: 28px;
    }
  }
  
  @media (max-width: 991px) {
    .product-center-page__shell {
      width: 100%;
      padding: 52px 16px 56px;
    }
  
    .product-center-page__eyebrow {
      margin-bottom: 10px;
      font-size: 15px;
    }
  
    .product-center-page__title {
      font-size: 36px;
      line-height: 50px;
    }
  
    .product-center-page__cta {
      margin-top: 48px;
    }
  
    .product-center-page__hero-text {
      font-size: 15px;
      line-height: 27px;
    }
  
    .product-center-page__video {
      margin-top: 72px;
      border-radius: 24px;
    }
  
    .product-center-page__video img {
      height: 420px;
    }
  
    .product-center-page__catalog {
      margin-top: 68px;
    }
  
    .product-center-page__catalog-head {
      flex-direction: column;
      align-items: stretch;
      gap: 18px;
      padding-bottom: 24px;
    }
  
    .product-center-page__catalog-head h2 {
      font-size: 34px;
    }
  
    .product-center-page__search {
      width: 100%;
      max-width: none;
    }
  
    .product-center-page__machine-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .product-center-page__product-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  
    .product-center-page__cards {
      gap: 64px;
    }
  
    .product-center-page__card {
      gap: 24px;
    }
  
    .product-center-page__card-visual {
      min-height: 280px;
      padding: 28px 18px;
    }
  
    .product-center-page__card-visual img {
      width: min(100%, 560px);
      max-height: 260px;
    }
  
    .product-center-page__thumbs {
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }
  
    .product-center-page__thumb {
      width: 102px;
      height: 102px;
    }
  
    .product-center-page__page-button {
      width: 52px;
      height: 52px;
    }
  }
  
  @media (max-width: 768px) {
    .product-center-page__shell {
      width: 100%;
      padding: 40px 12px 56px;
    }
  
    .product-center-page__title {
      font-size: 32px;
      line-height: 1.28;
    }
  
    .product-center-page__hero-text {
      font-size: 15px;
      line-height: 26px;
    }
  
    .product-center-page__cta {
      margin-top: 40px;
    }
  
    .product-center-page__video {
      border-radius: 22px;
    }
  
    .product-center-page__video img {
      height: 300px;
    }
  
    .product-center-page__catalog-head {
      flex-direction: column;
      align-items: stretch;
    }
  
    .product-center-page__catalog-head h2 {
      font-size: 32px;
      line-height: 1.2;
    }
  
    .product-center-page__search {
      width: 100%;
      height: 48px;
      padding-left: 18px;
    }
  
    .product-center-page__search button {
      width: 38px;
      height: 38px;
    }
  
    .product-center-page__machine-list {
      grid-template-columns: 1fr;
    }
  
    .product-center-page__machine-button {
      min-height: 68px;
      padding: 0 14px 0 20px;
    }
  
    .product-center-page__product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
  
    .product-center-page__product-button {
      min-height: 102px;
      border-radius: 14px;
      padding: 12px 8px;
    }
  
    .product-center-page__card {
      gap: 20px;
    }
  
    .product-center-page__thumbs {
      gap: 12px;
      margin-bottom: 24px;
    }
  
    .product-center-page__thumb {
      width: calc((100% - 24px) / 3);
      height: auto;
      aspect-ratio: 1 / 1;
    }
  
    .product-center-page__card-visual {
      min-height: 240px;
      padding: 26px 16px;
      border-radius: 26px;
    }
  
    .product-center-page__card::before {
      border-radius: 26px;
    }
  
    .product-center-page__card-info {
      padding: 0 2px;
    }
  
    .product-center-page__card h4 {
      font-size: 22px;
    }
  
    .product-center-page__card-subtitle {
      margin: 10px 0 18px;
      font-size: 17px;
      line-height: 1.35;
    }
  
    .product-center-page__card ul {
      font-size: 15px;
      line-height: 28px;
    }
  
    .product-center-page__card li::before {
      top: 11px;
    }
  
    .product-center-page__pagination {
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .product-center-page__page-button {
      width: 46px;
      height: 46px;
    }
  
    .product-center-page__video-modal .modal-dialog {
      max-width: calc(100vw - 20px);
    }
  
    .product-center-page__video-frame-wrap {
      border-radius: 20px;
    }
  
    .product-center-page__video-modal-close {
      right: 16px;
      top: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .product-center-page__shell {
      width: 100%;
      padding: 32px 10px 48px;
    }
  
    .product-center-page__eyebrow {
      font-size: 14px;
    }
  
    .product-center-page__title {
      font-size: 28px;
      line-height: 1.24;
    }
  
    .product-center-page__hero-text {
      font-size: 14px;
      line-height: 24px;
    }
  
    .product-center-page__cta {
      width: 132px;
      height: 40px;
      padding-left: 14px;
      font-size: 15px;
    }
  
    .product-center-page__cta-icon {
      width: 28px;
      height: 28px;
    }
  
    .product-center-page__video {
      margin-top: 56px;
      border-radius: 18px;
    }
  
    .product-center-page__video img {
      height: 220px;
    }
  
    .product-center-page__play {
      width: 58px;
      height: 58px;
      margin-left: -29px;
      margin-top: -4px;
    }
  
    .product-center-page__play span {
      left: 24px;
      top: 19px;
      border-top-width: 10px;
      border-bottom-width: 10px;
      border-left-width: 15px;
    }
  
    .product-center-page__catalog {
      margin-top: 56px;
    }
  
    .product-center-page__catalog-head {
      padding-bottom: 20px;
    }
  
    .product-center-page__catalog-head h2 {
      font-size: 28px;
    }
  
    .product-center-page__search {
      height: 46px;
      padding-left: 16px;
    }
  
    .product-center-page__search input {
      font-size: 15px;
    }
  
    .product-center-page__search button {
      width: 36px;
      height: 36px;
      margin-right: 4px;
      font-size: 16px;
    }
  
    .product-center-page__catalog-body {
      margin-top: 40px;
      row-gap: 40px;
    }
  
    .product-center-page__filter-block h3 {
      font-size: 16px;
    }
  
    .product-center-page__machine-list {
      margin-top: 22px;
      gap: 12px;
    }
  
    .product-center-page__machine-button {
      min-height: 62px;
      border-radius: 14px;
      font-size: 15px;
    }
  
    .product-center-page__filter-block--product {
      margin-top: 40px;
    }
  
    .product-center-page__product-grid {
      margin-top: 22px;
      gap: 12px;
    }
  
    .product-center-page__product-button {
      min-height: 94px;
      gap: 6px;
    }
  
    .product-center-page__product-button span:last-child {
      font-size: 14px;
    }
  
    .product-center-page__bag-icon {
      width: 40px;
      height: 40px;
    }
  
    .product-center-page__cards {
      gap: 56px;
    }
  
    .product-center-page__card {
      gap: 16px;
    }
  
    .product-center-page__card::before {
      border-radius: 22px;
    }
  
    .product-center-page__card-visual {
      min-height: 210px;
      padding: 22px 14px;
      border-radius: 22px;
    }
  
    .product-center-page__card-visual img {
      max-height: 180px;
    }
  
    .product-center-page__thumbs {
      gap: 8px;
      margin-bottom: 20px;
    }
  
    .product-center-page__thumb {
      width: calc((100% - 16px) / 3);
    }
  
    .product-center-page__thumb--placeholder span {
      font-size: 12px;
    }
  
    .product-center-page__card h4 {
      font-size: 20px;
    }
  
    .product-center-page__card-subtitle {
      margin: 8px 0 16px;
      font-size: 16px;
    }
  
    .product-center-page__card ul {
      font-size: 14px;
      line-height: 24px;
    }
  
    .product-center-page__card li {
      padding-left: 16px;
    }
  
    .product-center-page__card li::before {
      top: 9px;
      width: 5px;
      height: 5px;
    }
  
    .product-center-page__pagination {
      margin-top: 48px;
      gap: 8px;
    }
  
    .product-center-page__page-button {
      width: 42px;
      height: 42px;
      font-size: 14px;
    }
  
    .product-center-page__video-modal-content {
      padding: 12px;
      border-radius: 22px;
    }
  
    .product-center-page__video-modal-close {
      right: 12px;
      top: 12px;
      width: 38px;
      height: 38px;
    }
  
    .product-center-page__video-loading-text {
      font-size: 14px;
    }
  }

/* ---------------------------------------------------------------------------
   按成品查找（fication 模式）专属样式
   --------------------------------------------------------------------------- */
.product-center-page__hero--fication {
  grid-template-columns: 1fr;
  padding: 64px 56px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 60%);
  border-radius: 24px;
  border: 1px solid #ffe2e2;
  box-shadow: 0 18px 36px rgba(239, 15, 26, 0.06);
}

.product-center-page__hero--fication .product-center-page__hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
}

.product-center-page__hero--fication .product-center-page__title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
}

.product-center-page__hero--fication .product-center-page__title small {
  font-size: 20px;
  font-weight: 400;
  color: #888;
}

.product-center-page__hero--fication .product-center-page__hero-sub {
  margin: 12px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* 空态：当前分类下没有可展示的设备 */
.product-center-page__empty {
  grid-column: 1 / -1;
  padding: 64px 32px;
  text-align: center;
  color: #888;
  font-size: 16px;
  border: 1px dashed #ececec;
  border-radius: 16px;
  background: #fafafa;
}

.product-center-page__empty a {
  color: var(--pcp-red);
  margin: 0 4px;
}

/* 模式类：fication 模式下机器按钮高亮退场（因为没有当前机器） */
.product-center-page--mode-fication .product-center-page__machine-button.is-active {
  background: #fff;
  border-color: #ececec;
  color: #151515;
  box-shadow: none;
}

.product-center-page--mode-fication .product-center-page__machine-button.is-active,
.product-center-page--mode-fication .product-center-page__machine-button.is-active span,
.product-center-page--mode-fication .product-center-page__machine-button.is-active i {
  color: #151515;
}

.product-center-page--mode-fication .product-center-page__machine-button.is-active span {
  background: transparent;
}

@media (max-width: 768px) {
  .product-center-page__hero--fication {
    padding: 32px 20px;
  }
  .product-center-page__hero--fication .product-center-page__title {
    font-size: 28px;
  }
  .product-center-page__hero--fication .product-center-page__title small {
    font-size: 14px;
  }
}
  
