:root {
  --blue-hw-gradient: linear-gradient(135deg, #204b8c 0%, #163A73 50%, #0f2a57 100%);
  --hw-btn-gold: linear-gradient(180deg, #FFE8A0 0%, #D4AF37 100%);
  --gold-title-hw: linear-gradient(180deg, #ffffff 10%, #FFD770 100%);
  --brand-blue: #163A73;
  --brand-blue-hover: #0f2a57;
  --brand-blue-light: #E6ECF7;
  --profit-green: #F97316;
  --profit-green-hover: #EA580C;
  --loss-red: #ef4444;
  --chart-dark-bg: #1A1F2A;
  --card-dark-bg: #242B3A;
  --border-dark: #2F374A;
  --text-dark: #1f2937;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  background-color: #f7f9fc;
  color: #374151;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
/* ==========================================================================
   2. 第一屏：Banner 区｜强化文字层级
   ========================================================================== */
.gold-banner {
  width: 100%;
  padding: 70px 0;
  min-height: 720px;
  background-color: #08142c;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("/static/images/background1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(8, 20, 44, 0.96);
  opacity: 0.32;
}

.banner-inner-wrap {
  position: relative;
  width: 100%;
}

.banner-content {
  max-width: 1050px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-title {
  display: block;
  text-align: center;
  font-size: 72px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
  white-space: normal;
  word-break: keep-all;
  line-height: 1.22;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.banner-title em {
  font-style: normal !important;
  font-weight: 900 !important;
  display: inline !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

.banner-title em .brand-highlight {
  -webkit-text-fill-color: #42a5ff !important;
  color: #42a5ff !important;
}

.banner-subtitle {
  font-size: 21px;
  line-height: 1.75;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.banner-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.banner-btns .btn-invest,
.banner-btns .btn-product,
.banner-btns .btn-app {
  width: 240px;
  padding: 18px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

/* 按钮1：申请模拟账户 白色 */
.banner-btns .btn-invest {
  background: #ffffff !important;
  color: var(--brand-blue) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  border: none !important;
}

.banner-btns .btn-invest:hover {
  background: var(--brand-blue) !important;
  color: #ffffff !important;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(22, 58, 115, 0.4);
}

/* 按钮2：查看市场品种 改为白色样式 */
.banner-btns .btn-product {
  background: #ffffff !important;
  color: var(--brand-blue) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  border: none !important;
}

.banner-btns .btn-product:hover {
  background: var(--brand-blue) !important;
  color: #ffffff !important;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(22, 58, 115, 0.4);
}

/* 按钮3：官方APP下载 → 橙色主按钮 */
.banner-btns .btn-app {
  background: linear-gradient(180deg, #fb852c 0%, #F97316 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  border: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.banner-btns .btn-app:hover {
  background: #EA580C !important;
  color: #fff !important;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
}

/* ========== gold-advantage 白色卡片强化 ========== */
.gold-advantage {
  position: relative;
  margin-top: -70px;
  z-index: 10;
  padding: 0;
  background: transparent;
  border-bottom: none;
}

.advantage-wrap {
  width: 1320px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(22, 58, 115, 0.14);
  border-radius: 18px;
  padding: 28px;
  gap: 12px;
}

.advantage-item {
  text-align: center;
  padding: 28px 8px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 126px;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item:not(:nth-child(4))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  width: 1px;
  height: 64%;
  background: #e2e8f0;
}

.adv-num {
  display: block;
  font-size: unset;
  font-weight: normal;
  color: unset;
  margin-bottom: 10px;
  line-height: 1.1 !important;
}

.adv-num svg {
  width: 42px;
  height: 42px;
  fill: #2b7bcc;
}

.adv-text {
  font-size: 17px;
  color: #1e293b;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2 !important;
}

/* ========== 移动端媒体查询 ========== */
@media (max-width: 1024px) {
  .banner-title {
    font-size: 52px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .advantage-wrap {
    max-width: 94%;
  }

  .advantage-list {
    padding: 24px;
  }

  .advantage-item {
    min-height: 116px;
    padding: 24px 4px;
  }

  .adv-num svg {
    width: 38px;
    height: 38px;
  }

  .adv-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gold-banner {
    min-height: 640px;
    padding: 50px 0;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 17px;
  }

  .banner-btns {
    flex-direction: column;
    gap: 14px;
  }

  .banner-btns .btn-invest,
  .banner-btns .btn-product,
  .banner-btns .btn-app {
    width: 100%;
    font-size: 18px;
    padding: 16px 0;
  }

  .gold-advantage {
    margin-top: -40px;
  }

  .advantage-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .advantage-item:not(:nth-child(2)):not(:nth-child(4))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    width: 1px;
    height: 64%;
    background: #e2e8f0;
  }

  .advantage-item {
    min-height: 106px;
    padding: 20px 4px;
  }

  .adv-num svg {
    width: 34px;
    height: 34px;
  }

  .adv-text {
    font-size: 15px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .adv-num svg {
    width: 30px;
    height: 30px;
  }

  .adv-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   4. 第三屏：专业平台介绍区｜整体板块放大约10%，左图，右侧文本+4点优势+转化按钮
   ========================================================================== */
.rank-wrap {
  padding: 65px 0 75px 0;
  background-color: #f9fafb;
}
.rank-title {
  text-align: center;
  margin-bottom: 48px;
}
.rank-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark, #1f2937);
  margin-bottom: 10px;
}
.rank-title p {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.rank-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 38px 42px;
  border-radius: 16px;
  gap: 36px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  max-width: 1140px;
  margin: 0 auto;
}
.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-blue);
}
.rank-info {
  flex: 1;
  min-width: 0;
  max-width: 52%;
  padding-left: 4px;
}
.rank-info h3 {
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}
.rank-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark, #1f2937);
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  will-change: color;
  transition: color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.rank-name:hover {
  color: var(--brand-blue);
}
.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 14px;
}
.rank-tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  line-height: 1.2;
}
.tag-orange {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}
.tag-blue {
  background-color: #FFF7ED;
  color: var(--profit-green);
}
.rank-desc {
  margin:0 0 20px 0;
  line-height: 1.65;
  font-size:17px;
  color:#444;
}
/* 右侧4点check优势列表 */
.brand-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-check-list li {
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:16px;
  color:#333;
  line-height:1.55;
}
.brand-check-list li i.fa-check-circle {
  color:#00B460;
  font-size:20px;
  margin-top:2px;
  flex-shrink:0;
}
.rank-btns {
  display: flex;
  gap:16px;
  flex-shrink:0;
}
.rank-btn {
  padding: 12px 32px;
  background: var(--blue-hw-gradient);
  color: #ffffff;
  border-radius: 24px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.rank-btn:hover {
  background: var(--brand-blue-hover);
}
.rank-btn.btn-green {
  background: var(--profit-green);
}
.rank-btn.btn-green:hover {
  background: var(--profit-green-hover);
}
.pc-text {
  display: block;
}
.mobile-text {
  display: none;
}
.app-pic-box {
  flex: 0 0 48%;
  max-width: 48%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  #platforms .rank-item {
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px 20px;
    gap: 24px;
  }
  .app-pic-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .app-img {
    max-width: 270px;
    margin: 0 auto;
  }
  .rank-info {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .pc-text {
    display: none;
  }
  .mobile-text {
    display: block;
  }
  .rank-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
  .rank-btn {
    width: 100%;
    text-align: center;
  }
}
/* >=769 PC模式，恢复文本显隐 */
@media (min-width:769px) {
  .pc-text {
    display: block;
  }
  .mobile-text {
    display: none;
  }
}

/* ==========================================================================
   5. 第四屏：国际实时走势看盘区
   ========================================================================== */
.chart-section {
  padding: 50px 0;
  background: var(--chart-dark-bg, #1A1F2A);
}
.chart-header {
  text-align: center;
  margin-bottom: 20px;
}
.chart-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.chart-header h2 i {
  color: var(--brand-blue);
  margin-right: 6px;
}
.chart-header p {
  font-size: 18px;
  color: #94A3B8;
}
.chart-main {
  width: 100%;
  height: 500px;
  background: #1e222d;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-dark, #2F374A);
  overflow: hidden;
}
.chart-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--card-dark-bg, #242B3A);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: 0.3s;
}
.stat-card:hover {
  border-color: rgba(22, 58, 115, 0.3);
}
.stat-label {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 8px;
}
.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.stat-desc {
  font-size: 12px;
  color: #64748B;
  margin-top: 4px;
}
.stat-value.high, .stat-value.up {
  color: var(--profit-green);
}
.stat-value.low, .stat-value.down {
  color: var(--loss-red);
}
.chart-tip {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-bottom: 20px;
}
.chart-btn-wrap {
  text-align: center;
  margin-top: 24px;
}
.main-btn {
  display: inline-block;
  background: var(--blue-hw-gradient);
  color: #fff;
  font-weight: bold;
  padding: 14px 50px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(22, 58, 115, 0.3);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.main-btn:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 58, 115, 0.5);
}

/* ========== 移动端适配：stat-card 2‑2两列布局 ========== */
@media (max-width:768px) {
  .chart-section {
    padding: 36px 0;
  }
  .chart-header h2 {
    font-size: 24px;
  }
  .chart-header p {
    font-size: 15px;
  }
  /* 改为2列网格，实现2‑2分行 */
  .chart-stats {
    grid-template-columns: repeat(2, 1fr);
    gap:12px;
  }
  .stat-card {
    padding:12px 8px;
  }
  .stat-label {
    font-size:12px;
  }
  .stat-value {
    font-size:18px;
  }
  .stat-desc {
    font-size:11px;
  }
  .chart-main {
    height:320px;
  }
  .main-btn {
    width:100%;
    padding:12px 20px;
  }
}

/* ==========================================================================
   6. 第五屏：核心可投资产品网格区
   ========================================================================== */
.pro-wrap {
  padding: 60px 0;
  background: #ffffff;
}
.pro-title {
  text-align: center;
  margin-bottom: 45px;
}
.pro-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.pro-title h2 i {
  color: var(--brand-blue);
  margin-right: 8px;
}
.pro-title p {
  font-size: 18px;
  color: #6B7280;
  max-width: 1100px;
  margin: 0 auto;
}
.pro-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pro-item {
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border-radius: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(22, 58, 115, 0.08);
}
.pro-item.orange1 {
  background: var(--brand-blue-light);
  border-left: 5px solid var(--brand-blue);
  border-color: transparent transparent transparent var(--brand-blue);
}
.pro-item.orange2 {
  background: #FFF7ED;
  border-left-color: var(--profit-green);
  border-color: transparent transparent transparent var(--profit-green);
}
.pro-item.orange3 {
  background: #FAF9F6;
  border-left: 5px solid #78716C;
  border-color: transparent transparent transparent #78716C;
}
.pro-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.pro-code {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  font-weight: 500;
}
.pro-info {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.pro-info li {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.pro-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 900;
  font-size: 13px;
}
.pro-item.orange1 .pro-info li::before {
  color: var(--brand-blue);
}
.pro-item.orange2 .pro-info li::before {
  color: var(--profit-green);
}
.pro-item.orange3 .pro-info li::before {
  color: #78716C;
}
.pro-info li strong {
  color: #111827;
  font-weight: 600;
  display: inline-block;
  margin-right: 3px;
}
.pro-risk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #4B5563;
}
.pro-risk em {
  font-style: normal;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}
.risk-medium {
  background: #F59E0B;
}
.risk-high {
  background: #EF4444;
}
.pro-btn {
  display: block;
  text-align: center;
  padding: 13px 0;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.pro-item.orange1 .pro-btn {
  background: var(--brand-blue);
}
.pro-item.orange1 .pro-btn:hover {
  background: var(--brand-blue-hover);
  box-shadow: 0 5px 15px rgba(22, 58, 115, 0.3);
}
.pro-item.orange2 .pro-btn {
  background: var(--profit-green);
}
.pro-item.orange2 .pro-btn:hover {
  background: var(--profit-green-hover);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}
.pro-item.orange3 .pro-btn {
  background: #78716C;
}
.pro-item.orange3 .pro-btn:hover {
  background: #57534E;
  box-shadow: 0 5px 15px rgba(120, 113, 108, 0.3);
}
/* ==========================================================================
   7. 第六屏：深色底六大平台优势
   ========================================================================== */
.adv-wrap {
  padding: 60px 0;
  background: #0F172A;
}
.adv-title {
  text-align: center;
  margin-bottom: 45px;
}
.adv-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.adv-title p {
  font-size: 18px;
  color: #94A3B8;
}
.adv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.adv-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 26px;
  transition: all 0.3s ease;
}
.adv-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(22, 58, 115, 0.3);
}
.adv-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #73A0F4;
  margin-bottom: 12px;
}
.adv-item p {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.75;
}
/* ==========================================================================
   8. FAQ 折叠面板区
   ========================================================================== */
.faq-wrap {
  padding: 60px 0;
  background: #F9FAFB;
}
.faq-title {
  text-align: center;
  margin-bottom: 45px;
}
.faq-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.faq-title p {
  font-size: 18px;
  color: #6B7280;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}
.faq-btn {
  width: 100%;
  padding: 20px 26px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.faq-btn:hover {
  background: #FAFAFA;
  color: var(--brand-blue);
}
.faq-content {
  padding: 0 26px 22px 26px;
  display: none;
  background: #ffffff;
  border-top: 1px dashed #F3F4F6;
}
.faq-content p {
  margin: 14px 0 0 0;
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.85;
}
.faq-btn .fa-chevron-down{
    transition: transform 0.3s;
}
.faq-btn .rotate{
    transform: rotate(180deg);
}
.faq-content{
    display: none;
    padding:0 15px 15px;
    color:#4B5563;
    line-height:1.7;
}
/* ==============================================
   移动端适配：第6屏、第7屏
============================================== */
@media (max-width: 768px) {
  /* =====第6屏 pro-wrap 产品板块｜横向滑动，加宽卡片===== */
  .pro-wrap {
    padding: 45px 0;
  }
  .pro-title h2 {
    font-size: 24px;
  }
  .pro-title p {
    font-size: 15px;
  }

  .pro-list {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 16px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 15px 14px 15px !important;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
  }
  /* 隐藏滚动条 */
  .pro-list::-webkit-scrollbar {
    display: none;
  }
  .pro-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .pro-item {
    flex-shrink: 0 !important;
    width: 320px; /* 由286px增大到320px；还觉得窄可以改成335px */
    padding: 24px 20px;
  }

  /* =====第7屏 adv-wrap 2‑2‑2两列===== */
  .adv-wrap {
    padding: 45px 0;
  }
  .adv-title h2 {
    font-size: 24px;
  }
  .adv-title p {
    font-size: 15px;
  }
  .adv-wrap .adv-list {
    display: grid !important;
    grid-template-columns: repeat(2,1fr) !important;
    gap:16px;
    padding:0 15px;
  }
  .adv-wrap .adv-item {
    padding:18px 16px;
  }
  .adv-wrap .adv-item h3 {
    font-size:17px;
  }
  .adv-wrap .adv-item p {
    font-size:14px;
  }
}


/* ==========================================================================
   9. 品牌实力背书卡片区｜优化推荐下载样式（已修改配色）
   ========================================================================== */
.broker-wrap .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.broker-wrap {
  padding: 75px 0;
  background: linear-gradient(165deg, #204b8c 0%, #163A73 60%, #0f2a57 100%);
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif;
}
.broker-wrap .broker-title {
  text-align: center;
  margin-bottom: 45px;
}
.broker-wrap .broker-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(15, 42, 87, 0.45);
}
.broker-wrap .broker-title p {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.92;
  margin: 0;
  line-height: 1.6;
  max-width:820px;
  margin:0 auto;
}
.broker-wrap .broker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
/* 主推荐卡片：改为白色卡片，和深蓝背景做强烈区分 */
.broker-wrap .broker-item-featured {
  width: 540px;
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 12px 32px rgba(15, 42, 87, 0.35);
}
.broker-wrap .broker-item-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(15, 42, 87, 0.45);
}
.broker-wrap .broker-logo {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.broker-wrap .broker-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}
.broker-wrap .broker-item-featured h3 {
  font-size: 28px;
  font-weight: 700;
  color: #163A73;
  margin: 0 0 14px 0;
}
.broker-wrap .broker-user-tag {
  font-size: 16px;
  color: #64748B;
  margin: 0 0 18px 0;
}
.broker-wrap .broker-score {
  font-size: 52px;
  font-weight: 700;
  color: #F59E0B;
  margin: 0 0 24px 0;
  letter-spacing:1px;
}
.broker-wrap .broker-suit {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 32px 0;
  text-align:left;
}
.broker-wrap .broker-suit strong {
  color: #163A73;
  font-weight: 700;
}
.broker-wrap .broker-item-featured .badge {
  display: inline-block;
  font-size:16px;
  padding:7px 24px;
  border-radius:30px;
  font-weight:600;
  margin-bottom:14px;
}
.broker-wrap .badge-eet {
  background: #F59E0B;
  color: #ffffff;
}
.broker-wrap .broker-btn.btn-eet {
  display:block;
  width:300px;
  padding:16px 0;
  background-color: #F59E0B;
  border-radius:32px;
  color:#fff;
  font-weight:700;
  font-size:17px;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(245,158,11,0.35);
  transition: all 0.25s;
}
.broker-wrap .broker-btn.btn-eet:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow:0 8px 24px rgba(245,158,11,0.45);
}
.broker-wrap .broker-footer-tips {
  margin-top: 50px;
  text-align: center;
}
.broker-wrap .broker-footer-tips .main-tip {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px 0;
}
.broker-wrap .trust-tags {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.broker-wrap .trust-tags span {
  font-size: 15px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.broker-wrap .trust-tags span svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  fill: #FFE600;
}
.broker-wrap .risk-warning-box {
  max-width: 880px;
  margin: 0 auto;
  padding:14px 26px;
  border:1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  color: #ffffff;
  font-size:14px;
  line-height:1.7;
  text-align: center;
}
.broker-wrap .risk-warning-box strong {
  color: #FFEA00;
  font-weight:700;
}
/* ========= 移动端适配 ========= */
@media (max-width:768px) {
  .broker-wrap {
    padding: 50px 0;
  }
  .broker-wrap .broker-title h2 {
    font-size:26px;
  }
  .broker-wrap .broker-title p {
    font-size:16px;
  }
  .broker-wrap .broker-item-featured {
    width:100%;
    padding:32px 22px;
  }
  .broker-wrap .broker-logo {
    width:72px;
    height:72px;
  }
  .broker-wrap .broker-item-featured h3 {
    font-size:24px;
  }
  .broker-wrap .broker-score {
    font-size:42px;
  }
  .broker-wrap .broker-suit {
    font-size:16px;
  }
  .broker-wrap .broker-btn.btn-eet {
    width:100%;
  }
  .broker-wrap .trust-tags {
    gap:18px;
  }
}


/* ==========================================================================
   移动端媒体查询（统一放置末尾，只保留一份，清理冗余重复代码）
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .container, .advantage-wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    .pro-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .advantage-list {
        grid-template-columns: repeat(3, 1fr) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .broker-item {
        flex: 1 1 calc(50% - 12px) !important;
    }
}
@media screen and (max-width: 768px) {
    .banner-inner-wrap .banner-content .banner-title {
        font-size: 28px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        word-break: break-all !important;
        display: block !important;
        text-align: center !important;
        padding: 0 15px !important;
    }
    .banner-inner-wrap .banner-content .banner-title em {
        display: inline-block !important;
        white-space: normal !important;
        font-style: normal;
    }
    .gold-banner {
        padding: 35px 0 45px 0 !important;
        min-height: auto !important;
    }
    .pc-subtitle {
        display: none !important;
    }
    .mobile-subtitle {
        display: block !important;
    }
    .banner-subtitle {
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin-bottom: 22px !important;
        padding: 0 15px !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        display: block !important;
        opacity: 0.85;
    }
    .banner-data {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
    }
    .banner-data .data-item {
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 98px !important;
        padding: 6px 4px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }
    .banner-data .data-num {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    .banner-data .data-text {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        opacity: 0.9;
    }
    .banner-btns {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 30px auto !important;
    }
    .btn-invest, .btn-product {
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 18px !important;
    }
    .gold-advantage {
        margin-top: -30px !important;
    }
    .advantage-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 15px !important;
        width: 100% !important;
    }
    .advantage-item {
        width: 100% !important;
        padding: 15px 8px !important;
        min-height: 95px !important;
    }
    .advantage-item .adv-num {
        font-size: 22px !important;
        color: var(--brand-blue) !important;
    }
    .advantage-item .adv-text {
        font-size: 12px !important;
}
}

