/* productz.html — 产品分类 + 左右交替排版 */

@font-face {
  font-family: 'DINEngschrift';
  src: url('../fonts/DINEngschriftStd.53ddef7c.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html.pz-html,
body.pz-body {
  overflow-x: clip;
}

.pz-page {
  background: #fcf8f6;
  padding: 80px 0 100px;
}

.pz-container {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.pz-headline {
  margin: 0 0 56px;
  max-width: 100%;
  font-size:30px;
  font-weight: 700;
  line-height: 1.15;
  color: #1f5415;
  letter-spacing:0px;
}

.pz-headline span {
  display: block;
  font-size: 17px;
  font-weight: normal;
  padding-top: 20px;
  letter-spacing:0px;
  color: #333;
}

.pz-hots {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pz-hot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 430px;
  min-height: 430px;
}

/* 偶数行：图左文右 */
.pz-hot:nth-child(even) {
  direction: rtl;
}

.pz-hot:nth-child(even) > * {
  direction: ltr;
}

.pz-hot-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding:30px 80px;
  background: var(--pz-panel, #2d6a3e);
  color: #fff;
  box-sizing: border-box;
}

/* 各板块配色：贴合站点绿系，彼此区分 */
.pz-hot:nth-child(8n + 1) { --pz-panel: #e08e56; }
.pz-hot:nth-child(8n + 2) { --pz-panel: #80b59c; }
.pz-hot:nth-child(8n + 3) { --pz-panel: #c59747; }
.pz-hot:nth-child(8n + 4) { --pz-panel: #a68799; }
.pz-hot:nth-child(8n + 5) { --pz-panel: #a29060; }
.pz-hot:nth-child(8n + 6) { --pz-panel: #80b59c; }
.pz-hot:nth-child(8n + 7) { --pz-panel: #768e36; }
.pz-hot:nth-child(8n + 8) { --pz-panel: #67609e; }

.pz-label {
  margin: 0 0 16px;
  font-size:35px;
  font-weight: 700;
  color: #fff;
  line-height:35px; padding-bottom:8px; padding-top:20px;
}

.pz-num {
  margin-right: 6px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0.04em;
}

.pz-products {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  column-gap: 16px;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.pz-products li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: opacity 0.25s;
  overflow: hidden;
  white-space: nowrap;
}

.pz-products li a::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-mask: url("../images/cp.svg") center / contain no-repeat;
  mask: url("../images/cp.svg") center / contain no-repeat;
  opacity: 1;
}

.pz-products li a:hover {
  opacity: 0.5; 
}

.pz-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 30px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.pz-more::after {
  content: '→';
}

.pz-more:hover {
  background: #fff;
  color: var(--pz-panel, #2d6a3e);
}

.pz-hot-visual {
  position: relative;
  display: block;
  height: 100%;
  height: 430px;
  overflow: hidden;
  background: #1a1a1a;
  text-decoration: none;
}

.pz-hot-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.pz-hot-visual:hover img {
  transform: scale(1.03);
}

.pz-hot-pager {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family:Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.pz-hot:nth-child(even) .pz-hot-pager {
  right: auto;
  left: 28px;
}

.pz-hot-pager em {
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.pz-hot-pager i {
  font-style: italic;
  font-size: 22px;
  opacity: 0.9;
}

.pz-hot-pager b {
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  opacity: 0.95;
}


@media (max-width:768px) {
  .pz-page {
    padding: 48px 0 64px;
  }

  .pz-headline {
    margin-bottom: 36px;
    font-size: 36px;
    letter-spacing: 4px;
  }

  .pz-hot,
  .pz-hot:nth-child(even) {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    direction: ltr;
  }

  .pz-hot:nth-child(even) .pz-hot-visual {
    order: -1;
  }

  .pz-hot-info {
    padding: 36px 24px;
  }

  .pz-hot-visual {
    min-height: 260px;
    aspect-ratio: 4 / 3;
	width:100%;
  }

  .pz-products {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .pz-hot-pager,
  .pz-hot:nth-child(even) .pz-hot-pager {
    left: auto;
    right: 16px;
    bottom: 16px;
  }

  .pz-hot-pager em {
    font-size: 32px;
  }
  
  
  
  
.pz-headline {
  margin: 0 0 30px;
  max-width: 720px;
  font-size:22px;
  font-weight: 700;
  line-height: 1.15;
  color: #1f5415;
  letter-spacing:0px;
}

.pz-headline span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding-top: 10px;
  letter-spacing:0px;
  color: #333;
}


.pz-label {
  margin: 0 0 16px;
  font-size:22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35; padding-bottom:8px; padding-top:0px;
}

.pz-num {
  margin-right: 6px;
  font-family: 'DINEngschrift', 'Barlow', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0.04em;
}



.pz-products li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.25s;
  overflow: hidden;
  white-space: nowrap;
}


.pz-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding:3px 30px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

}
