:root {
      --theme: #0B3D91;
      --template-theme: {主题色};
      --theme-dark: #07285f;
      --cyan: #08c9d4;
      --cyan-soft: #e9fbfc;
      --ink: #172033;
      --muted: #637083;
      --line: #dce3ec;
      --surface: #f4f7fa;
      --white: #fff;
      --success: #16845b;
      --warning: #d78416;
      --shadow: 0 14px 36px rgba(20, 42, 78, .09);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--surface);
      font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
      line-height: 1.6;
    }

    body,
    button,
    input,
    select {
      font: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    select {
      color: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .topbar {
      color: #d9e8ff;
      background: var(--theme-dark);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .topbar-links {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .topbar a:hover {
      color: var(--white);
    }

    .header {
      position: relative;
      z-index: 30;
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .logo {
      min-width: 210px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--theme);
      font-size: 18px;
      font-weight: 800;
    }

    .logo img {
      width: 38px;
      height: 38px;
      object-fit: contain;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: none;
      place-items: center;
      color: var(--white);
      background: var(--theme);
      border-radius: 6px;
      font-size: 13px;
      font-weight: 900;
    }

    .logo img[style*="display: none"] + .logo-mark {
      display: grid;
    }

    .main-nav {
      margin-left: auto;
      align-self: stretch;
    }

    .nav-list {
      height: 100%;
      display: flex;
      align-items: stretch;
      gap: 2px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 13px;
      color: #28344a;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:not(.simple)::after {
      width: 6px;
      height: 6px;
      margin: -4px 0 0 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      content: "";
    }

    .nav-item:hover > .nav-link,
    .nav-item:focus-within > .nav-link {
      color: var(--theme);
      background: #f3f7fd;
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      right: 0;
      z-index: 40;
      visibility: hidden;
      margin: 0;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-top: 3px solid var(--cyan);
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s;
    }

    .dropdown-panel {
      width: 320px;
    }

    .mega-menu {
      width: min(680px, 80vw);
    }

    .dropdown-panel::before,
    .mega-menu::before {
      position: absolute;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 10px;
      content: "";
    }

    .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: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 28px;
    }

    .mega-block {
      min-width: 0;
    }

    .menu-heading {
      margin: 0 0 13px;
      color: var(--theme);
      font-size: 15px;
    }

    .menu-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .menu-list a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 3px;
      border-bottom: 1px solid #edf1f5;
      color: #455268;
      font-size: 14px;
    }

    .menu-list a:hover {
      color: var(--theme);
    }

    .menu-list img {
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

    .broker-mega-card,
    .video-mega-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 0;
      border-bottom: 1px solid #edf1f5;
    }

    .broker-mega-card img {
      width: 44px;
      height: 44px;
      flex: 0 0 auto;
      padding: 4px;
      object-fit: contain;
      background: #f7f9fc;
      border: 1px solid var(--line);
      border-radius: 5px;
    }

    .video-mega-card img {
      width: 78px;
      height: 48px;
      flex: 0 0 auto;
      object-fit: cover;
      border-radius: 4px;
    }

    .broker-mega-card span,
    .video-mega-card span {
      min-width: 0;
    }

    .mega-title,
    .mega-meta {
      display: block;
    }

    .mega-title {
      overflow: hidden;
      color: #243047;
      font-size: 14px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mega-meta {
      color: var(--muted);
      font-size: 12px;
    }

    .header-btns {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-btns > span {
      display: flex;
      align-items: center;
    }

    .account-link {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 17px;
      color: var(--white);
      background: var(--theme);
      border-radius: 5px;
      font-size: 14px;
      font-weight: 700;
    }

    .account-link:hover {
      background: var(--theme-dark);
    }

    .hamburger {
      width: 42px;
      height: 42px;
      display: none;
      position: relative;
      padding: 0;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 5px;
    }

    .hamburger span {
      position: absolute;
      left: 10px;
      width: 20px;
      height: 2px;
      background: var(--theme);
      transition: transform .2s, opacity .2s;
    }

    .hamburger span:nth-child(1) {
      top: 13px;
    }

    .hamburger span:nth-child(2) {
      top: 19px;
    }

    .hamburger span:nth-child(3) {
      top: 25px;
    }

    .hamburger.active span:nth-child(1) {
      top: 19px;
      transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      top: 19px;
      transform: rotate(-45deg);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 80;
      visibility: hidden;
      background: rgba(8, 18, 35, .55);
      opacity: 0;
      transition: opacity .22s, visibility .22s;
    }

    .drawer-overlay.open {
      visibility: visible;
      opacity: 1;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 90;
      width: min(390px, 92vw);
      overflow-y: auto;
      background: var(--white);
      box-shadow: -18px 0 46px rgba(11, 32, 67, .2);
      transform: translateX(102%);
      transition: transform .24s ease;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-head {
      min-height: 72px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      color: var(--white);
      background: var(--theme);
    }

    .drawer-head > a {
      padding: 7px 13px;
      border: 1px solid rgba(255, 255, 255, .55);
      border-radius: 4px;
      font-weight: 700;
    }

    .drawer-close {
      width: 38px;
      height: 38px;
      margin-left: auto;
      padding: 0;
      color: var(--white);
      background: transparent;
      border: 0;
      font-size: 30px;
      line-height: 1;
    }

    .drawer-menu {
      padding: 12px 18px 32px;
    }

    .drawer-link,
    .drawer-toggle {
      width: 100%;
      min-height: 48px;
      display: flex;
      align-items: center;
      padding: 0 6px;
      background: transparent;
      border: 0;
      border-bottom: 1px solid var(--line);
      text-align: left;
      font-weight: 700;
    }

    .drawer-toggle {
      justify-content: space-between;
    }

    .drawer-toggle::after {
      width: 7px;
      height: 7px;
      border-right: 2px solid var(--theme);
      border-bottom: 2px solid var(--theme);
      transform: rotate(45deg);
      transition: transform .2s;
      content: "";
    }

    .drawer-toggle.active::after {
      transform: rotate(225deg);
    }

    .drawer-submenu {
      max-height: 0;
      overflow: hidden;
      padding: 0 12px;
      background: #f5f8fc;
      transition: max-height .28s ease;
    }

    .drawer-submenu.open {
      max-height: 560px;
    }

    .drawer-submenu a {
      display: block;
      padding: 10px 5px;
      color: #506078;
      border-bottom: 1px solid #e4eaf1;
      font-size: 14px;
    }

    .brokerlist-page {
      min-height: 620px;
    }

    .brokerlist-page .page-intro {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--theme);
    }

    .brokerlist-page .page-intro::after {
      position: absolute;
      right: -70px;
      bottom: -120px;
      width: 360px;
      height: 260px;
      border: 44px solid rgba(8, 201, 212, .22);
      border-radius: 50%;
      content: "";
    }

    .brokerlist-page .intro-inner {
      position: relative;
      z-index: 1;
      padding: 56px 0 50px;
    }

    .brokerlist-page .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
      color: #c9dcfa;
      font-size: 14px;
    }

    .brokerlist-page .breadcrumb a:hover {
      color: var(--white);
    }

    .brokerlist-page .page-intro h1 {
      margin: 0;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.2;
      letter-spacing: 0;
    }

    .brokerlist-page .page-intro p {
      max-width: 760px;
      margin: 16px 0 0;
      color: #d9e7fb;
      font-size: 16px;
    }

    .brokerlist-page .trust-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: -22px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .brokerlist-page .trust-item {
      min-width: 0;
      padding: 20px 22px;
      border-right: 1px solid var(--line);
    }

    .brokerlist-page .trust-item:last-child {
      border-right: 0;
    }

    .brokerlist-page .trust-item strong {
      display: block;
      color: var(--theme);
      font-size: 18px;
    }

    .brokerlist-page .trust-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .brokerlist-page .directory-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 28px;
      padding: 40px 0 68px;
    }

    .brokerlist-page .filter-panel {
      align-self: start;
      position: sticky;
      top: 20px;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-top: 3px solid var(--cyan);
      border-radius: 6px;
    }

    .brokerlist-page .filter-panel h2 {
      margin: 0 0 18px;
      font-size: 19px;
    }

    .brokerlist-page .filter-field {
      display: block;
      margin-bottom: 17px;
    }

    .brokerlist-page .filter-field > span {
      display: block;
      margin-bottom: 6px;
      color: #46546a;
      font-size: 13px;
      font-weight: 700;
    }

    .brokerlist-page .filter-field select {
      width: 100%;
      min-height: 42px;
      padding: 0 34px 0 11px;
      background: var(--white);
      border: 1px solid #cfd8e4;
      border-radius: 4px;
    }

    .brokerlist-page .filter-options {
      display: grid;
      gap: 9px;
      margin-bottom: 18px;
    }

    .brokerlist-page .filter-options label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4d5a6d;
      font-size: 14px;
    }

    .brokerlist-page .filter-options input {
      accent-color: var(--theme);
    }

    .brokerlist-page .filter-note {
      margin: 18px 0 0;
      padding-top: 16px;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-size: 12px;
    }

    .brokerlist-page .results-column {
      min-width: 0;
    }

    .brokerlist-page .results-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 18px;
    }

    .brokerlist-page .results-head h2 {
      margin: 0;
      font-size: 25px;
    }

    .brokerlist-page .results-head p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .brokerlist-page .sort-control {
      min-width: 150px;
      min-height: 40px;
      padding: 0 12px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 4px;
    }

    .brokerlist-page .broker-list {
      display: grid;
      gap: 16px;
    }

    .brokerlist-page .broker-card {
      min-width: 0;
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr) 205px;
      gap: 22px;
      align-items: center;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 6px;
      box-shadow: 0 4px 16px rgba(22, 46, 80, .04);
      transition: border-color .18s, box-shadow .18s, transform .18s;
    }

    .brokerlist-page .broker-card:hover {
      border-color: #a9c5ed;
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .brokerlist-page .broker-logo {
      width: 118px;
      height: 92px;
      display: grid;
      place-items: center;
      padding: 12px;
      background: #f7f9fc;
      border: 1px solid var(--line);
      border-radius: 5px;
    }

    .brokerlist-page .broker-logo img {
      max-height: 66px;
      object-fit: contain;
    }

    .brokerlist-page .broker-body {
      min-width: 0;
    }

    .brokerlist-page .broker-title-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .brokerlist-page .broker-title-row h3 {
      min-width: 0;
      margin: 0;
      color: var(--theme);
      font-size: 21px;
      line-height: 1.3;
    }

    .brokerlist-page .rating {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 8px;
      color: #815000;
      background: #fff4d6;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
    }

    .brokerlist-page .regulated {
      display: inline-flex;
      padding: 3px 8px;
      color: var(--success);
      background: #e9f8f1;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .brokerlist-page .broker-summary {
      display: -webkit-box;
      overflow: hidden;
      margin: 10px 0 14px;
      color: #58667a;
      font-size: 14px;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .brokerlist-page .broker-facts {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin: 0;
    }

    .brokerlist-page .broker-facts div {
      min-width: 0;
      padding: 8px 10px;
      background: #f5f8fc;
      border-radius: 4px;
    }

    .brokerlist-page .broker-facts dt {
      color: var(--muted);
      font-size: 11px;
    }

    .brokerlist-page .broker-facts dd {
      overflow: hidden;
      margin: 2px 0 0;
      color: #26344a;
      font-size: 13px;
      font-weight: 700;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brokerlist-page .broker-actions {
      display: grid;
      gap: 10px;
      padding-left: 20px;
      border-left: 1px solid var(--line);
    }

    .brokerlist-page .review-link,
    .brokerlist-page .open-account {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 800;
      text-align: center;
    }

    .brokerlist-page .review-link {
      color: var(--theme);
      background: var(--white);
      border: 1px solid var(--theme);
    }

    .brokerlist-page .open-account {
      color: #062f36;
      background: var(--cyan);
      border: 1px solid var(--cyan);
    }

    .brokerlist-page .broker-actions small {
      color: var(--muted);
      font-size: 11px;
      text-align: center;
    }

    .brokerlist-page .pagination {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 7px;
      margin-top: 30px;
    }

    .brokerlist-page .pagination a {
      min-width: 40px;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      color: #415067;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 4px;
      font-size: 14px;
      font-weight: 700;
    }

    .brokerlist-page .pagination a:hover,
    .brokerlist-page .pagination .active,
    .brokerlist-page .pagination .current {
      color: var(--white);
      background: var(--theme);
      border-color: var(--theme);
    }

    .brokerlist-page .method-note {
      margin-top: 28px;
      padding: 22px;
      background: var(--cyan-soft);
      border-left: 4px solid var(--cyan);
    }

    .brokerlist-page .method-note h2 {
      margin: 0 0 7px;
      font-size: 18px;
    }

    .brokerlist-page .method-note p {
      margin: 0;
      color: #49616a;
      font-size: 14px;
    }

    .footer {
      color: #ccd7e7;
      background: #101b2d;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 42px;
      padding: 52px 0 42px;
    }

    .footer-brand > span {
      color: var(--white);
      font-size: 22px;
      font-weight: 800;
    }

    .footer-brand p {
      max-width: 330px;
      margin: 12px 0 0;
      color: #9eacc1;
      font-size: 14px;
    }

    .footer h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 15px;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links li {
      margin: 8px 0;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span {
      color: #aebacf;
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: var(--cyan);
    }

    .footer-contact {
      display: grid;
      gap: 10px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-bottom-inner {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: #8998ad;
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .logo {
        min-width: auto;
      }

      .main-nav {
        display: none;
      }

      .header-btns {
        margin-left: auto;
      }

      .hamburger {
        display: block;
      }

      .brokerlist-page .directory-layout {
        grid-template-columns: 220px minmax(0, 1fr);
      }

      .brokerlist-page .broker-card {
        grid-template-columns: 100px minmax(0, 1fr);
      }

      .brokerlist-page .broker-logo {
        width: 100px;
      }

      .brokerlist-page .broker-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        padding: 16px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
      }

      .brokerlist-page .broker-actions small {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 820px) {
      .brokerlist-page .trust-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .brokerlist-page .trust-item:nth-child(2) {
        border-right: 0;
      }

      .brokerlist-page .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }

      .brokerlist-page .directory-layout {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .filter-panel {
        position: static;
      }

      .brokerlist-page .filter-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 16px;
      }

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

    @media (max-width: 620px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .topbar-inner {
        min-height: 42px;
      }

      .topbar-inner > span {
        display: none;
      }

      .topbar-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
      }

      .topbar-links a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .header-inner {
        min-height: 66px;
        gap: 12px;
      }

      .logo {
        max-width: 48%;
        font-size: 15px;
      }

      .logo img,
      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .header-btns > span {
        display: none;
      }

      .account-link {
        min-height: 36px;
        padding: 0 12px;
      }

      .brokerlist-page .intro-inner {
        padding: 40px 0 45px;
      }

      .brokerlist-page .page-intro h1 {
        font-size: 30px;
      }

      .brokerlist-page .trust-strip {
        margin-top: -16px;
      }

      .brokerlist-page .trust-item {
        padding: 14px;
      }

      .brokerlist-page .directory-layout {
        gap: 22px;
        padding: 30px 0 50px;
      }

      .brokerlist-page .filter-fields {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .results-head {
        align-items: stretch;
        flex-direction: column;
      }

      .brokerlist-page .sort-control {
        width: 100%;
      }

      .brokerlist-page .broker-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
      }

      .brokerlist-page .broker-logo {
        width: 76px;
        height: 70px;
        padding: 8px;
      }

      .brokerlist-page .broker-title-row h3 {
        font-size: 18px;
      }

      .brokerlist-page .broker-summary,
      .brokerlist-page .broker-facts {
        grid-column: 1 / -1;
      }

      .brokerlist-page .broker-body {
        display: contents;
      }

      .brokerlist-page .broker-title-row {
        align-self: center;
      }

      .brokerlist-page .broker-summary {
        margin: 0;
      }

      .brokerlist-page .broker-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .brokerlist-page .broker-actions {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .broker-actions small {
        grid-column: auto;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 32px;
      }

      .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        padding: 14px 0;
      }
    }