:root{
      --theme:#0B3D91;
      --template-theme:{主题色};
      --theme-dark:#072b68;
      --theme-light:#edf4ff;
      --accent:#d4a72c;
      --danger:#b4232d;
      --ink:#142033;
      --muted:#657087;
      --line:#dce3ee;
      --surface:#ffffff;
      --soft:#f5f7fb;
      --shadow:0 18px 50px rgba(11,61,145,.10);
      --radius:18px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:#f7f9fc;
      font-family:"Microsoft YaHei","PingFang SC","Noto Sans SC",Arial,sans-serif;
      line-height:1.65;
      overflow-x:hidden;
    }
    body.drawer-lock{overflow:hidden}
    img{display:block;max-width:100%}
    a{color:inherit;text-decoration:none}
    button,input,select{font:inherit}
    button{color:inherit}
    .container{width:min(1200px,calc(100% - 40px));margin:0 auto}

    .topbar{
      color:#dbe8ff;
      background:#071c3d;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:13px;
    }
    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .topbar-contact{display:flex;align-items:center;gap:20px}
    .topbar a{transition:color .2s ease}
    .topbar a:hover{color:#fff}

    .header{
      position:relative;
      z-index:40;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 24px rgba(15,35,70,.04);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:28px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:11px;
      min-width:max-content;
      color:var(--theme-dark);
      font-size:19px;
      font-weight:800;
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:9px;
    }
    .main-nav{margin-left:auto;align-self:stretch}
    .nav-list{
      height:100%;
      display:flex;
      align-items:stretch;
      gap:2px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }
    .nav-item>a{
      display:flex;
      align-items:center;
      height:100%;
      padding:0 12px;
      color:#27354b;
      font-size:15px;
      font-weight:650;
      white-space:nowrap;
      transition:color .2s ease,background .2s ease;
    }
    .nav-item>a:hover,
    .nav-item:focus-within>a{
      color:var(--theme);
      background:var(--theme-light);
    }
    .nav-item:has(.dropdown-panel)>a::after,
    .nav-item:has(.mega-menu)>a::after{
      content:"";
      width:6px;
      height:6px;
      margin-left:7px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:rotate(45deg) translateY(-2px);
    }
    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      width:640px;
      padding:22px;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translate(-50%,12px);
      color:var(--ink);
      background:#fff;
      border:1px solid var(--line);
      border-radius:0 0 18px 18px;
      box-shadow:0 24px 70px rgba(8,31,68,.16);
      transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
    }
    .dropdown-panel{width:390px;padding:18px}
    .mega-menu.mega-wide{width:min(940px,calc(100vw - 40px))}
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translate(-50%,0);
    }
    .dropdown-title,
    .mega-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding-bottom:14px;
      margin-bottom:14px;
      border-bottom:1px solid var(--line);
    }
    .dropdown-title span,
    .mega-head strong{font-size:16px;color:#162844}
    .dropdown-title a,
    .mega-head a{
      color:var(--theme);
      font-size:13px;
      font-weight:700;
    }
    .dropdown-list{display:grid;gap:4px}
    .dropdown-list a{
      padding:10px 12px;
      border-radius:9px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .dropdown-list a:hover{color:var(--theme);background:var(--theme-light)}
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .mega-card{
      min-width:0;
      padding:13px;
      background:#f8faff;
      border:1px solid #e5ebf4;
      border-radius:12px;
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }
    .mega-card:hover{
      transform:translateY(-2px);
      border-color:#aac3ed;
      box-shadow:0 10px 24px rgba(11,61,145,.09);
    }
    .mega-card>img{
      width:38px;
      height:38px;
      margin-bottom:9px;
      object-fit:contain;
      border-radius:8px;
    }
    .mega-media{display:flex;align-items:flex-start;gap:11px}
    .mega-media>img{
      flex:0 0 54px;
      width:54px;
      height:48px;
      margin:0;
      object-fit:cover;
      background:#fff;
      border-radius:8px;
    }
    .mega-media>div{min-width:0}
    .mega-card strong{
      display:block;
      color:#182b48;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card p,
    .mega-card small{
      display:block;
      margin:4px 0 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.45;
    }
    .mega-card p{
      display:-webkit-box;
      overflow:hidden;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:5px 10px;
      margin-top:6px;
      color:#68758a;
      font-size:11px;
    }
    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:15px;
    }
    .mega-categories a{
      padding:6px 11px;
      color:#3b4b64;
      background:#f1f4f9;
      border-radius:999px;
      font-size:12px;
    }
    .mega-categories a:hover{color:#fff;background:var(--theme)}

    .header-btns{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
    }
    .header-btns>a,
    .header-btns>button:not(.hamburger){
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:8px 15px;
      border-radius:9px;
    }
    .open-account{
      color:#fff;
      background:var(--theme);
      box-shadow:0 8px 18px rgba(11,61,145,.18);
      font-weight:700;
    }
    .open-account:hover{background:var(--theme-dark)}
    .hamburger{
      display:none;
      width:44px;
      height:42px;
      padding:9px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:9px;
      cursor:pointer;
    }
    .hamburger span{
      display:block;
      width:22px;
      height:2px;
      margin:4px auto;
      background:var(--ink);
      transition:transform .2s ease,opacity .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:80;
      opacity:0;
      visibility:hidden;
      background:rgba(4,16,36,.62);
      backdrop-filter:blur(2px);
      transition:opacity .25s ease,visibility .25s ease;
    }
    .drawer-overlay.open{opacity:1;visibility:visible}
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:90;
      width:min(390px,92vw);
      height:100dvh;
      overflow-y:auto;
      transform:translateX(105%);
      background:#fff;
      box-shadow:-20px 0 60px rgba(0,0,0,.2);
      transition:transform .28s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      position:sticky;
      top:0;
      z-index:2;
      min-height:72px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:14px 18px;
      background:#fff;
      border-bottom:1px solid var(--line);
    }
    .drawer-head>a{
      padding:8px 12px;
      color:#fff;
      background:var(--theme);
      border-radius:8px;
      font-weight:700;
    }
    .drawer-close{
      width:40px;
      height:40px;
      margin-left:auto;
      color:#344157;
      background:#f3f5f9;
      border:0;
      border-radius:50%;
      font-size:28px;
      line-height:1;
      cursor:pointer;
    }
    .drawer-menu{padding:12px 18px 30px}
    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 8px;
      background:none;
      border:0;
      border-bottom:1px solid #edf0f5;
      text-align:left;
      font-weight:750;
      cursor:pointer;
    }
    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:20px;
      font-weight:400;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      background:#f7f9fc;
      transition:max-height .3s ease;
    }
    .drawer-submenu.open{max-height:680px}
    .drawer-submenu a{
      display:block;
      padding:10px 15px;
      color:#536078;
      border-bottom:1px solid #e8edf4;
      font-size:14px;
    }
    .drawer-submenu a:hover{color:var(--theme)}

    .brokerlist-page{min-width:0}
    .brokerlist-page .page-hero{
      position:relative;
      overflow:hidden;
      padding:76px 0 68px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 25%,rgba(212,167,44,.24),transparent 26%),
        radial-gradient(circle at 86% 18%,rgba(64,126,231,.28),transparent 28%),
        linear-gradient(135deg,#061a38 0%,#0B3D91 58%,#071e49 100%);
    }
    .brokerlist-page .page-hero::before,
    .brokerlist-page .page-hero::after{
      content:"";
      position:absolute;
      border:1px solid rgba(255,255,255,.10);
      border-radius:50%;
    }
    .brokerlist-page .page-hero::before{
      width:440px;
      height:440px;
      right:-140px;
      top:-240px;
    }
    .brokerlist-page .page-hero::after{
      width:260px;
      height:260px;
      left:-100px;
      bottom:-190px;
    }
    .brokerlist-page .breadcrumbs{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:24px;
      color:#c8d8f3;
      font-size:14px;
    }
    .brokerlist-page .breadcrumbs a:hover{color:#fff}
    .brokerlist-page .hero-copy{
      position:relative;
      z-index:1;
      max-width:860px;
    }
    .brokerlist-page .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:#f4d77d;
      font-size:13px;
      font-weight:800;
      letter-spacing:.12em;
    }
    .brokerlist-page .eyebrow::before{
      content:"";
      width:30px;
      height:2px;
      background:#f4d77d;
    }
    .brokerlist-page h1{
      margin:0;
      font-size:clamp(34px,5vw,58px);
      line-height:1.15;
      letter-spacing:-.03em;
    }
    .brokerlist-page .hero-copy>p{
      max-width:750px;
      margin:20px 0 0;
      color:#d8e5f8;
      font-size:17px;
    }
    .brokerlist-page .hero-points{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }
    .brokerlist-page .hero-points span{
      padding:8px 13px;
      color:#eef5ff;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.17);
      border-radius:999px;
      font-size:13px;
      backdrop-filter:blur(8px);
    }

    .brokerlist-page .broker-content{padding:56px 0 80px}
    .brokerlist-page .filter-panel{
      margin-top:-84px;
      margin-bottom:34px;
      position:relative;
      z-index:3;
      padding:24px;
      background:#fff;
      border:1px solid #e4e9f1;
      border-radius:20px;
      box-shadow:var(--shadow);
    }
    .brokerlist-page .filter-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:24px;
      margin-bottom:18px;
    }
    .brokerlist-page .filter-head h2{
      margin:0 0 4px;
      color:#162844;
      font-size:21px;
    }
    .brokerlist-page .filter-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .brokerlist-page .filter-note{
      flex:0 0 auto;
      padding:7px 11px;
      color:#795d12;
      background:#fff8df;
      border:1px solid #f1dea1;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
    }
    .brokerlist-page .filters{
      display:grid;
      grid-template-columns:1.4fr repeat(3,1fr) auto;
      gap:12px;
    }
    .brokerlist-page .field{
      display:flex;
      align-items:center;
      min-height:46px;
      padding:0 13px;
      background:#f8fafc;
      border:1px solid var(--line);
      border-radius:10px;
    }
    .brokerlist-page .field input,
    .brokerlist-page .field select{
      width:100%;
      color:#344158;
      background:transparent;
      border:0;
      outline:0;
    }
    .brokerlist-page .field input::placeholder{color:#8a95a8}
    .brokerlist-page .filter-button{
      min-height:46px;
      padding:0 22px;
      color:#fff;
      background:var(--theme);
      border:0;
      border-radius:10px;
      font-weight:750;
      cursor:pointer;
    }
    .brokerlist-page .filter-button:hover{background:var(--theme-dark)}

    .brokerlist-page .section-heading{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:22px;
    }
    .brokerlist-page .section-heading h2{
      margin:0;
      color:#142640;
      font-size:29px;
      line-height:1.25;
    }
    .brokerlist-page .section-heading p{
      max-width:640px;
      margin:7px 0 0;
      color:var(--muted);
    }
    .brokerlist-page .result-label{
      flex:0 0 auto;
      color:var(--theme);
      font-size:14px;
      font-weight:800;
    }

    .brokerlist-page .broker-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:20px;
    }
    .brokerlist-page .broker-card{
      min-width:0;
      display:flex;
      flex-direction:column;
      padding:22px;
      background:#fff;
      border:1px solid #e1e7f0;
      border-radius:18px;
      box-shadow:0 10px 30px rgba(24,43,75,.05);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .brokerlist-page .broker-card:hover{
      transform:translateY(-4px);
      border-color:#a9c1e7;
      box-shadow:0 18px 42px rgba(11,61,145,.11);
    }
    .brokerlist-page .broker-card-head{
      display:flex;
      align-items:center;
      gap:15px;
      min-width:0;
    }
    .brokerlist-page .broker-logo{
      flex:0 0 72px;
      width:72px;
      height:72px;
      padding:8px;
      object-fit:contain;
      background:#fff;
      border:1px solid #e5eaf2;
      border-radius:14px;
    }
    .brokerlist-page .broker-title{min-width:0;flex:1}
    .brokerlist-page .broker-title h3{
      margin:0;
      color:#172a47;
      font-size:21px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .brokerlist-page .broker-rating{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      margin-top:7px;
    }
    .brokerlist-page .score{
      display:inline-flex;
      align-items:center;
      gap:5px;
      color:#70540b;
      font-size:13px;
      font-weight:800;
    }
    .brokerlist-page .score::before{content:"★";color:#d4a72c}
    .brokerlist-page .regulated{
      padding:3px 8px;
      color:#17633a;
      background:#eaf8f0;
      border-radius:999px;
      font-size:11px;
      font-weight:750;
    }
    .brokerlist-page .broker-summary{
      min-height:78px;
      margin:18px 0;
      color:#5c687d;
      font-size:14px;
      display:-webkit-box;
      overflow:hidden;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .brokerlist-page .broker-specs{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      margin-bottom:19px;
      overflow:hidden;
      background:#f7f9fc;
      border:1px solid #e6ebf2;
      border-radius:12px;
    }
    .brokerlist-page .spec{
      min-width:0;
      padding:12px 13px;
      border-right:1px solid #e6ebf2;
      border-bottom:1px solid #e6ebf2;
    }
    .brokerlist-page .spec:nth-child(2n){border-right:0}
    .brokerlist-page .spec:nth-last-child(-n+2){border-bottom:0}
    .brokerlist-page .spec span{
      display:block;
      margin-bottom:3px;
      color:#7a8597;
      font-size:11px;
    }
    .brokerlist-page .spec strong{
      display:block;
      color:#263650;
      font-size:13px;
      overflow-wrap:anywhere;
    }
    .brokerlist-page .broker-actions{
      display:flex;
      gap:10px;
      margin-top:auto;
    }
    .brokerlist-page .broker-actions a{
      flex:1;
      min-height:43px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 13px;
      border-radius:9px;
      font-size:14px;
      font-weight:800;
      text-align:center;
    }
    .brokerlist-page .detail-button{
      color:var(--theme);
      background:var(--theme-light);
      border:1px solid #c9d9f3;
    }
    .brokerlist-page .detail-button:hover{background:#dce9ff}
    .brokerlist-page .account-button{
      color:#fff;
      background:var(--danger);
      border:1px solid var(--danger);
    }
    .brokerlist-page .account-button:hover{background:#931923}

    .brokerlist-page .pagination{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:8px;
      margin-top:38px;
    }
    .brokerlist-page .pagination a{
      min-width:42px;
      min-height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 13px;
      color:#425069;
      background:#fff;
      border:1px solid var(--line);
      border-radius:9px;
      font-weight:700;
    }
    .brokerlist-page .pagination a:hover,
    .brokerlist-page .pagination a.active,
    .brokerlist-page .pagination a.current{
      color:#fff;
      background:var(--theme);
      border-color:var(--theme);
    }

    .brokerlist-page .comparison-guide{
      display:grid;
      grid-template-columns:1.2fr repeat(3,1fr);
      gap:16px;
      margin-top:58px;
      padding:28px;
      color:#fff;
      background:#091f46;
      border-radius:22px;
    }
    .brokerlist-page .guide-intro h2{
      margin:0 0 8px;
      font-size:25px;
    }
    .brokerlist-page .guide-intro p{
      margin:0;
      color:#c8d7ee;
      font-size:14px;
    }
    .brokerlist-page .guide-card{
      padding:17px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      border-radius:14px;
    }
    .brokerlist-page .guide-card b{
      display:block;
      margin-bottom:6px;
      color:#f2d377;
    }
    .brokerlist-page .guide-card span{
      color:#d2ddee;
      font-size:13px;
    }
    .brokerlist-page .risk-note{
      margin-top:20px;
      padding:18px 20px;
      color:#5d4a18;
      background:#fff9e8;
      border:1px solid #ead89c;
      border-radius:14px;
      font-size:13px;
    }
    .brokerlist-page .risk-note strong{color:#7d5b08}

    .footer{
      color:#c9d5e7;
      background:#07172f;
    }
    .footer-main{
      display:grid;
      grid-template-columns:1.45fr repeat(3,1fr);
      gap:45px;
      padding-top:58px;
      padding-bottom:48px;
    }
    .footer .logo{color:#fff}
    .footer-brand p{
      max-width:390px;
      margin:18px 0;
      color:#9fb0c8;
      font-size:14px;
    }
    .footer-social{display:flex;flex-wrap:wrap;gap:10px}
    .footer h3{
      margin:5px 0 17px;
      color:#fff;
      font-size:16px;
    }
    .footer-links,
    .footer-contact{display:grid;gap:10px}
    .footer-links a,
    .footer-contact a{
      width:max-content;
      max-width:100%;
      color:#aebdd1;
      font-size:14px;
      transition:color .2s ease,transform .2s ease;
    }
    .footer-links a:hover,
    .footer-contact a:hover{color:#fff;transform:translateX(2px)}
    .footer-contact span{color:#778ba8;font-size:12px}
    .footer-bottom{border-top:1px solid rgba(255,255,255,.09)}
    .footer-bottom-inner{
      min-height:64px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      color:#8194af;
      font-size:13px;
    }
    .footer-bottom-links{display:flex;flex-wrap:wrap;gap:18px}
    .footer-bottom-links a:hover{color:#fff}

    @media (max-width:1120px){
      .main-nav{display:none}
      .hamburger{display:block}
      .header-inner{min-height:70px}
      .header-btns{margin-left:auto}
      .brokerlist-page .filters{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .brokerlist-page .filter-button{grid-column:span 2}
      .footer-main{grid-template-columns:1.25fr repeat(3,1fr);gap:28px}
    }

    @media (max-width:860px){
      .brokerlist-page .broker-grid{grid-template-columns:1fr}
      .brokerlist-page .comparison-guide{grid-template-columns:1fr 1fr}
      .brokerlist-page .guide-intro{grid-column:1/-1}
      .footer-main{grid-template-columns:1fr 1fr}
      .footer-brand{grid-column:1/-1}
    }

    @media (max-width:680px){
      .container{width:min(100% - 28px,1200px)}
      .topbar-inner{
        min-height:44px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        gap:2px;
        padding:6px 0;
      }
      .topbar-inner>span{display:none}
      .topbar-contact{
        width:100%;
        justify-content:space-between;
        gap:10px;
      }
      .header-btns .open-account{display:none}
      .header-btns>a:not(.open-account){display:none}
      .logo span{font-size:16px}
      .logo img{width:37px;height:37px}

      .brokerlist-page .page-hero{padding:52px 0 90px}
      .brokerlist-page .hero-copy>p{font-size:15px}
      .brokerlist-page .hero-points{gap:7px}
      .brokerlist-page .hero-points span{font-size:12px}
      .brokerlist-page .broker-content{padding-bottom:58px}
      .brokerlist-page .filter-panel{
        margin-top:-62px;
        padding:19px;
      }
      .brokerlist-page .filter-head,
      .brokerlist-page .section-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
      }
      .brokerlist-page .filter-note{align-self:flex-start}
      .brokerlist-page .filters{grid-template-columns:1fr}
      .brokerlist-page .filter-button{grid-column:auto}
      .brokerlist-page .broker-card{padding:17px}
      .brokerlist-page .broker-logo{
        flex-basis:60px;
        width:60px;
        height:60px;
      }
      .brokerlist-page .broker-title h3{font-size:18px}
      .brokerlist-page .broker-summary{min-height:auto}
      .brokerlist-page .broker-actions{flex-direction:column}
      .brokerlist-page .comparison-guide{
        grid-template-columns:1fr;
        padding:21px;
      }
      .brokerlist-page .guide-intro{grid-column:auto}
      .footer-main{grid-template-columns:1fr;padding-top:42px}
      .footer-brand{grid-column:auto}
      .footer-bottom-inner{
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        padding:17px 0;
      }
    }

    @media (max-width:430px){
      .topbar-contact{font-size:11px}
      .brokerlist-page .broker-specs{grid-template-columns:1fr}
      .brokerlist-page .spec,
      .brokerlist-page .spec:nth-child(2n){
        border-right:0;
        border-bottom:1px solid #e6ebf2;
      }
      .brokerlist-page .spec:last-child{border-bottom:0}
    }