/* ========== 孔雀开屏 Canvas ========== */
.radiant-canvas-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(180deg, #EBF2FF 0%, #DDE8FC 50%, #C9D9F5 100%);
  display: flex;
  justify-content: center;
}

.radiant-canvas {
  display: block;
  max-width: 100%;
  width: 1100px;
  height: 520px;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

/* ========== Hero 区域 ========== */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  --hero-dots-x: 0px;
  --hero-dots-y: 0px;
  --hero-content-x: 0px;
  --hero-content-y: 0px;
  --hero-visual-x: 0px;
  --hero-visual-y: 0px;
}

.hero-bg {
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: url('../../images/home_banner.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(var(--hero-bg-x), var(--hero-bg-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(30, 91, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 91, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: var(--hero-dots-x) var(--hero-dots-y);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* 左侧内容 */
.hero-content {
  flex: 1;
  max-width: 560px;
  transform: translate(var(--hero-content-x), var(--hero-content-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid white;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* 右侧书籍 */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 420px;
  transform: translate(var(--hero-visual-x), var(--hero-visual-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.books-container {
  position: relative;
  width: min(100%, 660px);
  height: 420px;
  transform-style: preserve-3d;
  animation: booksStageFloat 6s ease-in-out infinite;
  isolation: isolate;
}

/* 科技感发光底盘 */
.tech-platform {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 460px;
  height: 88px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(30, 91, 255, 0.42) 0%, rgba(0, 212, 255, 0.18) 45%, transparent 75%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  animation: techPlatformPulse 4s ease-in-out infinite;
}

/* 科技感旋转光环 */
.tech-ring {
  position: absolute;
  left: 50%;
  bottom: 68px;
  border-radius: 50%;
  transform: translateX(-50%) rotateX(76deg);
  z-index: 0;
  pointer-events: none;
}

.tech-ring-1 {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(30, 91, 255, 0.3);
  animation: techRingRotate 14s linear infinite;
}

.tech-ring-2 {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(0, 212, 255, 0.22);
  animation: techRingRotate 10s linear infinite reverse;
}

@keyframes techPlatformPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes techRingRotate {
  to {
    transform: translateX(-50%) rotateX(76deg) rotateZ(360deg);
  }
}

.book {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: clamp(160px, 32vw, 238px);
  aspect-ratio: 791 / 1024;
  transform-origin: 50% 82%;
  border-radius: 6px;
  transition:
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  will-change: transform, filter;
}

.book-left {
  z-index: 2;
  transform: translateX(-96%) translateY(12px) rotate(-12deg) rotateY(11deg) rotateX(3deg) translateZ(4px);
  filter: drop-shadow(0 16px 20px rgba(16, 31, 64, 0.17)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.22));
  animation: bookEnterLeft 1s cubic-bezier(0.22, 0.9, 0.24, 1) 0.2s backwards;
}
.book-left:hover {
  transform: translateX(-101%) translateY(-8px) rotate(-9deg) rotateY(7deg) rotateX(2deg) translateZ(44px);
}

.book-center {
  z-index: 3;
  transform: translateX(-50%) translateY(-12px) rotate(3deg) rotateY(-3deg) translateZ(36px);
  filter: drop-shadow(0 24px 30px rgba(16, 31, 64, 0.24)) drop-shadow(0 0 24px rgba(30, 91, 255, 0.3));
  animation: bookEnterCenter 1s cubic-bezier(0.22, 0.9, 0.24, 1) backwards;
}
.book-center:hover {
  transform: translateX(-50%) translateY(-34px) rotate(0deg) rotateY(0deg) translateZ(76px);
}

.book-right {
  z-index: 2;
  transform: translateX(-2%) translateY(20px) rotate(13deg) rotateY(-12deg) rotateX(3deg) translateZ(0);
  filter: drop-shadow(0 16px 20px rgba(16, 31, 64, 0.17)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.22));
  animation: bookEnterRight 1s cubic-bezier(0.22, 0.9, 0.24, 1) 0.4s backwards;
}
.book-right:hover {
  transform: translateX(3%) translateY(-2px) rotate(9deg) rotateY(-7deg) rotateX(2deg) translateZ(44px);
}

.books-container:hover .book-left {
  transform: translateX(-103%) translateY(6px) rotate(-14deg) rotateY(9deg) rotateX(2deg) translateZ(14px);
}

.books-container:hover .book-center {
  transform: translateX(-50%) translateY(-22px) rotate(1deg) rotateY(0deg) translateZ(52px);
}

.books-container:hover .book-right {
  transform: translateX(5%) translateY(14px) rotate(15deg) rotateY(-9deg) rotateX(2deg) translateZ(10px);
}

.books-container .book:hover {
  z-index: 4;
  opacity: 1;
}

.books-container .book-left:hover {
  transform: translateX(-101%) translateY(-8px) rotate(-9deg) rotateY(7deg) rotateX(2deg) translateZ(44px);
}

.books-container .book-center:hover {
  transform: translateX(-50%) translateY(-34px) rotate(0deg) rotateY(0deg) translateZ(76px);
}

.books-container .book-right:hover {
  transform: translateX(3%) translateY(-2px) rotate(9deg) rotateY(-7deg) rotateX(2deg) translateZ(44px);
}

.book-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.book:hover .book-image {
  transform: translateZ(10px) scale(1.025);
}

@keyframes booksStageFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(1.5deg);
  }
}

/* 页面加载：书籍从中间向两侧展开 */
@keyframes bookEnterLeft {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) rotateX(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-96%) translateY(12px) rotate(-12deg) rotateY(11deg) rotateX(3deg) translateZ(4px);
    opacity: 1;
  }
}

@keyframes bookEnterCenter {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(-12px) rotate(3deg) rotateY(-3deg) translateZ(36px);
    opacity: 1;
  }
}

@keyframes bookEnterRight {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) rotateX(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-2%) translateY(20px) rotate(13deg) rotateY(-12deg) rotateX(3deg) translateZ(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .books-container,
  .tech-platform,
  .tech-ring {
    animation: none;
  }

  .book,
  .book-image {
    animation: none;
    transition: none;
  }
}

/* ========== 统计数据条 ========== */
.stats-section {
  background: white;
  padding: 32px 0;
  margin: 0 -24px;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.stat-icon {
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-img {
  display: block;
  height: 48px;
  width: auto;
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.stat-suffix {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  top: -4px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ========== 报告列表 ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}

.view-all-link svg {
  transition: transform var(--transition-normal);
}

.view-all-link:hover {
  text-decoration: underline;
}

.view-all-link:hover svg {
  transform: translateX(4px);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.report-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid var(--color-border-light);
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.report-cover,
.report-cover-link {
  height: 180px;
  padding: 20px 16px;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.report-cover-link {
  text-decoration: none;
  cursor: pointer;
}

.report-cover::after,
.report-cover-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 300ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.report-card:hover .report-cover,
.report-card:hover .report-cover-link {
  transform: scale(1.025);
}

.report-card:hover .report-cover::after,
.report-card:hover .report-cover-link::after {
  opacity: 1;
  transform: translateX(70%);
}

.report-year {
  font-size: 16px;
  opacity: 0.9;
}

.report-name {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 4px;
}

.report-en {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
  line-height: 1.3;
}

.report-body {
  padding: 16px;
}

.report-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--color-text-secondary);
  background: var(--bg-page);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.report-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.report-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.report-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
}

.report-download-btn svg {
  transition: transform var(--transition-normal);
}

.report-download-btn:hover {
  text-decoration: underline;
}

.report-download-btn:hover svg {
  transform: translate(2px, -2px);
}

.report-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.report-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.report-card-btn-primary {
  background: var(--color-primary);
  color: white;
}

.report-card-btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
}

.report-card-btn-secondary {
  border-color: var(--color-border);
  background: white;
  color: var(--color-text-primary);
}

.report-card-btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ========== 洞察区域 ========== */
.insight-section .container-wide {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.insight-header {
  flex-shrink: 0;
  width: 260px;
  margin-bottom: 0;
}

.insight-header .section-title {
  margin-bottom: 8px;
}

.insight-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.insight-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--color-border-light);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 91, 255, 0.18);
}

.card-head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
}

.chart-placeholder {
  margin-top: 16px;
}

.line-chart svg {
  width: 100%;
  height: auto;
}

.line-chart polyline,
.line-chart circle,
.donut-chart circle,
.bar-fill {
  will-change: stroke-dashoffset, stroke-dasharray, opacity, width;
}

.donut-chart {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
}

.donut-chart svg {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-item b {
  color: var(--color-text-primary);
  margin-left: auto;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  width: 56px;
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-page);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-val {
  font-size: 12px;
  color: var(--color-text-secondary);
  width: 46px;
  text-align: left;
  flex-shrink: 0;
}

.opportunity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.opportunity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
  .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-section .container-wide {
    flex-direction: column;
  }

  .insight-header {
    width: 100%;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .books-container {
    width: min(100%, 600px);
    height: 380px;
  }

  .book {
    width: clamp(150px, 28vw, 220px);
    bottom: 48px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .books-container {
    height: 320px;
  }

  .book {
    width: clamp(118px, 34vw, 170px);
    bottom: 44px;
  }
}

/* ========== 全球贸易趋势分析 ========== */
.trend-analysis {
  background: #fff;
  overflow: hidden;
}

.trend-content {
  position: relative;
  display: grid;
  grid-template-columns: 372px minmax(0, 1fr);
  gap: 22px;
  min-height: 560px;
  align-items: stretch;
}

.trend-left {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #E4E8F0;
  padding: 26px 38px 26px 44px;
}

.trend-left-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #E8EBF1;
}

.trend-left-head .section-title {
  font-size: 22px;
  line-height: 1.35;
}

.trend-desc {
  max-width: 290px;
  font-size: 12px;
  line-height: 1.8;
  color: #596B8D;
  margin-top: 10px;
}

.trend-accordion {
  display: flex;
  flex-direction: column;
}

.trend-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #E8EBF1;
  color: var(--color-text-primary);
  text-align: left;
  transition: padding var(--transition-normal), color var(--transition-normal);
}

.trend-item:hover .trend-title,
.trend-item.active .trend-title {
  color: #111827;
}

.trend-item.active {
  padding: 28px 0 29px;
}

.trend-index {
  flex: 0 0 30px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  font-style: italic;
  color: var(--color-primary);
}

.trend-item-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trend-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.trend-title {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #3E4656;
  transition: color var(--transition-normal);
}

.trend-arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.trend-item.active .trend-arrow {
  opacity: 1;
  transform: translateX(0);
}

.trend-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #3F4654;
}

.trend-collapse-enter-active,
.trend-collapse-leave-active {
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.34s ease, margin-top 0.34s ease;
}

.trend-collapse-enter-from,
.trend-collapse-leave-to {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transform: translateY(-6px);
}

.trend-collapse-enter-to,
.trend-collapse-leave-from {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.trend-right {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px dashed rgba(214, 220, 230, 0.9);
}

.trend-right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.trend-media-placeholder {
  --trend-accent: var(--color-primary);
  --trend-accent-soft: rgba(30, 91, 255, 0.16);
  --trend-accent-pale: #DCE8FF;
  position: absolute;
  left: 2.5%;
  right: 6%;
  top: 27%;
  height: 64%;
  border: 1px solid rgba(30, 91, 255, 0.22);
  background:
    linear-gradient(135deg, var(--trend-accent-soft), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 76%, var(--trend-accent-soft), transparent 28%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(236, 241, 249, 0.82));
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.09);
}

.trend-media-placeholder::before,
.trend-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  opacity: 0.72;
}

.trend-media-placeholder::before {
  background-image:
    linear-gradient(90deg, var(--trend-accent), var(--trend-accent-pale)),
    linear-gradient(90deg, #DDE4EF 44%, transparent 44%),
    linear-gradient(90deg, #DDE4EF 56%, transparent 56%),
    linear-gradient(90deg, #DDE4EF 48%, transparent 48%),
    linear-gradient(90deg, #DDE4EF 62%, transparent 62%);
  background-size: 230px 18px, 62% 18px, 50% 18px, 58% 18px, 44% 18px;
  background-position: 30px 42px, 30px 92px, 30px 134px, 30px 176px, 30px 218px;
}

.trend-media-placeholder::after {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, var(--trend-accent-pale), rgba(255, 255, 255, 0));
  background-size: 40% 46%, 54% 2px;
  background-position: right 44px bottom 42px, right 46px bottom 72px;
}

.trend-preview-enter-active,
.trend-preview-leave-active {
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.trend-preview-enter-from,
.trend-preview-leave-to {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
}

.trend-preview-enter-to,
.trend-preview-leave-from {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========== HS编码查询 ========== */
.hs-header {
  margin-bottom: 28px;
}
.hs-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.hs-search-bar {
  margin-bottom: 20px;
}

.search-input-group {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 18px;
  transition: border-color var(--transition-fast);
}
.search-input-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 91, 255, 0.08);
}

.search-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 12px;
}

.hs-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--color-text-primary);
  background: transparent;
}
.hs-input::placeholder {
  color: var(--color-text-muted);
}

.hs-btn {
  padding: 10px 28px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.hs-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-text-secondary);
  background: white;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filter-tag.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.hs-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.hs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.hs-table thead {
  background: var(--bg-page);
}
.hs-table th {
  text-align: left;
  padding: 13px 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.hs-table td {
  padding: 14px 16px;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border-light);
}
.hs-table tbody tr:hover {
  background: rgba(30, 91, 255, 0.02);
}
.hs-table .code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
}
.hs-table .amount {
  font-weight: 600;
  color: var(--color-text-primary);
}
.btn-link {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
}
.btn-link:hover {
  text-decoration: underline;
}

/* ========== 合作伙伴生态 ========== */
.partners-header {
  text-align: left;
  margin-bottom: 22px;
}
.partners-header .section-title {
  margin-bottom: 26px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}
.partners-desc {
  font-size: 14px;
  color: #6A7D9A;
  margin: 0;
  max-width: 850px;
  line-height: 1.85;
}

.partners-eco {
  background: #fff;
  padding: 50px 0 28px;
}


.partners-flow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid #E4E8F0;
  border-radius: 3px;
}

.flow-left {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.flow-partner-card {
  background: #FAFBFE;
  border: 0;
  border-radius: 0;
  padding: 22px 26px 20px;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.flow-partner-logo {
  position: relative;
  width: 100px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: 600;
  font-size: 14px;
  background: transparent !important;
  outline-offset: -1px;
  overflow: hidden;
}

.flow-partner-logo span {
  display: none;
}

.flow-partner-logo::before {
  content: "";
  position: absolute;
  inset: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flow-left .flow-partner-card:nth-child(1) .flow-partner-logo::before {
  background-image: url('../../images/logo_icon.png');
}

.flow-left .flow-partner-card:nth-child(3) .flow-partner-logo {
  width: 125px;
  height: 54px;
  margin-top: 18px;
  margin-bottom: 20px;
}

.flow-left .flow-partner-card:nth-child(3) .flow-partner-logo::before {
  inset: 7px;
  background-image: url('../../images/linkedin-logo.png');
}

.flow-left .flow-partner-card:nth-child(5) .flow-partner-logo {
  width: 171px;
  height: 52px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.flow-left .flow-partner-card:nth-child(5) .flow-partner-logo::before {
  inset: 6px 8px;
  background-image: url('../../images/dun-bradstreet-logo.png');
}

.flow-partner-points {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.flow-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #0F1B2D;
}

.point-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1E5BFF;
  flex-shrink: 0;
}

.flow-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #1E5BFF;
  font-weight: 300;
  width: 24px;
  flex-shrink: 0;
}

.flow-arrow {
  position: relative;
  width: 42px;
  flex-shrink: 0;
  color: #1E5BFF;
}

.flow-arrow svg {
  width: 100%;
  height: 34px;
}

.flow-right {
  display: flex;
  flex-direction: column;
  gap: 29px;
  flex-shrink: 0;
  width: 180px;
}

.flow-result-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.result-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #EEF4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.result-icon svg {
  width: 19px;
  height: 19px;
}

.result-title {
  font-size: 13px;
  font-weight: 600;
  color: #0F1B2D;
  margin-bottom: 4px;
}

.result-sub {
  font-size: 11px;
  color: #6A7D9A;
}

.partners-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-card {
  background: white;
  border: 1px solid #E4E8F0;
  border-radius: 3px;
  padding: 16px 16px 18px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.detail-card:hover {
  box-shadow: none;
  border-color: #D9E0EA;
}

.detail-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 19px;
  padding-bottom: 17px;
  border-bottom: 1px solid #E4E8F0;
}

.detail-logo {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.detail-card:nth-child(2) .detail-logo span {
  font-size: 10px !important;
  line-height: 1;
  white-space: nowrap;
}

.detail-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F1B2D;
  margin-bottom: 6px;
  line-height: 1.35;
}

.detail-subtitle {
  font-size: 10px;
  color: #4F6381;
  line-height: 1.65;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 24px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #EEF4FF;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 15px;
  height: 15px;
}

.feature-name {
  font-size: 14px;
  font-weight: 600;
  color: #0F1B2D;
  margin-bottom: 5px;
  line-height: 1.35;
}

.feature-desc {
  font-size: 11px;
  color: #6A7D9A;
  line-height: 1.7;
}

/* ========== 数据统计横幅 ========== */
.stats-banner {
  position: relative;
  overflow: hidden;
}

.banner-bg-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 91, 255, 0.08) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.banner-stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  height: 140px;
  margin-top: 40px;
}

.banner-stat {
  text-align: center;
}

.banner-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1.5px;
  line-height: 1;
}
.banner-value .suffix {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
}

.banner-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ========== Logo行 ========== */
.logo-row-section {
  padding: 36px 0;
  background: white;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}
.logo-item:hover {
  opacity: 1;
}

.logo-box {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* ========== 平台介绍 ========== */
.platform-intro {
  background: #fff;
  padding: 62px 0 34px;
}

.platform-logo-banner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 40px 100px;
  max-width: 1000px;
  margin: 0 auto 36px;
}

.platform-logo-item {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-item img {
  display: block;
  max-width: 132px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  outline: 0;
}

.platform-copy {
  max-width: 900px;
  margin: 54px auto 54px;
  text-align: center;
}

.platform-copy-fade-enter-active,
.platform-copy-fade-leave-active {
  transition: opacity 260ms ease, transform 260ms ease;
}

.platform-copy-fade-enter-from {
  opacity: 0;
  transform: translateY(12px);
}

.platform-copy-fade-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

.platform-active-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.platform-quote {
  margin: 0;
  color: #70809A;
  font-size: 19px;
  line-height: 2.1;
  font-weight: 600;
}

.platform-tabs {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #E8EDF5;
}

.platform-tab {
  position: relative;
  height: 64px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: #727272;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.platform-tab::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7FA8FF;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.platform-tab:hover {
  color: var(--color-primary);
  background: rgba(30, 91, 255, 0.035);
}

.platform-tab.active {
  color: var(--color-primary);
  background: rgba(30, 91, 255, 0.055);
  transform: translateY(-1px);
}

.platform-tab.active::before {
  transform: scaleX(1);
}

.platform-tab-icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: currentColor;
  transition: transform 240ms ease;
}

.platform-tab.active .platform-tab-icon {
  transform: scale(1.08);
}

.platform-tab-icon::before,
.platform-tab-icon::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.platform-tab-icon--crossBorder {
  border-radius: 4px;
  background: currentColor;
}

.platform-tab-icon--crossBorder::before {
  width: 9px;
  height: 5px;
  left: 7px;
  top: 5px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.platform-tab-icon--crossBorder::after {
  width: 14px;
  height: 1px;
  left: 5px;
  top: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.platform-tab-icon--tradeCompany::before {
  width: 22px;
  height: 16px;
  left: 1px;
  top: 6px;
  border-radius: 2px;
  background: currentColor;
}

.platform-tab-icon--tradeCompany::after {
  width: 10px;
  height: 6px;
  left: 7px;
  top: 2px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.platform-tab-icon--soho::before {
  width: 22px;
  height: 22px;
  left: 1px;
  top: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.platform-tab-icon--soho::after {
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 8px 0 -7px currentColor, 0 -8px 0 -7px currentColor;
}

.platform-tab-icon--b2b::before {
  width: 19px;
  height: 21px;
  left: 3px;
  top: 2px;
  border-radius: 1px;
  background: currentColor;
}

.platform-tab-icon--b2b::after {
  width: 3px;
  height: 3px;
  left: 7px;
  top: 6px;
  background: #fff;
  box-shadow: 7px 0 0 #fff, 0 6px 0 #fff, 7px 6px 0 #fff, 0 12px 0 #fff, 7px 12px 0 #fff;
}

.platform-intro .intro-text,
.platform-intro .feature-badges {
  display: none;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto 40px;
}

.intro-para {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-secondary);
  text-align: center;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  min-width: 240px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(30, 91, 255, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg {
  width: 24px;
  height: 24px;
}

.badge-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.badge-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ========== 新闻动态 ========== */
.news-section {
  background: #F7F8FB;
  padding: 52px 0 54px;
}


.news-carousel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.news-carousel-header .section-title {
  margin-bottom: 8px;
}

.news-more-link {
  color: #5F6F8A;
  font-size: 12px;
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.news-more-link:hover {
  color: var(--color-primary);
}

.news-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}

.news-arrow {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid #B9D0FF;
  background: #EEF4FF;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.news-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.news-arrow svg {
  width: 14px;
  height: 14px;
}

.news-carousel {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(110px, 1fr) minmax(90px, 0.9fr);
  gap: 12px;
  height: 438px;
  overflow: hidden;
}

.news-slide {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.news-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
  transition: background var(--transition-normal);
}

.news-slide.active::after,
.news-slide:hover::after {
  background: transparent;
}

.news-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.news-slide:hover img {
  transform: scale(1.025);
}

.news-slide.active img {
  transform: none;
}

.news-carousel-copy {
  max-width: 720px;
  margin-top: 16px;
}

.news-carousel-copy h3 {
  margin: 0 0 8px;
  color: #3A3F4B;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.news-carousel-copy p {
  margin: 0;
  color: #A0A8B6;
  font-size: 13px;
  line-height: 1.8;
}

/* ========== 邮件订阅 ========== */
.newsletter-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0EAFF 100%);
  padding: 48px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.newsletter-icon svg {
  width: 100%;
  height: 100%;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.newsletter-desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-input {
  width: 300px;
  padding: 13px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 91, 255, 0.08);
}

.newsletter-btn {
  padding: 13px 28px;
  white-space: nowrap;
}

/* 新增区域响应式 */
@media (max-width: 1024px) {
  .trend-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trend-left {
    padding: 28px 34px;
  }

  .trend-right {
    min-height: 420px;
  }

  .trend-media-placeholder {
    left: 6%;
    right: 6%;
    top: 18%;
    height: 68%;
  }

  .partners-flow {
    flex-direction: column;
    gap: 24px;
  }

  .flow-left {
    flex-wrap: wrap;
    gap: 12px;
  }

  .flow-partner-card {
    max-width: 200px;
  }

  .flow-plus {
    display: none;
  }

  .flow-right {
    width: 100%;
    max-width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-result-card {
    flex: 1 1 180px;
  }

  .partners-detail {
    grid-template-columns: 1fr;
  }

  .banner-stats-grid {
    gap: 40px;
  }
  .banner-value {
    font-size: 32px;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-left {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    justify-content: center;
  }
  .newsletter-input {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .trend-content {
    gap: 24px;
  }

  .trend-left {
    padding: 24px 22px;
  }

  .trend-left-head .section-title {
    font-size: 20px;
  }

  .trend-desc {
    max-width: none;
  }

  .trend-item {
    gap: 12px;
    padding: 22px 0;
  }

  .trend-item.active {
    padding: 24px 0;
  }

  .trend-index {
    flex-basis: 28px;
    font-size: 17px;
  }

  .trend-title {
    font-size: 16px;
  }

  .trend-detail {
    font-size: 13px;
  }

  .trend-right {
    min-height: 320px;
  }

  .trend-media-placeholder {
    left: 4%;
    right: 4%;
    top: 16%;
    height: 70%;
  }

  .partners-header {
    margin-bottom: 32px;
  }

  .partners-flow {
    gap: 20px;
  }

  .flow-left {
    flex-direction: column;
    align-items: center;
  }

  .flow-partner-card {
    max-width: 100%;
    width: 100%;
  }

  .flow-right {
    flex-direction: column;
    max-width: 100%;
  }

  .flow-result-card {
    flex: 1 1 auto;
  }

  .detail-card {
    padding: 24px;
  }

  .detail-features {
    grid-template-columns: 1fr;
  }

  .banner-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .logo-row {
    gap: 24px;
  }

  .platform-intro {
    padding: 44px 0 28px;
  }

  .platform-logo-banner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
    margin-bottom: 32px;
  }

  .platform-logo-item {
    height: 46px;
  }

  .platform-logo-item img {
    max-width: 112px;
    max-height: 46px;
  }

  .platform-copy {
    margin-bottom: 36px;
  }

  .platform-active-label {
    margin-bottom: 18px;
  }

  .platform-quote {
    font-size: 16px;
    line-height: 1.9;
  }

  .platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-tab {
    height: 58px;
    font-size: 15px;
    padding: 0 10px;
  }

  .feature-badges {
    flex-direction: column;
    align-items: center;
  }
  .badge-item {
    width: 100%;
    max-width: 360px;
  }

  .news-section .container-wide {
    max-width: 100%;
  }

  .news-carousel-header {
    margin-bottom: 20px;
  }

  .news-carousel {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .news-slide {
    height: 180px;
  }

  .news-slide.active {
    grid-column: 1 / -1;
    height: 300px;
  }

  .news-carousel-copy {
    max-width: 100%;
  }

  .hs-table-wrap {
    overflow-x: auto;
  }

  .hs-table {
    min-width: 700px;
  }
}


/* ===== Merged from index_b.css ===== */

/* ========== 孔雀开屏 Canvas ========== */
.radiant-canvas-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(180deg, #EBF2FF 0%, #DDE8FC 50%, #C9D9F5 100%);
  display: flex;
  justify-content: center;
}

.radiant-canvas {
  display: block;
  max-width: 100%;
  width: 1100px;
  height: 520px;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

/* ========== Hero 区域 ========== */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  --hero-dots-x: 0px;
  --hero-dots-y: 0px;
  --hero-content-x: 0px;
  --hero-content-y: 0px;
  --hero-visual-x: 0px;
  --hero-visual-y: 0px;
}

.hero-bg {
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: url('../../images/home_banner.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(var(--hero-bg-x), var(--hero-bg-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(30, 91, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 91, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: var(--hero-dots-x) var(--hero-dots-y);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* 左侧内容 */
.hero-content {
  flex: 1;
  max-width: 560px;
  transform: translate(var(--hero-content-x), var(--hero-content-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid white;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* 右侧书籍 */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 420px;
  transform: translate(var(--hero-visual-x), var(--hero-visual-y));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.books-container {
  position: relative;
  width: min(100%, 660px);
  height: 420px;
  transform-style: preserve-3d;
  animation: booksStageFloat 6s ease-in-out infinite;
  isolation: isolate;
}

/* 科技感发光底盘 */
.tech-platform {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 460px;
  height: 88px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(30, 91, 255, 0.42) 0%, rgba(0, 212, 255, 0.18) 45%, transparent 75%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  animation: techPlatformPulse 4s ease-in-out infinite;
}

/* 科技感旋转光环 */
.tech-ring {
  position: absolute;
  left: 50%;
  bottom: 68px;
  border-radius: 50%;
  transform: translateX(-50%) rotateX(76deg);
  z-index: 0;
  pointer-events: none;
}

.tech-ring-1 {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(30, 91, 255, 0.3);
  animation: techRingRotate 14s linear infinite;
}

.tech-ring-2 {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(0, 212, 255, 0.22);
  animation: techRingRotate 10s linear infinite reverse;
}

@keyframes techPlatformPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes techRingRotate {
  to {
    transform: translateX(-50%) rotateX(76deg) rotateZ(360deg);
  }
}

.book {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: clamp(160px, 32vw, 238px);
  aspect-ratio: 791 / 1024;
  transform-origin: 50% 82%;
  border-radius: 6px;
  transition:
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  will-change: transform, filter;
}

.book-left {
  z-index: 2;
  transform: translateX(-96%) translateY(12px) rotate(-12deg) rotateY(11deg) rotateX(3deg) translateZ(4px);
  filter: drop-shadow(0 16px 20px rgba(16, 31, 64, 0.17)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.22));
  animation: bookEnterLeft 1s cubic-bezier(0.22, 0.9, 0.24, 1) 0.2s backwards;
}
.book-left:hover {
  transform: translateX(-101%) translateY(-8px) rotate(-9deg) rotateY(7deg) rotateX(2deg) translateZ(44px);
}

.book-center {
  z-index: 3;
  transform: translateX(-50%) translateY(-12px) rotate(3deg) rotateY(-3deg) translateZ(36px);
  filter: drop-shadow(0 24px 30px rgba(16, 31, 64, 0.24)) drop-shadow(0 0 24px rgba(30, 91, 255, 0.3));
  animation: bookEnterCenter 1s cubic-bezier(0.22, 0.9, 0.24, 1) backwards;
}
.book-center:hover {
  transform: translateX(-50%) translateY(-34px) rotate(0deg) rotateY(0deg) translateZ(76px);
}

.book-right {
  z-index: 2;
  transform: translateX(-2%) translateY(20px) rotate(13deg) rotateY(-12deg) rotateX(3deg) translateZ(0);
  filter: drop-shadow(0 16px 20px rgba(16, 31, 64, 0.17)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.22));
  animation: bookEnterRight 1s cubic-bezier(0.22, 0.9, 0.24, 1) 0.4s backwards;
}
.book-right:hover {
  transform: translateX(3%) translateY(-2px) rotate(9deg) rotateY(-7deg) rotateX(2deg) translateZ(44px);
}

.books-container:hover .book-left {
  transform: translateX(-103%) translateY(6px) rotate(-14deg) rotateY(9deg) rotateX(2deg) translateZ(14px);
}

.books-container:hover .book-center {
  transform: translateX(-50%) translateY(-22px) rotate(1deg) rotateY(0deg) translateZ(52px);
}

.books-container:hover .book-right {
  transform: translateX(5%) translateY(14px) rotate(15deg) rotateY(-9deg) rotateX(2deg) translateZ(10px);
}

.books-container .book:hover {
  z-index: 4;
  opacity: 1;
}

.books-container .book-left:hover {
  transform: translateX(-101%) translateY(-8px) rotate(-9deg) rotateY(7deg) rotateX(2deg) translateZ(44px);
}

.books-container .book-center:hover {
  transform: translateX(-50%) translateY(-34px) rotate(0deg) rotateY(0deg) translateZ(76px);
}

.books-container .book-right:hover {
  transform: translateX(3%) translateY(-2px) rotate(9deg) rotateY(-7deg) rotateX(2deg) translateZ(44px);
}

.book-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.book:hover .book-image {
  transform: translateZ(10px) scale(1.025);
}

@keyframes booksStageFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(1.5deg);
  }
}

/* 页面加载：书籍从中间向两侧展开 */
@keyframes bookEnterLeft {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) rotateX(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-96%) translateY(12px) rotate(-12deg) rotateY(11deg) rotateX(3deg) translateZ(4px);
    opacity: 1;
  }
}

@keyframes bookEnterCenter {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(-12px) rotate(3deg) rotateY(-3deg) translateZ(36px);
    opacity: 1;
  }
}

@keyframes bookEnterRight {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) rotateY(0deg) rotateX(0deg) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(-2%) translateY(20px) rotate(13deg) rotateY(-12deg) rotateX(3deg) translateZ(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .books-container,
  .tech-platform,
  .tech-ring {
    animation: none;
  }

  .book,
  .book-image {
    animation: none;
    transition: none;
  }
}

/* ========== 统计数据条 ========== */
.stats-section {
  background: white;
  padding: 32px 0;
  margin: 0 -24px;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.stat-icon {
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-img {
  display: block;
  height: 48px;
  width: auto;
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.stat-suffix {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  top: -4px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ========== 报告列表 ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}

.view-all-link svg {
  transition: transform var(--transition-normal);
}

.view-all-link:hover {
  text-decoration: underline;
}

.view-all-link:hover svg {
  transform: translateX(4px);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.report-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid var(--color-border-light);
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.report-cover,
.report-cover-link {
  height: 180px;
  padding: 20px 16px;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.report-cover-link {
  text-decoration: none;
  cursor: pointer;
}

.report-cover::after,
.report-cover-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 300ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.report-card:hover .report-cover,
.report-card:hover .report-cover-link {
  transform: scale(1.025);
}

.report-card:hover .report-cover::after,
.report-card:hover .report-cover-link::after {
  opacity: 1;
  transform: translateX(70%);
}

.report-year {
  font-size: 16px;
  opacity: 0.9;
}

.report-name {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 4px;
}

.report-en {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
  line-height: 1.3;
}

.report-body {
  padding: 16px;
}

.report-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--color-text-secondary);
  background: var(--bg-page);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.report-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.report-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.report-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
}

.report-download-btn svg {
  transition: transform var(--transition-normal);
}

.report-download-btn:hover {
  text-decoration: underline;
}

.report-download-btn:hover svg {
  transform: translate(2px, -2px);
}

.report-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.report-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  flex: 1;
}

.report-card-btn-primary {
  background: var(--color-primary);
  color: white;
}

.report-card-btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
}

.report-card-btn-secondary {
  border-color: var(--color-border);
  background: white;
  color: var(--color-text-primary);
}

.report-card-btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ========== 洞察区域 ========== */
.insight-section .container-wide {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.insight-header {
  flex-shrink: 0;
  width: 260px;
  margin-bottom: 0;
}

.insight-header .section-title {
  margin-bottom: 8px;
}

.insight-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.insight-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--color-border-light);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 91, 255, 0.18);
}

.card-head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
}

.chart-placeholder {
  margin-top: 16px;
}

.line-chart svg {
  width: 100%;
  height: auto;
}

.line-chart polyline,
.line-chart circle,
.donut-chart circle,
.bar-fill {
  will-change: stroke-dashoffset, stroke-dasharray, opacity, width;
}

.donut-chart {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
}

.donut-chart svg {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-item b {
  color: var(--color-text-primary);
  margin-left: auto;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  width: 56px;
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-page);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-val {
  font-size: 12px;
  color: var(--color-text-secondary);
  width: 46px;
  text-align: left;
  flex-shrink: 0;
}

.opportunity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.opportunity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
  .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-section .container-wide {
    flex-direction: column;
  }

  .insight-header {
    width: 100%;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .books-container {
    width: min(100%, 600px);
    height: 380px;
  }

  .book {
    width: clamp(150px, 28vw, 220px);
    bottom: 48px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .books-container {
    height: 320px;
  }

  .book {
    width: clamp(118px, 34vw, 170px);
    bottom: 44px;
  }
}

/* ========== 全球贸易趋势分析 ========== */
.trend-analysis {
  background: #fff;
  overflow: hidden;
}

.trend-content {
  position: relative;
  display: grid;
  grid-template-columns: 372px minmax(0, 1fr);
  gap: 22px;
  min-height: 560px;
  align-items: stretch;
}

.trend-left {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #E4E8F0;
  padding: 26px 38px 26px 44px;
}

.trend-left-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #E8EBF1;
}

.trend-left-head .section-title {
  font-size: 22px;
  line-height: 1.35;
}

.trend-desc {
  max-width: 290px;
  font-size: 12px;
  line-height: 1.8;
  color: #596B8D;
  margin-top: 10px;
}

.trend-accordion {
  display: flex;
  flex-direction: column;
}

.trend-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #E8EBF1;
  color: var(--color-text-primary);
  text-align: left;
  transition: padding var(--transition-normal), color var(--transition-normal);
}

.trend-item:hover .trend-title,
.trend-item.active .trend-title {
  color: #111827;
}

.trend-item.active {
  padding: 28px 0 29px;
}

.trend-index {
  flex: 0 0 30px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  font-style: italic;
  color: var(--color-primary);
}

.trend-item-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trend-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.trend-title {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #3E4656;
  transition: color var(--transition-normal);
}

.trend-arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.trend-item.active .trend-arrow {
  opacity: 1;
  transform: translateX(0);
}

.trend-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #3F4654;
}

.trend-item:not(.active) .trend-detail {
  display: none;
}

.trend-item.active .trend-detail {
  display: flex;
}

.trend-collapse-enter-active,
.trend-collapse-leave-active {
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.34s ease, margin-top 0.34s ease;
}

.trend-collapse-enter-from,
.trend-collapse-leave-to {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transform: translateY(-6px);
}

.trend-collapse-enter-to,
.trend-collapse-leave-from {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.trend-right {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px dashed rgba(214, 220, 230, 0.9);
}

.trend-right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.trend-media-placeholder {
  --trend-accent: var(--color-primary);
  --trend-accent-soft: rgba(30, 91, 255, 0.16);
  --trend-accent-pale: #DCE8FF;
  position: absolute;
  left: 2.5%;
  right: 6%;
  top: 27%;
  height: 64%;
  border: 1px solid rgba(30, 91, 255, 0.22);
  background:
    linear-gradient(135deg, var(--trend-accent-soft), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 76%, var(--trend-accent-soft), transparent 28%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(236, 241, 249, 0.82));
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.09);
}

.trend-media-video {
  position: absolute;
  left: 2.5%;
  top: 27%;
  width: 91.5%;
  height: 64%;
  object-fit: contain;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.09);
  clip-path: inset(0 10px);
  transform: scaleX(1.018);
  transform-origin: center center;
  z-index: 2;
}

.trend-transfer {
  position: absolute;
  inset: 5% 4% 5% 3%;
  z-index: 2;
  display: grid;
  grid-template-columns: 96px minmax(180px, 1fr) 74px minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  color: #3E4656;
}

.trend-transfer-side-title {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0;
  color: #343A46;
}

.trend-transfer-side-title span {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.trend-transfer-panel {
  height: 430px;
  overflow: hidden;
  border: 1px solid #E8EDF6;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.trend-transfer-head {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: #2563EB;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.trend-transfer-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: #EEF5FF;
  border-bottom: 1px solid #E4EAF4;
}

.trend-transfer-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4B5563;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.trend-transfer-toolbar button:disabled,
.trend-transfer-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.trend-transfer-sort-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1F6BFF, #3F83FF);
  border: 1px solid #9CB9FF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.trend-transfer-sort-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.trend-transfer-sort-up::before {
  border-bottom: 9px solid #fff;
}

.trend-transfer-sort-down::before {
  border-top: 9px solid #fff;
}

.trend-transfer-list {
  height: calc(100% - 46px);
  overflow-y: auto;
  scrollbar-color: #A6AAB2 #F6F8FB;
  scrollbar-width: thin;
}

.trend-transfer-panel-selected .trend-transfer-list {
  height: calc(100% - 90px);
}

.trend-transfer-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.35;
  color: #4B5563;
  cursor: pointer;
}

.trend-transfer-row:nth-child(even) {
  background: #EEF4FF;
}

.trend-transfer-index {
  font-size: 15px;
  color: #4B5563;
}

.trend-transfer-check {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #2563EB;
}

.trend-transfer-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.trend-transfer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.trend-transfer-arrow {
  position: relative;
  width: 66px;
  height: 38px;
  border: 1px dashed #A6AAB2;
  background: transparent;
}

.trend-transfer-arrow::before,
.trend-transfer-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.trend-transfer-arrow::before {
  width: 44px;
  height: 18px;
  background: linear-gradient(90deg, rgba(86, 129, 232, 0.04), rgba(37, 99, 235, 0.86));
}

.trend-transfer-arrow::after {
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}

.trend-transfer-arrow-right::before {
  left: 6px;
}

.trend-transfer-arrow-right::after {
  right: 4px;
  border-left: 24px solid #3B82F6;
}

.trend-transfer-arrow-left::before {
  right: 6px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.86), rgba(86, 129, 232, 0.04));
}

.trend-transfer-arrow-left::after {
  left: 4px;
  border-right: 24px solid #3B82F6;
}

.trend-product-grid {
  position: absolute;
  inset: 3.5%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.34);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.trend-product-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  cursor: zoom-in;
}

.trend-product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.trend-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 99, 235, 0.22), transparent 34%),
    rgba(15, 23, 42, 0.38);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.trend-product-zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.34);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.trend-product-zoom::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.trend-product-zoom::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2px;
  background: #fff;
  transform: translate(10px, 10px) rotate(45deg);
  transform-origin: center;
}

.trend-product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.trend-product-card:hover::before,
.trend-product-card:hover .trend-product-zoom {
  opacity: 1;
}

.trend-product-card:hover .trend-product-zoom {
  transform: translate(-50%, -50%) scale(1);
}

.trend-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  background: rgba(15, 23, 42, 0.68);
}

.trend-product-lightbox-inner {
  position: relative;
  width: min(1120px, 82vw);
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.trend-product-lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
}

.trend-product-lightbox-close {
  position: absolute;
  right: -16px;
  top: -16px;
  width: 34px;
  height: 34px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.trend-product-lightbox-close::before,
.trend-product-lightbox-close::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.trend-product-lightbox-close::before {
  transform: rotate(45deg);
}

.trend-product-lightbox-close::after {
  transform: rotate(-45deg);
}

.trend-product-lightbox-enter-active,
.trend-product-lightbox-leave-active {
  transition: opacity 0.22s ease;
}

.trend-product-lightbox-enter-active .trend-product-lightbox-inner,
.trend-product-lightbox-leave-active .trend-product-lightbox-inner {
  transition: transform 0.24s ease;
}

.trend-product-lightbox-enter-from,
.trend-product-lightbox-leave-to {
  opacity: 0;
}

.trend-product-lightbox-enter-from .trend-product-lightbox-inner,
.trend-product-lightbox-leave-to .trend-product-lightbox-inner {
  transform: translateY(18px) scale(0.98);
}

.trend-media-placeholder::before,
.trend-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  opacity: 0.72;
}

.trend-media-placeholder::before {
  background-image:
    linear-gradient(90deg, var(--trend-accent), var(--trend-accent-pale)),
    linear-gradient(90deg, #DDE4EF 44%, transparent 44%),
    linear-gradient(90deg, #DDE4EF 56%, transparent 56%),
    linear-gradient(90deg, #DDE4EF 48%, transparent 48%),
    linear-gradient(90deg, #DDE4EF 62%, transparent 62%);
  background-size: 230px 18px, 62% 18px, 50% 18px, 58% 18px, 44% 18px;
  background-position: 30px 42px, 30px 92px, 30px 134px, 30px 176px, 30px 218px;
}

.trend-media-placeholder::after {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, var(--trend-accent-pale), rgba(255, 255, 255, 0));
  background-size: 40% 46%, 54% 2px;
  background-position: right 44px bottom 42px, right 46px bottom 72px;
}

.trend-preview-enter-active,
.trend-preview-leave-active {
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.trend-preview-enter-from,
.trend-preview-leave-to {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
}

.trend-preview-enter-to,
.trend-preview-leave-from {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========== 行业解决方案（视频） ========== */
.hs-query {
  overflow: hidden;
  background: #F7F8FC;
  padding: 46px 0 56px;
}

.hs-solutions-head {
  margin-bottom: 22px;
}

.hs-solutions-head .section-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
  color: #1F2937;
}

.hs-solutions-desc {
  margin: 0;
  color: #697A96;
  font-size: 13px;
  font-weight: 600;
}

.hs-solution-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 34px;
}

.hs-solution-tab {
  flex: 0 0 auto;
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #5F6470;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hs-solution-tab:hover {
  color: #1E5BFF;
}

.hs-solution-tab.active {
  color: #fff;
  background: #1E6BFF;
  box-shadow: 0 10px 22px rgba(30, 91, 255, 0.22);
}

.hs-solution-tab:focus-visible {
  outline: 3px solid rgba(30, 91, 255, 0.18);
  outline-offset: 3px;
}

.hs-video-viewport {
  position: relative;
  height: clamp(300px, 35vw, 520px);
  overflow: hidden;
}

.hs-video-track {
  position: relative;
  height: 100%;
}

.hs-video-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(68vw, 800px);
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.09);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.9);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease, filter 300ms ease;
}

.hs-video-card.active,
.hs-video-card.prev,
.hs-video-card.next {
  opacity: 1;
}

.hs-video-card.active {
  z-index: 3;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.hs-video-card.prev {
  z-index: 1;
  filter: saturate(0.78) brightness(1.02);
  transform: translateX(-128%) scale(0.9);
}

.hs-video-card.next {
  z-index: 1;
  filter: saturate(0.78) brightness(1.02);
  transform: translateX(28%) scale(0.9);
}

.hs-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 252, 0.2);
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
}

.hs-video-card.active::after {
  opacity: 0;
}

.hs-solution-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.hs-video-viewport.is-switching .hs-video-card.active {
  transform: translateX(-50%) scale(0.985);
}

@media (max-width: 1024px) {
  .hs-solution-tabs {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .hs-solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .hs-solution-tab {
    padding: 0 18px;
    font-size: 15px;
  }

  .hs-video-card {
    width: 76vw;
  }

  .hs-video-card.prev {
    transform: translateX(-132%) scale(0.9);
  }

  .hs-video-card.next {
    transform: translateX(32%) scale(0.9);
  }
}

@media (max-width: 768px) {
  .hs-query {
    padding: 36px 0 42px;
  }

  .hs-solutions-head .section-title {
    font-size: 22px;
  }

  .hs-video-viewport {
    height: clamp(230px, 58vw, 340px);
  }

  .hs-video-card {
    width: 84vw;
    border-radius: 6px;
  }

  .hs-video-card.prev {
    transform: translateX(-138%) scale(0.88);
  }

  .hs-video-card.next {
    transform: translateX(38%) scale(0.88);
  }
}

/* ========== 合作伙伴生态 ========== */
.partners-header {
  text-align: left;
  margin-bottom: 22px;
}
.partners-header .section-title {
  margin-bottom: 26px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}
.partners-desc {
  font-size: 14px;
  color: #6A7D9A;
  margin: 0;
  max-width: 850px;
  line-height: 1.85;
}

.partners-eco {
  background: #fff;
  padding: 50px 0 28px;
}


.partners-flow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid #E4E8F0;
  border-radius: 3px;
}

.flow-left {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.flow-partner-card {
  background: #FAFBFE;
  border: 0;
  border-radius: 0;
  padding: 22px 26px 20px;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.flow-partner-logo {
  position: relative;
  width: 100px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: 600;
  font-size: 14px;
  background: transparent !important;
  outline-offset: -1px;
  overflow: hidden;
}

.flow-partner-logo span {
  display: none;
}

.flow-partner-logo::before {
  content: "";
  position: absolute;
  inset: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flow-left .flow-partner-card:nth-child(1) .flow-partner-logo::before {
  background-image: url('../../images/logo_icon.png');
}

.flow-left .flow-partner-card:nth-child(3) .flow-partner-logo {
  width: 125px;
  height: 54px;
  margin-top: 18px;
  margin-bottom: 20px;
}

.flow-left .flow-partner-card:nth-child(3) .flow-partner-logo::before {
  inset: 7px;
  background-image: url('../../images/linkedin-logo.png');
}

.flow-left .flow-partner-card:nth-child(5) .flow-partner-logo {
  width: 171px;
  height: 52px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.flow-left .flow-partner-card:nth-child(5) .flow-partner-logo::before {
  inset: 6px 8px;
  background-image: url('../../images/dun-bradstreet-logo.png');
}

.flow-partner-points {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.flow-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #0F1B2D;
}

.point-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1E5BFF;
  flex-shrink: 0;
}

.flow-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #1E5BFF;
  font-weight: 300;
  width: 24px;
  flex-shrink: 0;
}

.flow-arrow {
  position: relative;
  width: 42px;
  flex-shrink: 0;
  color: #1E5BFF;
}

.flow-arrow svg {
  width: 100%;
  height: 34px;
}

.flow-right {
  display: flex;
  flex-direction: column;
  gap: 29px;
  flex-shrink: 0;
  width: 180px;
}

.flow-result-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.result-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #EEF4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.result-icon svg {
  width: 19px;
  height: 19px;
}

.result-title {
  font-size: 13px;
  font-weight: 600;
  color: #0F1B2D;
  margin-bottom: 4px;
}

.result-sub {
  font-size: 11px;
  color: #6A7D9A;
}

.partners-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-card {
  background: white;
  border: 1px solid #E4E8F0;
  border-radius: 3px;
  padding: 16px 16px 18px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.detail-card:hover {
  box-shadow: none;
  border-color: #D9E0EA;
}

.detail-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 19px;
  padding-bottom: 17px;
  border-bottom: 1px solid #E4E8F0;
}

.detail-logo {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.detail-card:nth-child(2) .detail-logo span {
  font-size: 10px !important;
  line-height: 1;
  white-space: nowrap;
}

.detail-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F1B2D;
  margin-bottom: 6px;
  line-height: 1.35;
}

.detail-subtitle {
  font-size: 10px;
  color: #4F6381;
  line-height: 1.65;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 24px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #EEF4FF;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 15px;
  height: 15px;
}

.feature-name {
  font-size: 14px;
  font-weight: 600;
  color: #0F1B2D;
  margin-bottom: 5px;
  line-height: 1.35;
}

.feature-desc {
  font-size: 11px;
  color: #6A7D9A;
  line-height: 1.7;
}

/* ========== 数据统计横幅 ========== */
.stats-banner {
  position: relative;
  overflow: hidden;
}

.banner-bg-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 91, 255, 0.08) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.banner-stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  height: 140px;
  margin-top: 40px;
}

.banner-stat {
  text-align: center;
}

.banner-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1.5px;
  line-height: 1;
}
.banner-value .suffix {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
}

.banner-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ========== Logo行 ========== */
.logo-row-section {
  padding: 36px 0;
  background: white;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}
.logo-item:hover {
  opacity: 1;
}

.logo-box {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* ========== 平台介绍 ========== */
.platform-intro {
  background: #fff;
  padding: 62px 0 34px;
}

.platform-logo-banner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 40px 100px;
  max-width: 1000px;
  margin: 0 auto 36px;
}

.platform-logo-item {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-item img {
  display: block;
  max-width: 132px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  outline: 0;
}

.platform-copy {
  max-width: 900px;
  margin: 54px auto 54px;
  text-align: center;
}

.platform-copy-fade-enter-active,
.platform-copy-fade-leave-active {
  transition: opacity 260ms ease, transform 260ms ease;
}

.platform-copy-fade-enter-from {
  opacity: 0;
  transform: translateY(12px);
}

.platform-copy-fade-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

.platform-active-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.platform-quote {
  margin: 0;
  color: #70809A;
  font-size: 19px;
  line-height: 2.1;
  font-weight: 600;
}

.platform-tabs {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #E8EDF5;
}

.platform-tab {
  position: relative;
  height: 64px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: #727272;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.platform-tab::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7FA8FF;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.platform-tab:hover {
  color: var(--color-primary);
  background: rgba(30, 91, 255, 0.035);
}

.platform-tab.active {
  color: var(--color-primary);
  background: rgba(30, 91, 255, 0.055);
  transform: translateY(-1px);
}

.platform-tab.active::before {
  transform: scaleX(1);
}

.platform-tab-icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: currentColor;
  transition: transform 240ms ease;
}

.platform-tab.active .platform-tab-icon {
  transform: scale(1.08);
}

.platform-tab-icon::before,
.platform-tab-icon::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.platform-tab-icon--crossBorder {
  border-radius: 4px;
  background: currentColor;
}

.platform-tab-icon--crossBorder::before {
  width: 9px;
  height: 5px;
  left: 7px;
  top: 5px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.platform-tab-icon--crossBorder::after {
  width: 14px;
  height: 1px;
  left: 5px;
  top: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.platform-tab-icon--tradeCompany::before {
  width: 22px;
  height: 16px;
  left: 1px;
  top: 6px;
  border-radius: 2px;
  background: currentColor;
}

.platform-tab-icon--tradeCompany::after {
  width: 10px;
  height: 6px;
  left: 7px;
  top: 2px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.platform-tab-icon--soho::before {
  width: 22px;
  height: 22px;
  left: 1px;
  top: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.platform-tab-icon--soho::after {
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 8px 0 -7px currentColor, 0 -8px 0 -7px currentColor;
}

.platform-tab-icon--b2b::before {
  width: 19px;
  height: 21px;
  left: 3px;
  top: 2px;
  border-radius: 1px;
  background: currentColor;
}

.platform-tab-icon--b2b::after {
  width: 3px;
  height: 3px;
  left: 7px;
  top: 6px;
  background: #fff;
  box-shadow: 7px 0 0 #fff, 0 6px 0 #fff, 7px 6px 0 #fff, 0 12px 0 #fff, 7px 12px 0 #fff;
}

.platform-intro .intro-text,
.platform-intro .feature-badges {
  display: none;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto 40px;
}

.intro-para {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-secondary);
  text-align: center;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  min-width: 240px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(30, 91, 255, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg {
  width: 24px;
  height: 24px;
}

.badge-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.badge-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ========== 新闻动态 ========== */
.news-section {
  background: #F7F8FB;
  padding: 52px 0 54px;
}


.news-carousel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.news-carousel-header .section-title {
  margin-bottom: 8px;
}

.news-more-link {
  color: #5F6F8A;
  font-size: 12px;
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.news-more-link:hover {
  color: var(--color-primary);
}

.news-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}

.news-arrow {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid #B9D0FF;
  background: #EEF4FF;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.news-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.news-arrow svg {
  width: 14px;
  height: 14px;
}

.news-carousel {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(110px, 1fr) minmax(90px, 0.9fr);
  gap: 12px;
  height: 438px;
  overflow: hidden;
}

.news-slide {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.news-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
  transition: background var(--transition-normal);
}

.news-slide.active::after,
.news-slide:hover::after {
  background: transparent;
}

.news-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.news-slide:hover img {
  transform: scale(1.025);
}

.news-slide.active img {
  transform: none;
}

.news-carousel-copy {
  max-width: 720px;
  margin-top: 16px;
}

.news-carousel-copy h3 {
  margin: 0 0 8px;
  color: #3A3F4B;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.news-carousel-copy p {
  margin: 0;
  color: #A0A8B6;
  font-size: 13px;
  line-height: 1.8;
}

/* ========== 邮件订阅 ========== */
.newsletter-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0EAFF 100%);
  padding: 48px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.newsletter-icon svg {
  width: 100%;
  height: 100%;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.newsletter-desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-input {
  width: 300px;
  padding: 13px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 91, 255, 0.08);
}

.newsletter-btn {
  padding: 13px 28px;
  white-space: nowrap;
}

/* 新增区域响应式 */
@media (max-width: 1024px) {
  .trend-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trend-left {
    padding: 28px 34px;
  }

  .trend-right {
    min-height: 420px;
  }

  .trend-media-placeholder {
    left: 6%;
    right: 6%;
    top: 18%;
    height: 68%;
  }

  .trend-transfer {
    inset: 7% 5%;
    grid-template-columns: 72px minmax(0, 1fr) 58px minmax(0, 1fr);
    gap: 12px;
  }

  .trend-transfer-panel {
    height: 360px;
  }

  .trend-transfer-side-title {
    font-size: 22px;
    gap: 12px;
  }

  .trend-product-grid {
    inset: 6%;
  }

  .trend-product-lightbox-inner {
    width: min(1040px, 88vw);
  }

  .partners-flow {
    flex-direction: column;
    gap: 24px;
  }

  .flow-left {
    flex-wrap: wrap;
    gap: 12px;
  }

  .flow-partner-card {
    max-width: 200px;
  }

  .flow-plus {
    display: none;
  }

  .flow-right {
    width: 100%;
    max-width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-result-card {
    flex: 1 1 180px;
  }

  .partners-detail {
    grid-template-columns: 1fr;
  }

  .banner-stats-grid {
    gap: 40px;
  }
  .banner-value {
    font-size: 32px;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-left {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    justify-content: center;
  }
  .newsletter-input {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .trend-content {
    gap: 24px;
  }

  .trend-left {
    padding: 24px 22px;
  }

  .trend-left-head .section-title {
    font-size: 20px;
  }

  .trend-desc {
    max-width: none;
  }

  .trend-item {
    gap: 12px;
    padding: 22px 0;
  }

  .trend-item.active {
    padding: 24px 0;
  }

  .trend-index {
    flex-basis: 28px;
    font-size: 17px;
  }

  .trend-title {
    font-size: 16px;
  }

  .trend-detail {
    font-size: 13px;
  }

  .trend-right {
    min-height: 320px;
  }

  .trend-media-placeholder {
    left: 4%;
    right: 4%;
    top: 16%;
    height: 70%;
  }

  .trend-transfer {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .trend-transfer-side-title {
    writing-mode: horizontal-tb;
    display: block;
    text-align: center;
    font-size: 18px;
  }

  .trend-transfer-side-title span {
    writing-mode: horizontal-tb;
  }

  .trend-transfer-panel {
    height: 250px;
  }

  .trend-transfer-head {
    height: 40px;
    padding: 0 16px;
    font-size: 18px;
  }

  .trend-transfer-toolbar {
    height: 40px;
    gap: 20px;
  }

  .trend-transfer-row {
    min-height: 46px;
    grid-template-columns: 28px 22px minmax(0, 1fr);
    padding: 0 14px;
    font-size: 14px;
  }

  .trend-transfer-actions {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .trend-transfer-arrow {
    width: 58px;
    height: 34px;
  }

  .trend-product-grid {
    inset: 14px;
    gap: 4px;
  }

  .trend-product-zoom {
    width: 40px;
    height: 40px;
  }

  .trend-product-lightbox {
    padding: 5vh 4vw;
  }

  .trend-product-lightbox-inner {
    width: 92vw;
    max-height: 82vh;
  }

  .trend-product-lightbox-inner img {
    max-height: 82vh;
  }

  .partners-header {
    margin-bottom: 32px;
  }

  .partners-flow {
    gap: 20px;
  }

  .flow-left {
    flex-direction: column;
    align-items: center;
  }

  .flow-partner-card {
    max-width: 100%;
    width: 100%;
  }

  .flow-right {
    flex-direction: column;
    max-width: 100%;
  }

  .flow-result-card {
    flex: 1 1 auto;
  }

  .detail-card {
    padding: 24px;
  }

  .detail-features {
    grid-template-columns: 1fr;
  }

  .banner-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .logo-row {
    gap: 24px;
  }

  .platform-intro {
    padding: 44px 0 28px;
  }

  .platform-logo-banner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
    margin-bottom: 32px;
  }

  .platform-logo-item {
    height: 46px;
  }

  .platform-logo-item img {
    max-width: 112px;
    max-height: 46px;
  }

  .platform-copy {
    margin-bottom: 36px;
  }

  .platform-active-label {
    margin-bottom: 18px;
  }

  .platform-quote {
    font-size: 16px;
    line-height: 1.9;
  }

  .platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-tab {
    height: 58px;
    font-size: 15px;
    padding: 0 10px;
  }

  .feature-badges {
    flex-direction: column;
    align-items: center;
  }
  .badge-item {
    width: 100%;
    max-width: 360px;
  }

  .news-section .container-wide {
    max-width: 100%;
  }

  .news-carousel-header {
    margin-bottom: 20px;
  }

  .news-carousel {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .news-slide {
    height: 180px;
  }

  .news-slide.active {
    grid-column: 1 / -1;
    height: 300px;
  }

  .news-carousel-copy {
    max-width: 100%;
  }
}
