: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 区｜方案二完整优化CSS
   ========================================================================== */
.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: 64px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  /* 移除 white‑space:nowrap，手机自动换行，不会横向溢出 */
  white-space: normal;
  word-break: keep-all;
}
.banner-title em {
  font-style: normal !important;
  font-weight: 800 !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: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.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);
}
/* 主橙色按钮 */
.banner-btns .btn-product {
  background: linear-gradient(180deg, #fb852c 0%, #F97316 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
  border: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.banner-btns .btn-product:hover {
  background: #EA580C !important;
  color: #fff !important;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
}
/* 按钮3 */
.banner-btns .btn-app {
  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-app: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);
}

/* ========== 移动端媒体查询 ========== */
@media(max-width:1024px){
  .banner-title{
    font-size:44px;
  }
}
@media(max-width:768px){
  .gold-banner{
    min-height: 640px;
    padding: 50px 0;
  }
  .banner-title{
    font-size:32px;
  }
  .banner-subtitle{
    font-size:16px;
  }
  /* 移动端：三个按钮统一100%宽度，大小完全一致 */
  .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;
  }
}
@media(max-width:480px){
  .banner-title{
    font-size:26px;
  }
}

/* ==========================================================================
   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: var(--brand-blue);
  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;
}
/* ==========================================================================
   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: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(15, 42, 87, 0.4);
}
.broker-wrap .broker-title p {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
  line-height: 1.5;
}
.broker-wrap .broker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.broker-wrap .broker-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 290px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 40px 24px 35px 24px;
  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);
}
.broker-wrap .broker-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(15, 42, 87, 0.35);
}
.broker-wrap .broker-logo {
  width: 65px;
  height: 65px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.broker-wrap .broker-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}
.broker-wrap .broker-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.broker-wrap .broker-user-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 12px 0;
}
.broker-wrap .broker-score {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}
.broker-wrap .broker-suit {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.92;
  line-height: 1.6;
  margin: 0 0 24px 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
}
.broker-wrap .broker-suit strong {
  color: #ffffff;
  font-weight: 700;
}
.broker-wrap .broker-item .badge {
  display: inline-block;
  font-size: 12.5px;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 8px;
}
.broker-wrap .badge-eet {
  background: var(--hw-btn-gold);
  color: #4A2300;
}
.broker-wrap .broker-btn.btn-eet {
    display: block;
    width:260px;
    margin:20px auto 0;
    text-align: center;
    padding:14px 0;
    background-color: #F59E0B;
    border-radius:30px;
    color:#fff;
    font-weight:700;
    font-size:16px;
    text-decoration: none;
    box-shadow:0 5px 15px rgba(245,158,11,0.3);
    transition: all 0.25s;
}
.broker-wrap .broker-btn.btn-eet:hover {
    background-color: #d97706;
}
.broker-wrap .badge-hk {
  background: var(--blue-hw-gradient);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.broker-wrap .broker-btn.btn-hk {
  background: var(--blue-hw-gradient);
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(22, 58, 115, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.broker-wrap .broker-btn.btn-hk:hover {
  background: linear-gradient(135deg, #204b8c, #163A73);
  box-shadow: 0 6px 18px rgba(22, 58, 115, 0.5);
  opacity: 0.95;
}
.broker-wrap .badge-yt {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.broker-wrap .broker-btn.btn-yt {
  background: #E6ECF7;
  color: #163A73;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.broker-wrap .broker-btn.btn-yt:hover {
  background: #ccd8ee;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.broker-wrap .broker-footer-tips {
  margin-top: 45px;
  text-align: center;
}
.broker-wrap .broker-footer-tips .main-tip {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 25px 0;
}
.broker-wrap .trust-tags {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.broker-wrap .trust-tags span {
  font-size: 14px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.broker-wrap .trust-tags span svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  fill: #FFE600;
}
.broker-wrap .trust-tags span i {
  color: #FFE600;
  margin-right: 6px;
  font-size: 14px;
}
.broker-wrap .risk-warning-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  color: #ffffff;
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}
.broker-wrap .risk-warning-box strong {
  color: #FFEA00;
  font-weight: 700;
}

/* ==========================================================================
   移动端媒体查询（统一放置末尾，只保留一份，清理冗余重复代码）
   ========================================================================== */
@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;
}
}