/* ht-home — 首页主体全新布局（banner 区域样式不在此文件） */

:root {
  --ht-ink: var(--theme-ink);
  --ht-muted: var(--theme-muted);
  --ht-cream: var(--theme-cream);
  --ht-dark: var(--theme-accent);
  --ht-accent: var(--theme-accent);
  --ht-accent-dark: var(--theme-accent-dark);
  --ht-accent-light: var(--theme-accent-light);
  --ht-accent-soft: var(--theme-accent-soft);
  --ht-secondary: var(--theme-secondary);
  --ht-purple-light: var(--theme-surface);
  --ht-line: var(--theme-line);
  --ht-link: var(--theme-link);
  --ht-link-hover: var(--theme-link-hover);
  --ht-gradient: var(--theme-gradient);
  --ht-gradient-diagonal: var(--theme-gradient-diag);
  --ht-on-dark: var(--theme-on-dark);
  --ht-on-dark-muted: var(--theme-on-dark-muted);
  --ht-on-dark-subtle: var(--theme-on-dark-subtle);
  --ht-on-dark-accent: var(--theme-on-dark-accent);
  --ht-radius: 8px;
  --ht-max: 1280px;
  --ht-gap: clamp(20px, 3vw, 40px);
  --ht-red: #ff0000;
}

.ht-home {
  position: relative;
  z-index: 0;
  isolation: isolate;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ht-ink);
  background: var(--ht-cream);
}

.ht-home *,
.ht-home *::before,
.ht-home *::after {
  box-sizing: border-box;
}

.ht-home a {
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.ht-wrap {
  width: min(100%, var(--ht-max));
  margin: 0 auto;
  padding: 0 20px;
}

.ht-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-left: 3px solid var(--ht-link);
  color: var(--ht-link);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ht-title {
  margin: 0;
  color: var(--ht-ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ht-lead {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--ht-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid var(--ht-ink);
  border-radius: var(--ht-radius);
  background: transparent;
  color: var(--ht-ink);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.myht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ht-ink);
  background: white;
  color: var(--ht-ink);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.myht-btn:hover {

  background: linear-gradient(to top, var(--theme-highlight-tint), transparent);
}
.mytpm-btn__text{
    color: #000;
}

.ht-btn:hover {
  background: var(--ht-ink);
  color: #fff;
}

.ht-btn--fill {
  border-color: transparent;
  background: var(--ht-gradient);
  color: #fff;
}

.ht-btn--fill:hover {
  background: var(--ht-gradient);
  border-color: transparent;
  filter: brightness(0.95);
}

.ht-btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ht-btn--ghost:hover {
  background: #fff;
  color: var(--ht-ink);
  border-color: #fff;
}

/* —— 1. 焦点介绍 —— */
.ht-spotlight {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--ht-gradient);
  color: var(--ht-on-dark);
}

.ht-spotlight .ht-eyebrow {
  border-left-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.ht-spotlight .ht-lead {
  color: var(--ht-on-dark-muted);
  max-width: 62ch;
}

.ht-spotlight::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.ht-spotlight__grid {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--ht-gap);
  align-items: center;
}

.ht-spotlight__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ht-spotlight__link {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--ht-radius);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.ht-spotlight__link:hover {
  border-color: var(--ht-accent);
  background: var(--ht-accent-soft);
}

.ht-spotlight__title {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ht-spotlight__visual {
  position: relative;
  z-index: 0;
  min-height: 320px;
}

.ht-spotlight__frame {
  position: relative;
  inset: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--ht-radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(var(--theme-accent-dark-rgb), 0.22);
}

.ht-spotlight__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht-spotlight__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* —— 2. 热门产品 —— */
.ht-deals {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #fff;
}

.ht-deals__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.ht-deals__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ht-line);
}

.ht-deals__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
  color: var(--ht-ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.ht-deals__tab img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.ht-deals__tab.is-active,
.ht-deals__tab:hover {
  background: var(--ht-gradient-diagonal);
  border-color: transparent;
  color: #fff;
}

.ht-deals__panel {
  display: none;
}

.ht-deals__panel.is-active {
  display: block;
}

.ht-deals__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.ht-deals__promo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ht-deals__promo-top,
.ht-deals__promo-bottom {
  border-radius: var(--ht-radius);
  overflow: hidden;
  min-height: 140px;
  background-size: cover;
  background-position: center;
}

.ht-deals__promo-top {
  flex: 1.2;
  height: 100%;
}

.ht-deals__promo-bottom {
  height: 100%;
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
}

.ht-deals__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ht-product {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--ht-line);
  border-top: 4px solid var(--ht-accent);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ht-product__title,
.ht-product__title a {
  color: var(--ht-ink);
}

.ht-product__tag {
  margin-bottom: 12px;
  color: var(--ht-link);
  font-size: 12px;
  font-weight: 700;
}

.ht-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  /* 从右下角的紫色渐变到左上角的白色 */
  background: linear-gradient(to left top, var(--theme-highlight-tint), transparent);
  
}

.ht-product__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.ht-product__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.ht-product__flag {
  flex-shrink: 0;
  padding: 2px 8px;
  /* background: var(--ht-red); */
  color: var(--ht-red);
  border: 1px solid var(--ht-red);
  font-size: 11px;
  font-weight: 800;
}

.ht-product__desc {
  margin: 0 0 12px;
  color: var(--ht-muted);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}

.ht-product__price {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--ht-red);
}

.ht-product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--ht-line);
}

.ht-product__price small {
  font-size: 13px;
  font-weight: 600;
}

.ht-product__old {
  display: block;
  margin-top: 4px;
  color: var(--ht-muted);
  font-size: 12px;
  text-decoration: line-through;
}

/* —— 3. 新闻 —— */
.ht-feed {
  padding: clamp(56px, 7vw, 80px) 0;
  background: var(--ht-gradient);
  color: var(--ht-on-dark);
}

.ht-feed .ht-title,
.ht-feed .ht-lead {
  color: var(--ht-on-dark);
}

.ht-feed .ht-lead {
  color: var(--ht-on-dark-muted);
}

.ht-feed .ht-eyebrow {
  border-left-color: var(--ht-on-dark-accent);
  color: var(--ht-on-dark-accent);
  background: rgba(255, 255, 255, 0.08);
}

.ht-feed__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ht-feed__badge {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.ht-feed__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ht-feed__list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ht-feed__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ht-on-dark);
  transition: background 0.2s ease;
}

.ht-feed__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.ht-feed__date {
  color: var(--ht-on-dark-subtle);
  font-size: 13px;
  line-height: 1.5;
}

.ht-feed__tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ht-on-dark-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ht-feed__item-title {
  margin: 0 0 8px;
  color: var(--ht-on-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.ht-feed__summary {
  margin: 0;
  color: var(--ht-on-dark-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* —— 4. 资源 Bento —— */
.ht-bento {
  padding: clamp(56px, 7vw, 88px) 0;
}

.ht-bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ht-bento__cell {
  grid-column: span 3;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.ht-bento__cell.is-open {
  grid-column: span 6;
  border-color: var(--ht-accent);
  background: linear-gradient(160deg, #fff, var(--theme-cream));
  box-shadow: 0 18px 36px rgba(var(--theme-accent-rgb), 0.12);
}

.ht-bento__cell-title {
  margin: 0 0 10px;
  color: var(--ht-ink);
  font-size: 17px;
  font-weight: 800;
}

.ht-bento__cell--wide {
  grid-column: span 6;
  cursor: default;
}

.ht-bento__cell-desc {
  margin: 0;
  color: var(--ht-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ht-bento__cell-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ht-link);
  font-size: 13px;
  font-weight: 700;
}

.ht-bento__cell-link:hover {
  color: var(--ht-link-hover);
}

/* —— 5. 解决方案 —— */
.ht-stack {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #fff;
}

.ht-stack__shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  overflow: hidden;
  min-height: 480px;
}

.ht-stack__nav {
  display: flex;
  flex-direction: column;
  background: var(--ht-gradient-diagonal);
}

.ht-stack__nav-item {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--ht-on-dark-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.ht-stack__nav-item.is-active,
.ht-stack__nav-item:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.ht-stack__body {
  position: relative;
  background: var(--ht-cream);
}

.ht-stack__pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.ht-stack__pane.is-active {
  display: grid;
}

.ht-stack__media {
  position: relative;
  overflow: hidden;
}

.ht-stack__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-stack__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.ht-stack__content h3 {
  margin: 0 0 12px;
  color: var(--ht-ink);
  font-size: 24px;
  font-weight: 800;
}

.ht-stack__content p {
  margin: 0 0 16px;
  color: var(--ht-muted);
  line-height: 1.7;
}

.ht-stack__features {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--ht-ink);
  line-height: 1.8;
}

.ht-stack__recs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ht-stack__rec {
  padding: 8px 14px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
  color: var(--ht-ink);
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.ht-stack__rec.is-active,
.ht-stack__rec:hover {
  border-color: var(--ht-accent);
  background: var(--ht-gradient-diagonal);
  color: #fff;
}

/* —— 6. 合作伙伴 —— */
.ht-partners {
  padding: 48px 0;
  background: var(--ht-cream);
  overflow: hidden;
}

.ht-partners__track-wrap {
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ht-partners__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ht-marquee 40s linear infinite;
}

.ht-partners__track:hover {
  animation-play-state: paused;
}

@keyframes ht-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ht-partner {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
  padding: 16px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
}

.ht-partner img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.ht-partner span {
  font-size: 12px;
  color: var(--ht-muted);
  text-align: center;
}

.ht-partner--more {
  font-weight: 700;
  color: var(--ht-link);
}

/* —— 7. 全球网络 —— */
.ht-regions {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--ht-cream);
}

.ht-regions__dc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.ht-regions__dc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border-left: 4px solid var(--ht-accent);
  background: #fff;
  border: 1px solid var(--ht-line);
  border-left: 4px solid var(--ht-accent);
  border-radius: var(--ht-radius);
  color: var(--ht-ink);
}

.ht-regions__dc strong,
.ht-regions__dc li {
  color: var(--ht-ink);
}

.ht-regions__dc ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ht-muted);
}

.ht-regions__dc-label {
  align-self: start;
  padding: 8px 14px;
  background: var(--ht-gradient-diagonal);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--ht-radius);
  white-space: nowrap;
}

.ht-regions__countries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ht-country {
  position: relative;
  padding: 20px 18px 18px 72px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
}

.ht-country img {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ht-country h4 {
  margin: 0 0 8px;
  color: var(--ht-ink);
  font-size: 16px;
}

.ht-country p {
  margin: 0 0 12px;
  color: var(--ht-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* —— 8. 文档 —— */
.ht-knowledge {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--ht-gradient);
  color: var(--ht-on-dark);
}

.ht-knowledge .ht-title,
.ht-knowledge .ht-eyebrow {
  color: var(--ht-on-dark);
}

.ht-knowledge .ht-eyebrow {
  border-left-color: var(--ht-on-dark-accent);
  color: var(--ht-on-dark-accent);
}

.ht-knowledge__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.ht-knowledge__col {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ht-radius);
}

.ht-knowledge__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ht-knowledge__col-head img {
  width: 28px;
  height: 28px;
}

.ht-knowledge__col-title {
  flex: 1;
  color: var(--ht-on-dark);
  font-size: 16px;
  font-weight: 700;
}

.ht-knowledge__more {
  color: var(--ht-on-dark-accent);
  font-size: 13px;
  font-weight: 700;
}

.ht-knowledge__more:hover {
  color: #fff;
}

.ht-knowledge__link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--ht-on-dark-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ht-knowledge__link:hover {
  color: var(--ht-on-dark);
}

.ht-knowledge__time {
  display: block;
  margin-bottom: 4px;
  color: var(--ht-on-dark-subtle);
  font-size: 12px;
}

/* —— 9. 选购指南 —— */
.ht-picker {
  padding: clamp(56px, 7vw, 88px) 0;
}

.ht-picker__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 28px;
}

.ht-picker__scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ht-picker__scenario {
  padding: 16px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
}

.ht-picker__scenario h4 {
  margin: 0 0 6px;
  color: var(--ht-ink);
  font-size: 14px;
}

.ht-picker__scenario p {
  margin: 0 0 8px;
  color: var(--ht-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ht-picker__rec {
  color: var(--ht-link);
  font-size: 12px;
  font-weight: 800;
}

.ht-picker__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ht-picker__links a {
  padding: 8px 12px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  color: var(--ht-ink);
  font-size: 13px;
  font-weight: 700;
}

.ht-picker__links a:hover {
  border-color: var(--ht-accent);
  color: var(--ht-link);
}

.ht-picker__faq {
  padding: 20px;
  border: 1px solid var(--ht-line);
  border-radius: var(--ht-radius);
  background: #fff;
}

.ht-picker__faq-item + .ht-picker__faq-item {
  margin-top: 10px;
  border-top: 1px solid var(--ht-line);
  padding-top: 10px;
}

.ht-picker__faq-item h4 {
  margin: 0 0 6px;
  color: var(--ht-ink);
  font-size: 14px;
}

.ht-picker__faq-item p {
  margin: 0;
  color: var(--ht-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ht-picker__faq-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--ht-link);
  font-size: 12px;
  font-weight: 700;
}

.ht-picker__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 22px 24px;
  background: var(--ht-gradient);
  color: var(--ht-on-dark);
  border-radius: var(--ht-radius);
}

.ht-picker__bar .ht-bento__cell-title,
.ht-picker__bar .ht-title {
  color: var(--ht-on-dark);
}

.ht-picker__bar .ht-lead {
  color: var(--ht-on-dark-muted);
  margin-top: 8px;
}

.ht-picker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* —— 10. 底部 CTA —— */
.ht-join {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    linear-gradient(rgba(var(--theme-accent-dark-rgb), 0.85), rgba(var(--theme-accent-light-rgb), 0.88)),
    url("/web/my2/myassets/advisory-bg.jpg") center / cover no-repeat;
  color: var(--ht-on-dark);
}

.ht-join .ht-title {
  color: var(--ht-on-dark);
}

.ht-join .ht-eyebrow {
  border-left-color: var(--ht-on-dark-accent);
  color: var(--ht-on-dark-accent);
  background: rgba(255, 255, 255, 0.1);
}

.ht-join .ht-lead {
  color: var(--ht-on-dark-muted);
}

.ht-join__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--ht-gap);
  align-items: center;
}

.ht-join__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ht-join__feature {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ht-radius);
  background: rgba(255, 255, 255, 0.06);
}

.ht-join__feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ht-on-dark);
  font-size: 15px;
}

.ht-join__feature p {
  margin: 0;
  color: var(--ht-on-dark-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ht-join__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ht-join__btns .tpm-btn {
  min-height: 44px;
}

/* —— 导航覆盖（banner 区域） —— */
.page-header-parent .discolorheader.page-header {
  backdrop-filter: none;
  padding-bottom: 0;
  box-shadow: none;
  border-bottom: none;
}

.page-header-parent .discolorheader.page-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-header-parent .discolorheader.page-header:hover::before {
  box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%);
  z-index: 1;
}

.page-header > .main .main-bottom { height: 64px; }
.page-header .main-bottom .submenu.selected:not(.activity)::after { display: none; }
.page-header > .main .main-bottom .bottom-wear-left ul { height: 100%; }
.page-header .main-bottom .submenu {
  line-height: 64px;
  height: 100%;
  white-space: nowrap;
}

.page-header > .main {
  width: 100%;
  position: relative;
  min-width: auto;
  padding: 0 16px;
  z-index: 2;
  border-bottom: 1px solid rgba(207, 207, 207, 0.5);
  backdrop-filter: blur(10px);
}

.page-header .main-bottom .submenu,
.page-header > .main .main-top .top-wear-right .link-style {
  color: #191919;
}

@media (max-width: 500px) {
  .tpm-prod-hero-parent .header.page-header-parent {
    display: flex !important;
  }
  .tpm-prod-hero-parent .header.page-header-parent .section {
    display: flex;
  }
}

/* —— QQ 弹窗（保留） —— */
.WPA3-SELECT-PANEL {
  z-index: 2147483647;
  width: 463px;
  height: 292px;
  margin: 0;
  padding: 0;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 15px #d4d4d4;
}

.WPA3-SELECT-PANEL * {
  position: static;
  font-family: Microsoft YaHei, Simsun;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-TOP { height: 25px; }

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-CLOSE {
  float: right;
  display: block;
  width: 47px;
  height: 25px;
  background: url(http://combo.b.qq.com/crm/wpa/release/3.3/wpa/views/SelectPanel-sprites.png) no-repeat;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-CLOSE:hover {
  background-position: 0 -25px;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-MAIN { padding: 23px 20px 45px; }

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-GUIDE {
  margin-bottom: 42px;
  font-family: "Microsoft Yahei";
  font-size: 16px;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-SELECTS {
  width: 123px;
  height: 111px;
  margin: 0 auto;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-CHAT {
  float: right;
  display: block;
  width: 88px;
  height: 111px;
  background: url(http://combo.b.qq.com/crm/wpa/release/3.3/wpa/views/SelectPanel-sprites.png) no-repeat 0 -80px;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-AIO-CHAT { float: left; }

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-QQ {
  display: block;
  width: 76px;
  height: 76px;
  margin: 6px;
  background: url('/web/my2/infoassets/images/telegram.png') no-repeat fixed center / cover !important;
}

.WPA3-SELECT-PANEL .WPA3-SELECT-PANEL-LABEL {
  display: block;
  padding-top: 10px;
  color: #00a2e6;
  text-align: center;
}

/* 确保固定导航栏始终在首页内容之上（避免 transform 层叠遮挡） */
.header.page-header-parent {
  z-index: 1000 !important;
}

.header.page-header-parent .pls-nav-dropdown {
  z-index: 1001 !important;
}

.ht-spotlight__frame,
.ht-spotlight__visual,
.ht-spotlight__grid {
  transform: none;
  will-change: auto;
}

/* —— 响应式 —— */
@media (max-width: 1100px) {
  .ht-spotlight__grid,
  .ht-deals__layout,
  .ht-stack__shell,
  .ht-stack__pane,
  .ht-picker__split,
  .ht-join__grid {
    grid-template-columns: 1fr;
  }

  .ht-deals__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ht-bento__cell,
  .ht-bento__cell.is-open { grid-column: span 6; }
  .ht-bento__cell--wide { grid-column: span 12; }
  .ht-regions__countries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ht-knowledge__cols { grid-template-columns: 1fr; }
  .ht-join__features { grid-template-columns: 1fr; }
  .ht-spotlight__visual { min-height: 240px; margin-top: 20px; }
}

@media (max-width: 720px) {
  .ht-deals__cards,
  .ht-picker__scenarios,
  .ht-regions__dc-grid,
  .ht-regions__countries {
    grid-template-columns: 1fr;
  }

  .ht-feed__item { grid-template-columns: 1fr; gap: 8px; }
  .ht-feed__list { height: 380px; }
  .ht-bento__cell,
  .ht-bento__cell.is-open,
  .ht-bento__cell--wide { grid-column: span 12; }
  .ht-stack__pane { grid-template-columns: 1fr; }
  .ht-stack__media { min-height: 200px; }
}
