:root{
      --brand:#0B3D91;
      --template-theme:{主题色};
      --brand-dark:#072b68;
      --brand-soft:#eaf1ff;
      --ink:#12213a;
      --muted:#64748b;
      --line:#dce4ef;
      --surface:#ffffff;
      --page:#f5f7fb;
      --accent:#ffb547;
      --success:#16856b;
      --shadow:0 18px 48px rgba(18,33,58,.10);
      --radius:18px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

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

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

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

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

    button{
      color:inherit;
    }

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

    .topbar{
      color:#dbe8ff;
      background:#061b40;
      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{
      transition:color .2s ease;
    }

    .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 5px 18px rgba(18,33,58,.04);
    }

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

    .logo{
      min-width:170px;
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--brand-dark);
      font-weight:800;
      letter-spacing:.01em;
    }

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

    .main-nav{
      min-width:0;
      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:center;
    }

    .nav-link{
      height:100%;
      padding:0 12px;
      display:flex;
      align-items:center;
      gap:6px;
      color:#27364d;
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
      transition:color .2s ease,background .2s ease;
    }

    .nav-link:hover,
    .nav-item:focus-within > .nav-link{
      color:var(--brand);
      background:var(--brand-soft);
    }

    .has-arrow::after{
      width:6px;
      height:6px;
      content:"";
      border-right:2px solid currentColor;
      border-bottom:2px solid currentColor;
      transform:rotate(45deg) translateY(-2px);
      transition:transform .2s ease;
    }

    .nav-item:hover .has-arrow::after,
    .nav-item:focus-within .has-arrow::after{
      transform:rotate(225deg) translate(-2px,-1px);
    }

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

    .dropdown-panel::before,
    .mega-menu::before{
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:12px;
      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;
      pointer-events:auto;
      transform:translateY(0);
    }

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

    .mega-menu{
      left:50%;
      width:min(860px,calc(100vw - 40px));
      padding:22px;
      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);
    }

    .panel-title{
      margin:0 0 12px;
      color:var(--brand-dark);
      font-size:15px;
      font-weight:800;
    }

    .panel-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:8px;
    }

    .dropdown-panel .panel-list{
      grid-template-columns:1fr;
    }

    .panel-list a{
      min-width:0;
      padding:9px 11px;
      overflow:hidden;
      color:#34445c;
      background:#f6f8fc;
      border-radius:9px;
      font-size:13px;
      text-overflow:ellipsis;
      white-space:nowrap;
      transition:color .2s ease,background .2s ease;
    }

    .panel-list a:hover{
      color:var(--brand);
      background:var(--brand-soft);
    }

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

    .mega-card{
      min-width:0;
      padding:12px;
      display:grid;
      grid-template-columns:42px minmax(0,1fr);
      column-gap:10px;
      align-items:center;
      background:#f7f9fc;
      border:1px solid transparent;
      border-radius:12px;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    .mega-card:hover{
      background:#fff;
      border-color:#bfd1f2;
      transform:translateY(-2px);
    }

    .mega-card img{
      grid-row:1 / span 3;
      width:42px;
      height:42px;
      object-fit:cover;
      background:#fff;
      border-radius:9px;
    }

    .mega-card strong,
    .mega-card small{
      min-width:0;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .mega-card strong{
      color:#1d2c43;
      font-size:13px;
    }

    .mega-card small{
      color:var(--muted);
      font-size:11px;
    }

    .mega-footer{
      margin-top:14px;
      padding-top:12px;
      display:block;
      color:var(--brand);
      border-top:1px solid var(--line);
      font-size:13px;
      font-weight:800;
      text-align:right;
    }

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

    .member-btn,
    .open-btn{
      min-height:40px;
      padding:8px 14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }

    .member-btn{
      color:var(--brand);
      background:var(--brand-soft);
    }

    .open-btn{
      color:#fff;
      background:var(--brand);
      box-shadow:0 8px 20px rgba(11,61,145,.20);
    }

    .member-btn:hover,
    .open-btn:hover{
      transform:translateY(-1px);
    }

    .hamburger{
      width:42px;
      height:42px;
      padding:10px;
      display:none;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:5px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      cursor:pointer;
    }

    .hamburger span{
      width:20px;
      height:2px;
      display:block;
      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;
      inset:0;
      z-index:90;
      visibility:hidden;
      opacity:0;
      background:rgba(3,13,32,.58);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

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

    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:100;
      width:min(390px,90vw);
      height:100%;
      overflow-y:auto;
      background:#fff;
      box-shadow:-24px 0 60px rgba(3,13,32,.22);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

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

    .drawer-head{
      min-height:72px;
      padding:14px 18px;
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      background:var(--brand-dark);
    }

    .drawer-head > a{
      padding:8px 12px;
      color:#fff;
      background:rgba(255,255,255,.12);
      border-radius:8px;
      font-size:13px;
      font-weight:800;
    }

    .drawer-close{
      width:38px;
      height:38px;
      margin-left:auto;
      color:#fff;
      background:rgba(255,255,255,.12);
      border:0;
      border-radius:50%;
      font-size:25px;
      line-height:1;
      cursor:pointer;
    }

    .drawer-menu{
      padding:14px 18px 30px;
    }

    .drawer-link,
    .drawer-toggle{
      width:100%;
      min-height:48px;
      padding:11px 4px;
      display:flex;
      align-items:center;
      color:#25344c;
      background:transparent;
      border:0;
      border-bottom:1px solid var(--line);
      font-weight:800;
      text-align:left;
      cursor:pointer;
    }

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

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

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

    .drawer-submenu{
      max-height:0;
      padding:0 10px;
      overflow:hidden;
      background:#f7f9fc;
      border-radius:0 0 10px 10px;
      transition:max-height .3s ease,padding .3s ease;
    }

    .drawer-submenu.open{
      max-height:900px;
      padding:8px 10px;
    }

    .drawer-submenu a{
      padding:9px 8px;
      display:block;
      color:#536178;
      border-bottom:1px dashed #d7dfeb;
      font-size:14px;
    }

    .drawer-submenu a:last-child{
      border-bottom:0;
    }

    .productlist-main{
      min-height:620px;
    }

    .productlist-main .product-heading{
      position:relative;
      overflow:hidden;
      padding:74px 0 66px;
      color:#fff;
      background:
        radial-gradient(circle at 85% 20%,rgba(255,181,71,.32),transparent 24%),
        radial-gradient(circle at 16% 100%,rgba(112,164,255,.28),transparent 30%),
        linear-gradient(135deg,#061b40 0%,#0B3D91 56%,#315db2 100%);
    }

    .productlist-main .product-heading::before,
    .productlist-main .product-heading::after{
      position:absolute;
      content:"";
      border:1px solid rgba(255,255,255,.16);
      border-radius:50%;
    }

    .productlist-main .product-heading::before{
      top:-130px;
      right:-80px;
      width:390px;
      height:390px;
    }

    .productlist-main .product-heading::after{
      bottom:-190px;
      left:-80px;
      width:340px;
      height:340px;
    }

    .productlist-main .heading-inner{
      position:relative;
      z-index:1;
      max-width:850px;
      text-align:center;
    }

    .productlist-main .eyebrow{
      margin:0 0 12px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#ffe0a4;
      font-size:13px;
      font-weight:800;
      letter-spacing:.12em;
    }

    .productlist-main .eyebrow::before,
    .productlist-main .eyebrow::after{
      width:24px;
      height:1px;
      content:"";
      background:currentColor;
    }

    .productlist-main h1{
      margin:0;
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      letter-spacing:-.035em;
    }

    .productlist-main .heading-copy{
      max-width:720px;
      margin:18px auto 0;
      color:#dbe7ff;
      font-size:17px;
    }

    .productlist-main .heading-points{
      margin:25px 0 0;
      padding:0;
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px;
      list-style:none;
    }

    .productlist-main .heading-points li{
      padding:8px 13px;
      color:#f4f7ff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      border-radius:999px;
      font-size:13px;
      backdrop-filter:blur(8px);
    }

    .productlist-main .catalogue-section{
      padding:56px 0 78px;
    }

    .productlist-main .catalogue-layout{
      display:grid;
      grid-template-columns:250px minmax(0,1fr);
      gap:28px;
      align-items:start;
    }

    .productlist-main .category-panel{
      position:sticky;
      top:22px;
      padding:22px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 12px 32px rgba(18,33,58,.06);
    }

    .productlist-main .category-panel h2{
      margin:0 0 6px;
      color:var(--brand-dark);
      font-size:20px;
    }

    .productlist-main .category-panel > p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:13px;
    }

    .productlist-main .category-links{
      display:grid;
      gap:8px;
    }

    .productlist-main .category-link{
      padding:11px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      color:#33445c;
      background:#f6f8fc;
      border:1px solid transparent;
      border-radius:10px;
      font-size:14px;
      font-weight:750;
      transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease;
    }

    .productlist-main .category-link::after{
      content:"›";
      color:#8a98ac;
      font-size:19px;
      line-height:1;
    }

    .productlist-main .category-link:hover{
      color:var(--brand);
      background:var(--brand-soft);
      border-color:#c7d7f4;
      transform:translateX(2px);
    }

    .productlist-main .product-content{
      min-width:0;
    }

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

    .productlist-main .section-head h2{
      margin:0;
      color:var(--ink);
      font-size:30px;
      line-height:1.25;
    }

    .productlist-main .section-head p{
      margin:7px 0 0;
      color:var(--muted);
    }

    .productlist-main .section-badge{
      flex:0 0 auto;
      padding:8px 12px;
      color:var(--brand);
      background:var(--brand-soft);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }

    .productlist-main .product-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }

    .productlist-main .product-card{
      min-width:0;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      box-shadow:0 10px 28px rgba(18,33,58,.055);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }

    .productlist-main .product-card:hover{
      border-color:#b8caeb;
      box-shadow:0 20px 40px rgba(18,33,58,.11);
      transform:translateY(-5px);
    }

    .productlist-main .product-image{
      position:relative;
      aspect-ratio:16 / 10;
      overflow:hidden;
      background:linear-gradient(145deg,#e7eef9,#f8faff);
    }

    .productlist-main .product-image::after{
      position:absolute;
      right:0;
      bottom:0;
      left:0;
      height:42%;
      content:"";
      background:linear-gradient(transparent,rgba(6,27,64,.22));
      pointer-events:none;
    }

    .productlist-main .product-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s ease;
    }

    .productlist-main .product-card:hover .product-image img{
      transform:scale(1.045);
    }

    .productlist-main .product-type{
      position:absolute;
      top:12px;
      left:12px;
      z-index:1;
      padding:6px 9px;
      color:#fff;
      background:rgba(6,27,64,.82);
      border:1px solid rgba(255,255,255,.22);
      border-radius:8px;
      font-size:11px;
      font-weight:800;
      backdrop-filter:blur(6px);
    }

    .productlist-main .product-card-body{
      min-width:0;
      padding:18px;
      display:flex;
      flex:1;
      flex-direction:column;
    }

    .productlist-main .product-card h3{
      margin:0;
      color:#17263d;
      font-size:19px;
      line-height:1.4;
    }

    .productlist-main .product-card h3 a{
      transition:color .2s ease;
    }

    .productlist-main .product-card h3 a:hover{
      color:var(--brand);
    }

    .productlist-main .product-summary{
      margin:10px 0 15px;
      display:-webkit-box;
      overflow:hidden;
      color:#5e6d82;
      font-size:14px;
      line-height:1.75;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }

    .productlist-main .product-meta{
      margin-top:auto;
      padding-top:13px;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      color:#78869a;
      border-top:1px solid #e8edf4;
      font-size:12px;
    }

    .productlist-main .product-meta span{
      display:inline-flex;
      align-items:center;
      gap:5px;
    }

    .productlist-main .product-meta span::before{
      width:6px;
      height:6px;
      content:"";
      background:var(--accent);
      border-radius:50%;
    }

    .productlist-main .product-action{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:var(--brand);
      font-size:13px;
      font-weight:800;
    }

    .productlist-main .product-action::after{
      content:"→";
      font-size:18px;
      transition:transform .2s ease;
    }

    .productlist-main .product-card:hover .product-action::after{
      transform:translateX(4px);
    }

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

    .productlist-main .pagination a{
      min-width:42px;
      min-height:42px;
      padding:8px 12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#43536a;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      font-size:14px;
      font-weight:750;
      transition:color .2s ease,background .2s ease,border-color .2s ease;
    }

    .productlist-main .pagination a:hover,
    .productlist-main .pagination a.active,
    .productlist-main .pagination a.current{
      color:#fff;
      background:var(--brand);
      border-color:var(--brand);
    }

    .productlist-main .catalogue-note{
      margin-top:32px;
      padding:20px 22px;
      display:flex;
      align-items:flex-start;
      gap:14px;
      color:#536178;
      background:#edf3ff;
      border:1px solid #ceddf7;
      border-radius:14px;
      font-size:13px;
    }

    .productlist-main .catalogue-note::before{
      width:26px;
      height:26px;
      flex:0 0 auto;
      content:"i";
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:var(--brand);
      border-radius:50%;
      font-family:Georgia,serif;
      font-weight:800;
    }

    .footer{
      color:#cbd7ea;
      background:#07172f;
    }

    .footer .container{
      padding-top:54px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.45fr repeat(3,1fr);
      gap:36px;
      padding-bottom:42px;
    }

    .footer h3,
    .footer-brand strong{
      margin:0 0 14px;
      display:block;
      color:#fff;
      font-size:16px;
    }

    .footer-brand strong{
      font-size:22px;
    }

    .footer p{
      margin:8px 0;
      color:#aebcd2;
      font-size:13px;
    }

    .footer-grid > div:not(.footer-brand) a{
      margin:8px 0;
      display:block;
      color:#cbd7ea;
      font-size:13px;
      transition:color .2s ease,transform .2s ease;
    }

    .footer-grid a:hover{
      color:#fff;
      transform:translateX(2px);
    }

    .footer-bottom{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      color:#8fa0b9;
      border-top:1px solid rgba(255,255,255,.11);
      font-size:12px;
    }

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

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

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

      .hamburger{
        display:flex;
      }

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

    @media (max-width:820px){
      .topbar .container{
        padding:8px 0;
        align-items:flex-start;
      }

      .topbar-links{
        gap:6px;
        flex-direction:column;
        align-items:flex-end;
      }

      .productlist-main .product-heading{
        padding:58px 0 54px;
      }

      .productlist-main .catalogue-layout{
        grid-template-columns:1fr;
      }

      .productlist-main .category-panel{
        position:static;
      }

      .productlist-main .category-links{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

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

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

      .topbar .container{
        flex-direction:column;
        gap:2px;
      }

      .topbar-links{
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
        align-items:center;
      }

      .logo{
        min-width:0;
      }

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

      .member-btn{
        display:none;
      }

      .open-btn{
        padding:8px 12px;
      }

      .productlist-main .heading-copy{
        font-size:15px;
      }

      .productlist-main .catalogue-section{
        padding:38px 0 56px;
      }

      .productlist-main .category-links,
      .productlist-main .product-grid{
        grid-template-columns:1fr;
      }

      .productlist-main .section-head{
        align-items:flex-start;
        flex-direction:column;
      }

      .productlist-main .section-head h2{
        font-size:25px;
      }

      .productlist-main .product-image{
        aspect-ratio:16 / 9;
      }

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

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