/* ==================== 下载页面 - 标准 App Store + 安卓下载 + 二维码 风格 ==================== */

.dl-hero {
  margin-top: var(--nav-height, 64px);
  background: var(--bg-card, #ffffff);
  padding: 100px 24px;
  text-align: center;
  min-height: calc(100vh - 64px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.dl-hero-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 8px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  margin: 0 auto 24px;
}
.dl-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary, #1d1d1f);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.dl-hero-desc {
  font-size: 17px;
  color: var(--text-secondary, #6e6e73);
  margin-bottom: 48px;
  line-height: 1.6;
}
.dl-hero-hint {
  font-size: 13px;
  color: var(--text-secondary, #6e6e73);
  opacity: 0.7;
  margin-top: 32px;
}

/* ==================== 按钮组(横排) ==================== */
.dl-store-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 黑色商店按钮(Apple/Android 标准设计) */
.dl-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  text-decoration: none;
  min-width: 180px;
  height: 60px;
  box-sizing: border-box;
  transition: background 0.18s, transform 0.18s;
}
.dl-store-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
/* 禁用占位（鸿蒙未上架 AGC 时） — 灰态 + 不响应 hover */
.dl-store-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.dl-store-btn--disabled:hover {
  background: #000000;
  transform: none;
}
.dl-store-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  fill: #FFFFFF;
}
.dl-store-icon--android {
  width: 32px;
  height: 32px;
}
.dl-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}
.dl-store-tag {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.3px;
  min-height: 13px;
}
.dl-store-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* 二维码卡 */
.dl-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.dl-qr-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-qr-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.dl-qr-tip {
  font-size: 11px;
  color: var(--text-secondary, #6e6e73);
  margin: 0;
  letter-spacing: 0.3px;
}

/* ==================== 首页 section-download override(用 dl-store-row 后改纵向居中) ==================== */
.section-download .download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.section-download .download-info {
  max-width: 720px;
  flex: none;
}
.section-download .download-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
  .dl-hero {
    padding: 64px 20px;
    min-height: auto;
  }
  .dl-hero-logo {
    width: 72px;
    height: 72px;
  }
  .dl-hero-title {
    font-size: 28px;
  }
  .dl-hero-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .dl-store-row {
    flex-direction: column;
    gap: 14px;
  }
  .dl-store-btn {
    min-width: 220px;
    width: 100%;
  }
  .dl-qr-card {
    /* 移动端隐藏二维码,直接点按钮下载 */
    display: none;
  }
}
