:root{
      --theme:#0B3D91;
      --template-theme:{主题色};
      --theme-dark:#07265a;
      --theme-soft:#eaf1fc;
      --accent:#c49a42;
      --danger:#b31f2b;
      --ink:#142033;
      --muted:#667085;
      --line:#dfe5ee;
      --surface:#ffffff;
      --page:#f4f7fb;
      --success:#18794e;
      --shadow:0 18px 44px rgba(15,35,70,.11);
      --radius:18px;
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behaviour:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--page);
      font-family:Inter,Arial,Helvetica,sans-serif;
      line-height:1.6;
    }
    body,
    button,
    input,
    select{font:inherit}
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    button{color:inherit}
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin-inline:auto;
    }

    .topbar{
      background:#07162d;
      color:#dce8fb;
      font-size:13px;
    }
    .topbar .container{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-links{
      display:flex;
      align-items:center;
      gap:20px;
    }
    .topbar a:hover{color:#fff}

    .header{
      position:relative;
      z-index:50;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 4px 20px rgba(18,38,72,.05);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:24px;
    }
    .logo{
      min-width:190px;
      display:flex;
      align-items:center;
      gap:11px;
      color:var(--theme-dark);
      font-weight:850;
      letter-spacing:-.02em;
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }
    .main-nav{
      flex:1;
      align-self:stretch;
    }
    .nav-list{
      height:100%;
      margin:0;
      padding:0;
      display:flex;
      align-items:stretch;
      justify-content:center;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:stretch;
    }
    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      padding:0 12px;
      color:#26364e;
      font-size:14px;
      font-weight:750;
      white-space:nowrap;
    }
    .nav-link:hover,
    .nav-item:focus-within > .nav-link{
      color:var(--theme);
    }
    .nav-link::after{
      position:absolute;
      right:12px;
      bottom:13px;
      left:12px;
      height:2px;
      background:var(--theme);
      content:"";
      opacity:0;
      transform:scaleX(.4);
      transition:.2s ease;
    }
    .nav-link:hover::after,
    .nav-item:focus-within > .nav-link::after{
      opacity:1;
      transform:scaleX(1);
    }
    .has-arrow{padding-right:24px}
    .has-arrow::before{
      position:absolute;
      right:9px;
      top:50%;
      width:6px;
      height:6px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      content:"";
      transform:translateY(-70%) rotate(45deg);
    }
    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      z-index:80;
      visibility:hidden;
      opacity:0;
      border:1px solid var(--line);
      border-top:3px solid var(--theme);
      border-radius:0 0 16px 16px;
      background:#fff;
      box-shadow:var(--shadow);
      transform:translate(-50%,10px);
      transition:opacity .18s ease,transform .18s ease,visibility .18s;
    }
    .dropdown-panel::before,
    .mega-menu::before{
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:12px;
      content:"";
    }
    .dropdown-panel{
      width:320px;
      padding:20px;
    }
    .mega-menu{
      width:min(820px,90vw);
      padding:22px;
    }
    .nav-item:hover > .dropdown-panel,
    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .dropdown-panel,
    .nav-item:focus-within > .mega-menu{
      visibility:visible;
      opacity:1;
      transform:translate(-50%,0);
    }
    .panel-heading{
      margin-bottom:13px;
      color:var(--theme-dark);
      font-size:13px;
      font-weight:850;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .panel-list{
      display:grid;
      gap:5px;
    }
    .panel-list a{
      padding:9px 11px;
      border-radius:9px;
      color:#394960;
      font-size:14px;
    }
    .panel-list a:hover{
      color:var(--theme);
      background:var(--theme-soft);
    }
    .broker-grid,
    .video-grid,
    .tool-grid,
    .product-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .mega-card{
      min-width:0;
      padding:13px;
      display:flex;
      flex-direction:column;
      gap:7px;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      transition:.2s ease;
    }
    .mega-card:hover{
      border-color:#9fb8df;
      box-shadow:0 10px 24px rgba(11,61,145,.1);
      transform:translateY(-2px);
    }
    .mega-card img{
      width:100%;
      height:82px;
      object-fit:cover;
      border-radius:8px;
      background:#eef2f7;
    }
    .tool-grid .mega-card img{
      width:34px;
      height:34px;
      object-fit:contain;
    }
    .mega-card strong{
      overflow:hidden;
      color:#17243a;
      font-size:14px;
      text-overflow:ellipsis;
    }
    .mega-card small{
      overflow:hidden;
      color:var(--muted);
      font-size:12px;
      line-height:1.45;
    }
    .mega-footer{
      margin-top:16px;
      padding:10px 12px;
      display:block;
      border-radius:10px;
      color:#fff;
      background:var(--theme);
      font-size:14px;
      font-weight:800;
      text-align:center;
    }
    .mega-footer:hover{background:var(--theme-dark)}
    .header-btns{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .member-link{
      color:var(--theme);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .account-link{
      padding:11px 16px;
      border-radius:10px;
      color:#fff;
      background:var(--danger);
      box-shadow:0 8px 18px rgba(179,31,43,.2);
      font-size:14px;
      font-weight:850;
      white-space:nowrap;
    }
    .account-link:hover{background:#901822}
    .hamburger{
      width:44px;
      height:44px;
      padding:10px;
      display:none;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      cursor:pointer;
    }
    .hamburger span{
      width:22px;
      height:2px;
      margin:4px auto;
      display:block;
      background:var(--theme-dark);
      transition:.2s ease;
    }
    .hamburger.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
    .hamburger.active span:nth-child(2){opacity:0}
    .hamburger.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

    .drawer-overlay{
      position:fixed;
      inset:0;
      z-index:90;
      visibility:hidden;
      opacity:0;
      background:rgba(5,15,31,.62);
      transition:.25s ease;
    }
    .drawer-overlay.open{
      visibility:visible;
      opacity:1;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      bottom:0;
      z-index:100;
      width:min(400px,92vw);
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 45px rgba(4,15,35,.22);
      transform:translateX(105%);
      transition:transform .28s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      min-height:74px;
      padding:14px 18px;
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      background:var(--theme-dark);
    }
    .drawer-head span{
      flex:1;
      font-weight:800;
    }
    .drawer-head a{
      padding:8px 10px;
      border-radius:8px;
      background:var(--danger);
      font-size:13px;
      font-weight:800;
    }
    .drawer-close{
      width:36px;
      height:36px;
      padding:0;
      border:1px solid rgba(255,255,255,.25);
      border-radius:50%;
      color:#fff;
      background:transparent;
      font-size:25px;
      cursor:pointer;
    }
    .drawer-menu{padding:14px}
    .drawer-link,
    .drawer-toggle{
      width:100%;
      padding:13px 12px;
      display:block;
      border:0;
      border-bottom:1px solid #e7ebf1;
      color:#1d2c43;
      background:transparent;
      font-weight:750;
      text-align:left;
      cursor:pointer;
    }
    .drawer-toggle{
      position:relative;
      padding-right:40px;
    }
    .drawer-toggle::after{
      position:absolute;
      top:10px;
      right:13px;
      content:"+";
      color:var(--theme);
      font-size:22px;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      border-radius:0 0 10px 10px;
      background:#f4f7fb;
      transition:max-height .28s ease;
    }
    .drawer-submenu.open{max-height:720px}
    .drawer-submenu a{
      padding:10px 18px;
      display:block;
      border-bottom:1px solid #e5eaf1;
      color:#506078;
      font-size:14px;
    }
    .drawer-submenu a:hover{
      color:var(--theme);
      background:var(--theme-soft);
    }

    .brokerlist-page{
      min-height:640px;
      padding-bottom:72px;
    }
    .brokerlist-page .page-hero{
      position:relative;
      overflow:hidden;
      padding:72px 0 64px;
      color:#fff;
      background:
        radial-gradient(circle at 82% 18%,rgba(196,154,66,.24),transparent 28%),
        linear-gradient(135deg,#06152c 0%,#0b3d91 62%,#082a64 100%);
    }
    .brokerlist-page .page-hero::after{
      position:absolute;
      right:-90px;
      bottom:-150px;
      width:420px;
      height:420px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:50%;
      content:"";
      box-shadow:0 0 0 42px rgba(255,255,255,.04),0 0 0 90px rgba(255,255,255,.025);
    }
    .brokerlist-page .breadcrumbs{
      margin-bottom:18px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:#cbd9ee;
      font-size:13px;
    }
    .brokerlist-page .breadcrumbs a:hover{color:#fff}
    .brokerlist-page .hero-copy{
      position:relative;
      z-index:1;
      max-width:820px;
    }
    .brokerlist-page .eyebrow{
      margin-bottom:12px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#f4cf7a;
      font-size:13px;
      font-weight:850;
      letter-spacing:.11em;
      text-transform:uppercase;
    }
    .brokerlist-page .eyebrow::before{
      width:28px;
      height:2px;
      background:#f4cf7a;
      content:"";
    }
    .brokerlist-page h1{
      max-width:760px;
      margin:0;
      font-size:clamp(36px,5vw,62px);
      line-height:1.06;
      letter-spacing:-.045em;
    }
    .brokerlist-page .hero-copy > p{
      max-width:720px;
      margin:22px 0 0;
      color:#dce7f8;
      font-size:18px;
    }
    .brokerlist-page .trust-row{
      position:relative;
      z-index:1;
      margin-top:30px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .brokerlist-page .trust-row span{
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.2);
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:#f6f9ff;
      font-size:13px;
      font-weight:700;
    }

    .brokerlist-page .comparison-shell{
      position:relative;
      z-index:5;
      margin-top:-28px;
    }
    .brokerlist-page .filter-panel{
      padding:20px;
      display:grid;
      grid-template-columns:1.4fr repeat(3,1fr) auto;
      gap:12px;
      align-items:end;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .brokerlist-page .filter-field label{
      margin-bottom:6px;
      display:block;
      color:#4b5b72;
      font-size:12px;
      font-weight:850;
      letter-spacing:.05em;
      text-transform:uppercase;
    }
    .brokerlist-page .filter-field input,
    .brokerlist-page .filter-field select{
      width:100%;
      height:46px;
      padding:0 13px;
      border:1px solid #ccd5e2;
      border-radius:10px;
      outline:none;
      color:#23334b;
      background:#fff;
    }
    .brokerlist-page .filter-field input:focus,
    .brokerlist-page .filter-field select:focus{
      border-color:var(--theme);
      box-shadow:0 0 0 3px rgba(11,61,145,.1);
    }
    .brokerlist-page .filter-button{
      height:46px;
      padding:0 20px;
      border:0;
      border-radius:10px;
      color:#fff;
      background:var(--theme);
      font-weight:850;
      cursor:pointer;
    }
    .brokerlist-page .filter-button:hover{background:var(--theme-dark)}

    .brokerlist-page .content-grid{
      padding-top:38px;
      display:grid;
      grid-template-columns:minmax(0,1fr) 290px;
      gap:28px;
      align-items:start;
    }
    .brokerlist-page .section-heading{
      margin-bottom:18px;
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
    }
    .brokerlist-page .section-heading h2{
      margin:0;
      color:#17253b;
      font-size:27px;
      letter-spacing:-.025em;
    }
    .brokerlist-page .section-heading p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .brokerlist-page .broker-list{
      display:grid;
      gap:18px;
    }
    .brokerlist-page .broker-card{
      min-width:0;
      padding:22px;
      display:grid;
      grid-template-columns:150px minmax(0,1fr);
      gap:22px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:0 8px 26px rgba(21,41,77,.06);
      transition:.22s ease;
    }
    .brokerlist-page .broker-card:hover{
      border-color:#abc0e0;
      box-shadow:0 18px 38px rgba(11,61,145,.11);
      transform:translateY(-2px);
    }
    .brokerlist-page .broker-logo-wrap{
      min-height:150px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid #e3e8f0;
      border-radius:14px;
      background:#f8fafc;
    }
    .brokerlist-page .broker-logo-wrap img{
      width:100%;
      max-height:86px;
      object-fit:contain;
    }
    .brokerlist-page .broker-body{min-width:0}
    .brokerlist-page .broker-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
    }
    .brokerlist-page .broker-name{
      margin:0;
      color:#15243a;
      font-size:23px;
      line-height:1.25;
    }
    .brokerlist-page .rating{
      flex:none;
      padding:7px 10px;
      border:1px solid #ecd397;
      border-radius:9px;
      color:#6f5011;
      background:#fff8e7;
      font-size:13px;
      font-weight:850;
    }
    .brokerlist-page .broker-summary{
      margin:10px 0 15px;
      color:#5e6d81;
      font-size:15px;
    }
    .brokerlist-page .broker-metrics{
      margin:0;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:9px;
    }
    .brokerlist-page .broker-metrics div{
      min-width:0;
      padding:10px;
      border-radius:10px;
      background:#f3f6fa;
    }
    .brokerlist-page .broker-metrics dt{
      color:#778397;
      font-size:11px;
      font-weight:800;
      letter-spacing:.04em;
      text-transform:uppercase;
    }
    .brokerlist-page .broker-metrics dd{
      margin:3px 0 0;
      overflow-wrap:anywhere;
      color:#1f3048;
      font-size:13px;
      font-weight:800;
    }
    .brokerlist-page .regulation{
      margin:13px 0 0;
      color:#42536b;
      font-size:13px;
    }
    .brokerlist-page .regulation strong{color:#243750}
    .brokerlist-page .broker-actions{
      margin-top:17px;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
    }
    .brokerlist-page .review-link,
    .brokerlist-page .affiliate-link{
      padding:10px 16px;
      border-radius:10px;
      font-size:14px;
      font-weight:850;
      text-align:center;
    }
    .brokerlist-page .review-link{
      border:1px solid var(--theme);
      color:var(--theme);
      background:#fff;
    }
    .brokerlist-page .review-link:hover{background:var(--theme-soft)}
    .brokerlist-page .affiliate-link{
      color:#fff;
      background:var(--danger);
    }
    .brokerlist-page .affiliate-link:hover{background:#901822}
    .brokerlist-page .terms-note{
      color:#7b8798;
      font-size:11px;
    }

    .brokerlist-page .sidebar{
      display:grid;
      gap:18px;
    }
    .brokerlist-page .side-card{
      padding:21px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      box-shadow:0 8px 24px rgba(21,41,77,.05);
    }
    .brokerlist-page .side-card h2,
    .brokerlist-page .side-card h3{
      margin:0 0 12px;
      color:#17263d;
      font-size:19px;
    }
    .brokerlist-page .side-card p{
      margin:0;
      color:#637186;
      font-size:14px;
    }
    .brokerlist-page .check-list{
      margin:14px 0 0;
      padding:0;
      display:grid;
      gap:10px;
      list-style:none;
    }
    .brokerlist-page .check-list li{
      position:relative;
      padding-left:24px;
      color:#44546b;
      font-size:14px;
    }
    .brokerlist-page .check-list li::before{
      position:absolute;
      top:3px;
      left:0;
      width:16px;
      height:16px;
      border-radius:50%;
      color:#fff;
      background:var(--success);
      content:"✓";
      font-size:11px;
      font-weight:900;
      line-height:16px;
      text-align:center;
    }
    .brokerlist-page .notice-card{
      border-color:#eadfbf;
      background:#fffbf0;
    }
    .brokerlist-page .notice-card h3{color:#5f4818}
    .brokerlist-page .notice-card p{color:#715f39}
    .brokerlist-page .help-link{
      margin-top:15px;
      padding:10px 12px;
      display:block;
      border-radius:9px;
      color:#fff;
      background:var(--theme);
      font-size:13px;
      font-weight:850;
      text-align:center;
    }

    .brokerlist-page .pagination{
      margin-top:28px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .brokerlist-page .pagination a{
      min-width:42px;
      height:42px;
      padding:0 13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid var(--line);
      border-radius:9px;
      color:#33445c;
      background:#fff;
      font-size:14px;
      font-weight:750;
    }
    .brokerlist-page .pagination a:hover,
    .brokerlist-page .pagination a.active,
    .brokerlist-page .pagination a.current{
      border-color:var(--theme);
      color:#fff;
      background:var(--theme);
    }
    .brokerlist-page .methodology{
      margin-top:42px;
      padding:30px;
      border-radius:18px;
      color:#dce8f8;
      background:#0a1d3a;
    }
    .brokerlist-page .methodology h2{
      margin:0 0 10px;
      color:#fff;
      font-size:25px;
    }
    .brokerlist-page .methodology p{
      max-width:900px;
      margin:0;
      color:#c7d5e8;
    }
    .brokerlist-page .method-grid{
      margin-top:20px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .brokerlist-page .method-item{
      padding:16px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:12px;
      background:rgba(255,255,255,.05);
    }
    .brokerlist-page .method-item strong{
      display:block;
      color:#f2ce7c;
    }
    .brokerlist-page .method-item span{
      margin-top:5px;
      display:block;
      color:#cbd7e7;
      font-size:13px;
    }

    .footer{
      padding:56px 0 20px;
      color:#cad5e6;
      background:#07162d;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr repeat(3,1fr);
      gap:38px;
    }
    .footer h3{
      margin:0 0 14px;
      color:#fff;
      font-size:15px;
    }
    .footer-brand strong{
      display:block;
      margin-bottom:12px;
      color:#fff;
      font-size:22px;
    }
    .footer p{
      margin:0 0 10px;
      color:#9fb0c7;
      font-size:13px;
    }
    .footer-grid > div:not(.footer-brand) a{
      margin:0 0 9px;
      display:block;
      color:#b7c5d8;
      font-size:14px;
    }
    .footer a:hover{color:#fff}
    .footer-bottom{
      margin-top:36px;
      padding-top:18px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#8fa1ba;
      font-size:12px;
    }

    @media (max-width:1080px){
      .main-nav{display:none}
      .hamburger{display:block}
      .header-inner{min-height:70px}
      .header-btns{margin-left:auto}
      .brokerlist-page .filter-panel{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .brokerlist-page .filter-button{width:100%}
      .brokerlist-page .content-grid{
        grid-template-columns:minmax(0,1fr);
      }
      .brokerlist-page .sidebar{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .footer-grid{
        grid-template-columns:1.5fr repeat(2,1fr);
      }
      .footer-brand{grid-column:1/-1}
    }

    @media (max-width:760px){
      .container{width:min(100% - 28px,var(--container))}
      .topbar .container{
        padding:8px 0;
        align-items:flex-start;
        flex-direction:column;
        gap:3px;
      }
      .topbar-links{
        align-items:flex-start;
        flex-wrap:wrap;
        gap:4px 14px;
      }
      .topbar-links span{display:none}
      .logo{min-width:0}
      .logo span{max-width:150px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
      .member-link{display:none}
      .account-link{padding:9px 11px;font-size:12px}
      .brokerlist-page .page-hero{padding:50px 0 54px}
      .brokerlist-page .hero-copy > p{font-size:16px}
      .brokerlist-page .filter-panel{grid-template-columns:1fr}
      .brokerlist-page .section-heading{
        align-items:flex-start;
        flex-direction:column;
      }
      .brokerlist-page .broker-card{
        grid-template-columns:1fr;
        padding:17px;
      }
      .brokerlist-page .broker-logo-wrap{min-height:120px}
      .brokerlist-page .broker-top{align-items:flex-start}
      .brokerlist-page .broker-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
      .brokerlist-page .broker-actions{
        align-items:stretch;
        flex-direction:column;
      }
      .brokerlist-page .review-link,
      .brokerlist-page .affiliate-link{width:100%}
      .brokerlist-page .sidebar{grid-template-columns:1fr}
      .brokerlist-page .method-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-brand{grid-column:auto}
      .footer-bottom{flex-direction:column}
    }

    @media (max-width:430px){
      .account-link{display:none}
      .brokerlist-page .broker-top{flex-direction:column}
      .brokerlist-page .broker-metrics{grid-template-columns:1fr}
    }