body {
  background: url(../image//download-page/header-banner.png) no-repeat 0 0;
  background-size: 100% 500px;
}
.site-header {
  background: transparent;
  border: none;
}

/* 顶部标题区 */
.download-hero {
  height: calc(500px - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-64px);
  text-align: center;
}

.download-content {
  background: url(../image//download-page/main-banner@2x.png) no-repeat 0 0;
  background-size: cover;
  overflow: hidden;
}
.download-title {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 72px;
  color: #1e304a;
  margin-bottom: 40px;
}

.download-subtitle {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 24px;
  color: #596178;
}

/* 客户端卡片区域 */
.download-clients {
  margin-top: 132px;
  padding: 10px 16px 80px;
}

.client-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.client-card {
  width: 388px;
  min-height: 402px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.client-card:hover{
    box-shadow: 0px 0px 20px 0px rgba(192, 225, 252, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: translateY(-2px);
}
.client-card:hover img{
    transform: scale(1.1);
}
.client-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-card-inner img {
  --icon-size: 82px;
  margin-bottom: 72px;
  width: var(--icon-size);
  height: var(--icon-size);
}
.client-logo {
  width: 68px;
  height: 68px;
  border-radius: 20%;
  margin: 0 auto 24px;
}

.client-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.client-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.client-btn {
  width: 160px;
  height: 40px;
  font-size: 14px;
}

/* 常见问题区域 */
.download-faq {
  padding: 10px 16px 40px;
}

.faq-title {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  color: #1e304a;
  margin-bottom: 82px;
}

.faq-block {
  margin: 0 auto  ;
  padding-bottom: 80px;
}

.faq-block-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.faq-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
  color: #111827;
}

.faq-list {
  margin-left: 20px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

.faq-list li + li {
  margin-top: 4px;
}

/* 响应式调整 */
@media (max-width: 900px) {
  .download-hero {
    padding: 64px 16px 32px;
  }

  .download-title {
    font-size: 28px;
  }

  .client-grid {
    gap: 24px;
  }

  .client-card {
    width: 100%;
    max-width: 320px;
  }

  .faq-block {
    margin-bottom: 20px;
  }
}

.download-tips{
  margin-top: 24px;
  color: #888;
}
