/* ========== 产品页共用样式 ========== */

/* 产品页CSS变量 */
:root {
  --click-1: #eaf6fa;
  --click-5: #00aec7;
  --click-6: #0596b3;
  --click-10: #02435f;
  --font-1: #ffffff;
  --font-2: #333333;
  --font-3: #666666;
  --font-4: #999999;
  --line-1: #d3eef5;
  --line-2: #e8edf2;
  --bg-page: #ffffff;
  --bg-card: #ffffff;
  --shadow-card: 0 16px 40px rgba(2, 67, 95, 0.08);
  --shadow-hero: 0 20px 48px rgba(15, 32, 43, 0.18);
}

*::selection {
  background: #0596b3;
  color: #ffffff;
}

/* 页面基础重置 */
body {
  overflow-x: hidden;
}

.page {
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .general-padding {
    padding: 0 24px;
  }
}

/* ========== Hero 区 ========== */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 64px;
}

.hero-copy {
  width: 420px;
  color: #ffffff;
  text-align: center;
}

.hero-copy:empty {
  display: none;
}

.hero-copy h1 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

@media screen and (max-width: 1440px) {
  .hero {
    height: 416px;
  }

  .hero-inner {
    height: 416px;
  }
}

/* ========== 产品入口区 ========== */
.product-entry {
  margin-top: -1px;
  height: 302px;
  background: #f3f3f3;
}

.product-entry-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 302px;
}

.windzx-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.windzx-button {
  width: 366px;
  min-width: 366px;
  height: 130px;
  border-radius: 12px;
  border: 1px solid #000000;
  box-shadow: 0 14px 28px rgba(15, 32, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

@media (max-width: 1440px) {
  .windzx-button {
    /* 宽度固定 366px，min-width 保证不换行 */
  }

  .windzx-button span {
    /* 字号固定 24px，white-space 保证不换行 */
  }
}

.windzx-button.cursor {
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.windzx-button.cursor:hover {
  transform: translateY(-2px);
  border-color: #000000;
  box-shadow: 0 18px 34px rgba(15, 32, 43, 0.12);
}

.windzx-button span {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0;
  color: #000000;
  white-space: nowrap;
}

.windzx-icon {
  width: 56px;
  height: 56px;
  margin-right: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.windzx-icon img,
.windzx-icon svg {
  width: 64px;
  height: 64px;
  display: block;
}

.foot-link-icp:hover {
  text-decoration: underline;
}

/* ========== 内容区容器 ========== */
.content-wrap {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 32px;
}

/* ========== 统一标题排版 ========== */
.section-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #333333;
  text-align: center;
}

.section-subtitle {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  color: #333333;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.section-desc {
  margin-top: 32px;
  font-size: 20px;
  line-height: 30px;
  color: #666666;
  text-align: center;
}

.section-desc--narrow {
  margin: 22px auto 0;
  max-width: 1020px;
}
