:root{
      --theme:#0B3D91;
      --template-theme:{主题色};
      --theme-dark:#07285f;
      --theme-light:#eaf2ff;
      --ink:#112033;
      --muted:#627087;
      --line:#dbe3ee;
      --surface:#ffffff;
      --background:#f4f7fb;
      --terminal:#07110d;
      --terminal-green:#55e68b;
      --amber:#f2b84b;
      --danger:#d34d4d;
      --shadow:0 18px 45px rgba(14,34,63,.10);
      --radius:18px;
      --container:1200px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      color:var(--ink);
      background:var(--background);
      font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      line-height:1.65;
    }

    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(var(--container),calc(100% - 40px));
      margin-inline:auto;
    }

    .skip-link{
      position:fixed;
      z-index:3000;
      top:12px;
      left:12px;
      padding:10px 16px;
      color:#fff;
      background:var(--theme);
      border-radius:8px;
      transform:translateY(-160%);
      transition:transform .2s ease;
    }

    .skip-link:focus{
      transform:translateY(0);
    }

    .topbar{
      color:#dce8ff;
      background:#061a3a;
      font-size:13px;
    }

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

    .topbar-contact{
      display:flex;
      align-items:center;
      gap:20px;
    }

    .topbar a:hover,
    .topbar a:focus-visible{
      color:#fff;
      text-decoration:underline;
    }

    .header{
      position:relative;
      z-index:1000;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 4px 20px rgba(13,37,68,.05);
    }

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

    .logo{
      flex:none;
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:var(--theme-dark);
      font-size:20px;
      font-weight:900;
      letter-spacing:.02em;
    }

    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }

    .main-nav{
      min-width:0;
      margin-left:auto;
    }

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

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

    .nav-link{
      display:flex;
      align-items:center;
      min-height:78px;
      padding:0 11px;
      color:#26364b;
      font-size:15px;
      font-weight:700;
      white-space:nowrap;
      transition:color .2s ease,background .2s ease;
    }

    .has-panel > .nav-link::after{
      content:"";
      width:6px;
      height:6px;
      margin-left:7px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:translateY(-2px) rotate(45deg);
    }

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

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      z-index:1100;
      visibility:hidden;
      opacity:0;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow);
      transform:translateY(8px);
      transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
      pointer-events:none;
    }

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

    .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);
      pointer-events:auto;
    }

    .dropdown-panel{
      left:0;
      width:340px;
      padding:20px;
      border-radius:0 0 16px 16px;
    }

    .dropdown-title,
    .mega-title{
      margin:0;
      color:var(--theme-dark);
      font-weight:900;
    }

    .dropdown-article{
      display:block;
      padding:11px 0;
      color:#34445a;
      border-bottom:1px solid #edf1f6;
      font-size:14px;
      font-weight:650;
    }

    .dropdown-article:hover,
    .dropdown-article:focus-visible{
      color:var(--theme);
    }

    .panel-entry{
      display:inline-flex;
      margin-top:15px;
      color:var(--theme);
      font-size:14px;
      font-weight:800;
    }

    .mega-menu{
      left:50%;
      width:min(900px,calc(100vw - 48px));
      padding:22px;
      border-radius:0 0 18px 18px;
      transform:translate(-50%,8px);
    }

    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu{
      transform:translate(-50%,0);
    }

    .nav-item:nth-last-child(-n+3) .mega-menu{
      right:0;
      left:auto;
      transform:translateY(8px);
    }

    .nav-item:nth-last-child(-n+3):hover > .mega-menu,
    .nav-item:nth-last-child(-n+3):focus-within > .mega-menu{
      transform:translateY(0);
    }

    .mega-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:16px;
      padding-bottom:13px;
      border-bottom:1px solid var(--line);
      color:var(--muted);
      font-size:14px;
    }

    .mega-head a{
      color:var(--theme);
      font-weight:800;
    }

    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .mega-card{
      min-width:0;
      padding:14px;
      border:1px solid #e6ebf2;
      border-radius:12px;
      background:#fbfcfe;
      transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
    }

    .mega-card:hover,
    .mega-card:focus-visible{
      border-color:#a8c1e8;
      box-shadow:0 10px 24px rgba(11,61,145,.10);
      transform:translateY(-2px);
    }

    .mega-card p{
      display:-webkit-box;
      overflow:hidden;
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .broker-mini-head,
    .tool-mini-head{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .broker-mini-head img,
    .tool-mini-head img{
      width:34px;
      height:34px;
      flex:none;
      object-fit:contain;
      border-radius:8px;
      background:#fff;
    }

    .mini-meta{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:5px 10px;
      margin-top:10px;
      color:var(--muted);
      font-size:12px;
    }

    .video-mini{
      display:flex;
      gap:11px;
    }

    .video-mini > img{
      width:92px;
      height:66px;
      flex:none;
      object-fit:cover;
      border-radius:8px;
      background:#e9eef5;
    }

    .video-mini > span{
      min-width:0;
    }

    .video-mini strong{
      display:-webkit-box;
      overflow:hidden;
      line-height:1.45;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .duration{
      display:block;
      margin-top:5px;
      color:var(--theme);
      font-size:12px;
      font-weight:700;
    }

    .category-chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:15px;
    }

    .category-chips a{
      padding:6px 11px;
      color:var(--theme);
      background:var(--theme-light);
      border-radius:999px;
      font-size:13px;
      font-weight:700;
    }

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

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

    .open-account{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 18px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-size:14px;
      font-weight:800;
      box-shadow:0 8px 20px rgba(11,61,145,.20);
    }

    .open-account:hover,
    .open-account:focus-visible{
      background:var(--theme-dark);
    }

    .hamburger{
      display:none;
      width:44px;
      height:44px;
      padding:10px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      cursor:pointer;
    }

    .hamburger span{
      display:block;
      height:2px;
      margin:5px 0;
      background:var(--ink);
      border-radius:2px;
      transition:transform .2s ease,opacity .2s ease;
    }

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

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

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

    .drawer-overlay{
      position:fixed;
      z-index:1990;
      inset:0;
      visibility:hidden;
      opacity:0;
      background:rgba(5,16,33,.58);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

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

    .mobile-drawer{
      position:fixed;
      z-index:2000;
      top:0;
      right:0;
      width:min(420px,92vw);
      height:100dvh;
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 50px rgba(5,19,42,.25);
      transform:translateX(105%);
      transition:transform .25s ease;
    }

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

    .drawer-head{
      position:sticky;
      z-index:2;
      top:0;
      display:flex;
      align-items:center;
      gap:12px;
      min-height:72px;
      padding:14px 18px;
      background:#fff;
      border-bottom:1px solid var(--line);
    }

    .drawer-head > span{
      min-width:0;
      margin-right:auto;
    }

    .drawer-head > a{
      padding:8px 14px;
      color:#fff;
      background:var(--theme);
      border-radius:8px;
      font-size:14px;
      font-weight:800;
    }

    .drawer-close{
      width:40px;
      height:40px;
      border:1px solid var(--line);
      border-radius:9px;
      background:#fff;
      font-size:28px;
      line-height:1;
      cursor:pointer;
    }

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

    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:15px 4px;
      border:0;
      border-bottom:1px solid #e9eef4;
      background:transparent;
      color:var(--ink);
      text-align:left;
      font-weight:800;
      cursor:pointer;
    }

    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:20px;
      font-weight:500;
    }

    .drawer-toggle.active::after{
      content:"−";
    }

    .drawer-submenu{
      display:none;
      padding:7px 0 10px 15px;
      border-bottom:1px solid #e9eef4;
    }

    .drawer-submenu.open{
      display:block;
    }

    .drawer-submenu a{
      display:block;
      padding:10px 8px;
      color:var(--muted);
      font-size:14px;
      border-radius:7px;
    }

    .drawer-submenu a:hover,
    .drawer-submenu a:focus-visible{
      color:var(--theme);
      background:var(--theme-light);
    }

    .tag-page{
      min-height:70vh;
    }

    .tag-page .tag-heading{
      position:relative;
      overflow:hidden;
      padding:58px 0 52px;
      color:#fff;
      background:
        radial-gradient(circle at 80% 15%,rgba(85,230,139,.16),transparent 27%),
        linear-gradient(135deg,#06142d 0%,#0b2855 55%,#0B3D91 100%);
    }

    .tag-page .tag-heading::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.23;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
      background-size:34px 34px;
    }

    .tag-page .tag-heading-inner{
      position:relative;
      z-index:1;
    }

    .tag-page .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:20px;
      color:#b9cae6;
      font-size:14px;
    }

    .tag-page .breadcrumb a:hover,
    .tag-page .breadcrumb a:focus-visible{
      color:#fff;
      text-decoration:underline;
    }

    .tag-page .tag-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      padding:6px 11px;
      color:var(--terminal-green);
      border:1px solid rgba(85,230,139,.35);
      border-radius:999px;
      background:rgba(5,20,16,.35);
      font-size:13px;
      font-weight:800;
      letter-spacing:.06em;
    }

    .tag-page .tag-label::before{
      content:"";
      width:7px;
      height:7px;
      background:var(--terminal-green);
      border-radius:50%;
      box-shadow:0 0 12px var(--terminal-green);
    }

    .tag-page h1{
      margin:0;
      font-size:clamp(34px,5vw,58px);
      line-height:1.15;
      letter-spacing:-.03em;
    }

    .tag-page .tag-intro{
      max-width:760px;
      margin:15px 0 0;
      color:#cdd9eb;
      font-size:17px;
    }

    .tag-page .tag-stats{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:25px;
    }

    .tag-page .tag-stat{
      padding:9px 13px;
      color:#eaf2ff;
      border:1px solid rgba(255,255,255,.16);
      border-radius:9px;
      background:rgba(0,0,0,.15);
      font-size:14px;
    }

    .tag-page .tag-stat strong{
      color:var(--amber);
    }

    .tag-page .tag-content{
      padding:48px 0 72px;
    }

    .tag-page .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 290px;
      gap:30px;
      align-items:start;
    }

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

    .tag-page .section-head h2{
      margin:0;
      color:var(--ink);
      font-size:27px;
      line-height:1.3;
    }

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

    .tag-page .article-list{
      display:grid;
      gap:18px;
    }

    .tag-page .article-card{
      display:grid;
      grid-template-columns:240px minmax(0,1fr);
      min-width:0;
      overflow:hidden;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 8px 25px rgba(21,43,75,.05);
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }

    .tag-page .article-card:hover{
      border-color:#aec4e5;
      box-shadow:0 16px 34px rgba(11,61,145,.10);
      transform:translateY(-3px);
    }

    .tag-page .article-cover{
      position:relative;
      min-height:205px;
      overflow:hidden;
      background:#dce5f1;
    }

    .tag-page .article-cover img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s ease;
    }

    .tag-page .article-card:hover .article-cover img{
      transform:scale(1.035);
    }

    .tag-page .cover-badge{
      position:absolute;
      top:13px;
      left:13px;
      padding:5px 9px;
      color:#06142d;
      background:var(--terminal-green);
      border-radius:7px;
      font-size:12px;
      font-weight:900;
    }

    .tag-page .article-body{
      min-width:0;
      display:flex;
      flex-direction:column;
      padding:20px 22px;
    }

    .tag-page .article-title{
      margin:0;
      font-size:21px;
      line-height:1.4;
    }

    .tag-page .article-title a:hover,
    .tag-page .article-title a:focus-visible{
      color:var(--theme);
    }

    .tag-page .article-summary{
      display:-webkit-box;
      overflow:hidden;
      margin:10px 0 15px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }

    .tag-page .article-meta{
      display:flex;
      flex-wrap:wrap;
      gap:7px 14px;
      margin-top:auto;
      color:#738096;
      font-size:12px;
    }

    .tag-page .article-meta span{
      display:inline-flex;
      align-items:center;
      gap:5px;
    }

    .tag-page .article-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:15px;
      margin-top:14px;
      padding-top:13px;
      border-top:1px solid #edf1f5;
    }

    .tag-page .article-tags{
      min-width:0;
      overflow-wrap:anywhere;
      color:var(--theme);
      font-size:12px;
      font-weight:700;
    }

    .tag-page .read-more{
      flex:none;
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--theme);
      font-size:13px;
      font-weight:900;
    }

    .tag-page .read-more::after{
      content:"→";
      transition:transform .2s ease;
    }

    .tag-page .read-more:hover::after,
    .tag-page .read-more:focus-visible::after{
      transform:translateX(4px);
    }

    .tag-page .sidebar{
      display:grid;
      gap:18px;
    }

    .tag-page .side-card{
      padding:22px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      box-shadow:0 10px 28px rgba(20,43,74,.06);
    }

    .tag-page .side-card h2{
      margin:0 0 12px;
      color:var(--theme-dark);
      font-size:18px;
    }

    .tag-page .side-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .tag-page .side-links{
      display:grid;
      gap:9px;
      margin-top:16px;
    }

    .tag-page .side-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:10px 12px;
      color:#33445b;
      background:#f6f8fb;
      border:1px solid #e8edf3;
      border-radius:9px;
      font-size:14px;
      font-weight:750;
    }

    .tag-page .side-links a::after{
      content:"›";
      color:var(--theme);
      font-size:20px;
    }

    .tag-page .side-links a:hover,
    .tag-page .side-links a:focus-visible{
      color:var(--theme);
      border-color:#b9ccea;
      background:var(--theme-light);
    }

    .tag-page .risk-card{
      color:#f4f7fb;
      background:var(--terminal);
      border-color:#1e392c;
    }

    .tag-page .risk-card h2{
      color:var(--amber);
    }

    .tag-page .risk-card p{
      color:#b9c8c0;
    }

    .tag-page .risk-list{
      margin:14px 0 0;
      padding-left:20px;
      color:#cbd7d1;
      font-size:13px;
    }

    .tag-page .risk-list li + li{
      margin-top:8px;
    }

    .tag-page .pagination{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:8px;
      margin-top:34px;
    }

    .tag-page .pagination a{
      min-width:42px;
      min-height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:7px 13px;
      color:#34445a;
      background:#fff;
      border:1px solid var(--line);
      border-radius:9px;
      font-size:14px;
      font-weight:800;
    }

    .tag-page .pagination a:hover,
    .tag-page .pagination a:focus-visible,
    .tag-page .pagination a.active,
    .tag-page .pagination a.current{
      color:#fff;
      background:var(--theme);
      border-color:var(--theme);
    }

    .footer{
      color:#ccd6e6;
      background:#07162d;
    }

    .footer-main{
      padding:58px 0 42px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .85fr .85fr 1fr;
      gap:40px;
    }

    .footer .logo{
      color:#fff;
    }

    .footer-brand p,
    .footer-contact p{
      margin:17px 0 0;
      color:#aebbd0;
      font-size:14px;
    }

    .footer h3{
      margin:8px 0 17px;
      color:#fff;
      font-size:16px;
    }

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

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

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-contact a:hover,
    .footer-contact a:focus-visible{
      color:#fff;
      text-decoration:underline;
    }

    .footer-social{
      margin-top:18px;
    }

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

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

    @media (max-width:1180px){
      .main-nav{
        display:none;
      }

      .hamburger{
        display:block;
      }

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

    @media (max-width:900px){
      .tag-page .content-layout{
        grid-template-columns:1fr;
      }

      .tag-page .sidebar{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

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

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

      .topbar-inner{
        align-items:flex-start;
        flex-direction:column;
        gap:2px;
        padding:7px 0;
      }

      .topbar-contact{
        width:100%;
        flex-wrap:wrap;
        gap:4px 14px;
      }

      .header-inner{
        min-height:68px;
      }

      .header .logo span{
        max-width:125px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }

      .header .logo img{
        width:37px;
        height:37px;
      }

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

      .tag-page .tag-heading{
        padding:42px 0 38px;
      }

      .tag-page .tag-intro{
        font-size:15px;
      }

      .tag-page .tag-content{
        padding:34px 0 55px;
      }

      .tag-page .article-card{
        grid-template-columns:1fr;
      }

      .tag-page .article-cover{
        min-height:210px;
        aspect-ratio:16/9;
      }

      .tag-page .article-body{
        padding:18px;
      }

      .tag-page .article-title{
        font-size:19px;
      }

      .tag-page .section-head{
        align-items:flex-start;
        flex-direction:column;
      }

      .tag-page .sidebar{
        grid-template-columns:1fr;
      }

      .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
      }

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

    @media (max-width:420px){
      .tag-page .article-footer{
        align-items:flex-start;
        flex-direction:column;
      }

      .tag-page .article-meta{
        flex-direction:column;
        gap:4px;
      }

      .drawer-head{
        gap:8px;
        padding-inline:12px;
      }
    }

    @media (prefers-reduced-motion:reduce){
      *,
      *::before,
      *::after{
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
      }
    }