/* PowerMax product UI layer. Loaded only on product list/detail templates. */
:root {
  --ny3d-ink: #18212f;
  --ny3d-muted: #667385;
  --ny3d-line: #dfe6ee;
  --ny3d-blue: #15428b;
  --ny3d-green: #20a864;
  --ny3d-amber: #f0a33a;
  --ny3d-soft: #f4f7fa;
}

.ny3d-product-page {
  background: linear-gradient(180deg, #f5f8fb 0%, #fff 42%);
  padding: 42px 0 72px;
}

.ny3d-product-page .ct2 {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ny3d-product-page .ct2-sd,
.ny3d-product-page .ct2-mn {
  float: none;
  width: auto;
}

.ny3d-product-page .panel-sd {
  border: 1px solid var(--ny3d-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 33, 47, .08);
}

.ny3d-product-page .panel-sd .tit {
  background: #15428b;
  color: #fff;
  line-height: 1.25;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
}

.ny3d-product-page .lanmu {
  padding: 10px;
}

.ny3d-product-page .lanmu li {
  margin: 0;
}

.ny3d-product-page .lanmu li > a {
  background: #fff;
  border-bottom: 1px solid var(--ny3d-line);
  color: #425064;
  line-height: 1.35;
  padding: 13px 12px;
  border-radius: 6px;
}

.ny3d-product-page .lanmu li > a:hover,
.ny3d-product-page .lanmu li.active > a {
  background: #eef5ff;
  color: var(--ny3d-blue);
}

.ny3d-crumb {
  color: var(--ny3d-muted);
  margin-bottom: 18px;
}

.ny3d-crumb span {
  color: var(--ny3d-ink);
  font-weight: 700;
}

.ny3d-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px 0 2px;
  border-bottom: 1px solid var(--ny3d-line);
}

.ny3d-kicker {
  display: inline-block;
  color: var(--ny3d-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ny3d-list-head h1 {
  color: var(--ny3d-ink);
  font-size: 30px;
  line-height: 1.15;
  margin: 0;
}

.ny3d-list-head p {
  color: var(--ny3d-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 4px;
}

.ny3d-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 !important;
}

.ny3d-product-grid li {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.ny3d-product-grid li a.ny3d-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ny3d-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 33, 47, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ny3d-product-grid li a.ny3d-product-card:hover {
  color: inherit;
  border-color: rgba(32, 168, 100, .42);
  box-shadow: 0 18px 44px rgba(24, 33, 47, .13);
  transform: translateY(-4px);
}

.ny3d-product-grid .img-cover {
  border: 0;
  padding-top: 76%;
  background: #eef2f4;
}

.ny3d-product-grid .img-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(24,33,47,.2));
  pointer-events: none;
}

.ny3d-product-grid .img-cover em {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-block;
  background: rgba(255,255,255,.92);
  color: var(--ny3d-green);
  border: 1px solid rgba(32,168,100,.28);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ny3d-product-grid .text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-height: 148px;
  margin: 0;
  padding: 18px;
  line-height: 1.45;
  text-align: left;
  background: #fff;
}

.ny3d-product-grid .text::before {
  display: none;
}

.ny3d-product-grid .text p {
  color: var(--ny3d-ink);
  display: -webkit-box;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ny3d-product-grid .text small {
  color: var(--ny3d-muted);
  display: -webkit-box;
  flex: 1;
  font-size: 13px;
  line-height: 1.65;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ny3d-product-grid .text b {
  color: var(--ny3d-blue);
  font-size: 14px;
  line-height: 1.2;
}

.ny3d-product-grid .text b::after {
  content: " ->";
}

.ny3d-product-grid li a:hover .img-cover span {
  transform: scale(1.06);
}

.ny3d-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid var(--ny3d-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 33, 47, .08);
}

.ny3d-product-hero .pc-slide {
  float: none;
  width: auto;
}

.ny3d-product-hero .view .swiper-slide .img-center,
.ny3d-product-hero .proimg-center {
  height: auto;
  line-height: 1;
}

.ny3d-product-hero .proimg-center {
  border-radius: 8px;
  overflow: hidden;
  background: #eef2f4;
  padding-bottom: 78%;
}

.ny3d-product-hero .proimg-center img {
  object-fit: cover;
}

.ny3d-product-hero .xzjt-showcase-info {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.ny3d-product-hero .protit {
  color: var(--ny3d-ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 14px;
}

.ny3d-product-lead {
  color: var(--ny3d-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.ny3d-product-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.ny3d-product-points li {
  background: #f7fafc;
  border: 1px solid var(--ny3d-line);
  border-radius: 6px;
  color: var(--ny3d-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 8px;
  text-align: center;
}

.ny3d-product-contact {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ny3d-line);
  color: var(--ny3d-ink);
  font-size: 14px;
}

.xzjt-showcase-info .ny3d-product-contact {
  min-height: auto;
}

.ny3d-primary-action,
.xzjt-showcase-info .tel a.ny3d-primary-action {
  display: block;
  float: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 13px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--ny3d-green);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.ny3d-primary-action:hover,
.xzjt-showcase-info .tel a.ny3d-primary-action:hover {
  background: #168a52;
  color: #fff;
}

.ny3d-contact-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #edf1f5;
}

.ny3d-contact-row:last-child {
  border-bottom: 0;
}

.ny3d-contact-row span {
  color: var(--ny3d-muted);
}

.ny3d-contact-row strong {
  color: var(--ny3d-ink);
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.ny3d-product-content {
  border: 1px solid var(--ny3d-line);
  border-radius: 8px;
  background: #fff;
  color: #303b49;
  line-height: 1.9;
  padding: 28px;
}

.ny3d-product-content h2,
.ny3d-product-content h3 {
  color: var(--ny3d-ink);
  line-height: 1.25;
  margin: 26px 0 12px;
}

.ny3d-product-content img {
  border-radius: 8px;
  margin: 18px auto;
}

.ny3d-product-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
}

.ny3d-product-content th,
.ny3d-product-content td {
  border: 1px solid var(--ny3d-line);
  padding: 12px 14px;
  text-align: left;
}

.ny3d-product-content th {
  background: #f4f7fa;
  color: var(--ny3d-blue);
}

.ny3d-product-nav {
  margin-top: 22px;
}

.ny3d-product-nav li span {
  background: var(--ny3d-blue);
}

@media screen and (max-width: 992px) {
  .ny3d-product-page .ct2,
  .ny3d-product-hero {
    grid-template-columns: 1fr;
  }

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

  .ny3d-list-head {
    align-items: start;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .ny3d-product-page {
    padding: 24px 0 44px;
  }

  .ny3d-product-page .ct2-sd {
    display: none;
  }

  .ny3d-list-head {
    gap: 10px;
    padding-top: 0;
  }

  .ny3d-list-head h1 {
    font-size: 24px;
  }

  .ny3d-product-grid {
    gap: 12px;
  }

  .ny3d-product-grid .text {
    min-height: 132px;
    padding: 13px;
  }

  .ny3d-product-grid .text p {
    font-size: 14px;
  }

  .ny3d-product-grid .text small {
    display: none;
  }

  .ny3d-product-hero {
    gap: 18px;
    padding: 16px;
  }

  .ny3d-product-hero .protit {
    font-size: 23px;
  }

  .ny3d-product-points {
    grid-template-columns: 1fr;
  }

  .ny3d-contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ny3d-product-content {
    padding: 18px;
  }
}
