/* ====== Header 基础 ====== */
.mys_uheader{
    height:56px;
    background:#0f172a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    box-sizing:border-box;
    position:fixed;
    top:0; left:0;
    width:100%;
    z-index:999;
}
.mys_uheader a{color:#fff;text-decoration:none;font-size:14px;}
.mys_uheader .logo a{font-weight:700;letter-spacing:.6px;font-size:15px;}
.mys_uheader .right{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.mys_uheader .pill{
    background:#1f2937;
    border:1px solid #374151;
    color:#fff;
    border-radius:999px;
    padding:6px 10px;
    font-size:12px;
    white-space:nowrap;
}

/* ====== 下拉菜单 ====== */
.merchant-wrap{position:relative;}
.merchant-trigger{cursor:pointer; display:inline-flex; align-items:center; gap:6px;}
.merchant-menu{
    display:none;
    position:absolute;
    right:0;
    top:36px;
    background:#111827;
    border:1px solid #374151;
    border-radius:8px;
    min-width:170px;
    z-index:1000;
}
.merchant-menu a{
    display:block;
    padding:10px 14px;
    font-size:13px;
    color:#e5e7eb;
}
.merchant-menu a:hover{background:#1f2937}
.merchant-wrap.open .merchant-menu{display:block}
.menu-disabled{opacity:.45; pointer-events:none}

/* 风险红点 */
.risk-dot{
    width:8px;height:8px;border-radius:50%;
    background:#ef4444;display:inline-block;
}

/* 给页面让出顶部空间 */
body{ padding-top:56px; }
