﻿/* ============================================================
 *  远辰智联网签系统 - Windows 7 Aero 主题
 *  颜色:Win7 经典浅蓝灰、玻璃高光、严禁紫色
 *  字体:微软雅黑/Segoe UI
 * ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    background: #b9d1ea url('../images/aero-desktop.svg') center/cover no-repeat fixed;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    overflow: hidden;
}

/* 让 body 区域可滚动 */
body.allow-scroll { overflow: auto; }

a { color: #2050a0; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============== 通用玻璃窗体 ============== */
.aero-window {
    position: relative;
    background: rgba(232, 242, 251, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(60, 110, 175, 0.35),
        0 12px 36px rgba(20, 50, 100, 0.30);
    border-radius: 6px;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

/* Aero 标题栏 */
.aero-titlebar {
    height: 32px;
    line-height: 32px;
    padding: 0 8px 0 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
    background:
        linear-gradient(to bottom,
            rgba(108, 168, 226, 0.85) 0%,
            rgba(64, 124, 188, 0.90) 48%,
            rgba(48, 102, 168, 0.92) 52%,
            rgba(72, 132, 198, 0.90) 100%);
    border-bottom: 1px solid rgba(20, 60, 120, 0.45);
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.aero-titlebar .tb-title {
    display: flex; align-items: center; gap: 6px;
}
.aero-titlebar .tb-title .tb-icon {
    width: 16px; height: 16px;
    background: url('../images/favicon.svg') center/contain no-repeat;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.aero-titlebar .tb-btns { display: flex; gap: 0; }
.aero-titlebar .tb-btn {
    width: 45px; height: 22px; line-height: 22px;
    text-align: center; color: #fff;
    font-size: 11px; cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(0,0,0,0.05));
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.aero-titlebar .tb-btn:hover { background: rgba(255,255,255,0.18); }
.aero-titlebar .tb-btn.close { border-radius: 0 6px 0 0; }
.aero-titlebar .tb-btn.close:hover { background: #e81123; }

/* ============== 登录页布局 ============== */
.login-stage {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.45) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(180, 215, 250, 0.55) 0%, transparent 65%),
        linear-gradient(180deg, #5e92c9 0%, #27538b 100%);
}
.login-stage::before {
    content: ""; position: absolute; inset: 0;
    background: url('../images/aero-desktop.svg') center/cover no-repeat;
    opacity: 0.55;
    filter: blur(2px);
}

.login-window {
    position: relative;
    width: 880px; height: 540px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(238, 245, 253, 0.85);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow:
        0 0 0 1px rgba(40,90,160,0.5),
        0 30px 80px rgba(0, 30, 80, 0.55),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    display: flex;
}
.login-left {
    flex: 1.1;
    background:
        linear-gradient(135deg, rgba(60, 110, 180, 0.95) 0%, rgba(20, 60, 120, 0.95) 100%);
    color: #fff;
    padding: 40px 36px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.login-left::after {
    content: ""; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
    border-radius: 50%;
}
.login-left .brand-logo {
    width: 88px; height: 88px;
    background: url('../images/logo.svg') center/contain no-repeat;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.login-left h1 {
    font-size: 28px; font-weight: 300; letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 8px;
}
.login-left h1 strong { font-weight: 700; }
.login-left .sub { font-size: 13px; opacity: 0.85; letter-spacing: 2px; }
.login-left .footer-info { font-size: 12px; opacity: 0.75; line-height: 1.9; }
.login-left .footer-info div { display: flex; gap: 6px; align-items: center; }

.login-right {
    flex: 1;
    padding: 50px 50px 30px;
    display: flex; flex-direction: column; justify-content: center;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(238,245,253,0.4));
}
.login-right h2 {
    font-size: 18px; color: #1f3a6b; font-weight: 600;
    margin-bottom: 6px;
}
.login-right .hint { font-size: 12px; color: #5873a0; margin-bottom: 26px; }

.form-row {
    margin-bottom: 16px;
    position: relative;
}
.form-row label {
    display: block; font-size: 12px; color: #1f3a6b; margin-bottom: 4px; font-weight: 600;
}
.input-aero {
    width: 100%; height: 34px; padding: 0 12px 0 36px;
    border: 1px solid #9fb9d9;
    border-radius: 3px;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    box-shadow:
        inset 0 1px 2px rgba(20,60,120,0.10),
        0 1px 0 rgba(255,255,255,0.8);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.input-aero:focus {
    outline: none;
    border-color: #4ea0e0;
    box-shadow:
        inset 0 1px 2px rgba(20,60,120,0.10),
        0 0 0 3px rgba(78, 160, 224, 0.25);
}
.input-aero::placeholder { color: #aab8c8; }
.form-row .input-icon {
    position: absolute; left: 10px; bottom: 9px;
    width: 16px; height: 16px;
    background: url('../images/input-icons.svg') no-repeat;
    background-size: 16px 48px;
}
.input-icon.user    { background-position: 0 0; }
.input-icon.pass    { background-position: 0 -16px; }
.input-icon.captcha { background-position: 0 -32px; }

.aero-btn {
    display: inline-block;
    height: 32px; line-height: 30px;
    padding: 0 22px;
    border: 1px solid #2c5d9b;
    border-radius: 3px;
    color: #fff; font-size: 13px; font-weight: 600;
    cursor: pointer;
    background:
        linear-gradient(to bottom,
            #6ea7e0 0%, #4a86c5 48%, #386fb0 52%, #4a86c5 100%);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 1px 2px rgba(0,0,0,0.15);
    transition: filter 0.1s;
    text-decoration: none;
}
.aero-btn:hover  { filter: brightness(1.07); text-decoration: none; }
.aero-btn:active {
    background:
        linear-gradient(to bottom,
            #386fb0 0%, #4a86c5 48%, #5e98d2 52%, #4a86c5 100%);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.30);
}
.aero-btn.gray {
    border-color: #7a8ca0;
    background:
        linear-gradient(to bottom,
            #f4f6f8 0%, #d6dde6 48%, #b9c2cf 52%, #d6dde6 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.aero-btn.danger {
    border-color: #982020;
    background:
        linear-gradient(to bottom, #e26b6b 0%, #c54848 48%, #a02c2c 52%, #c54848 100%);
}
.aero-btn.small { height: 24px; line-height: 22px; padding: 0 12px; font-size: 12px; }
.aero-btn.block { width: 100%; padding: 0; }

.login-extra { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.login-extra label { font-size: 12px; color: #2a4a7a; }
.login-extra a { font-size: 12px; }

.login-error {
    background: #fff3f3; border: 1px solid #e8b6b6; color: #a02c2c;
    padding: 6px 10px; border-radius: 3px; font-size: 12px; margin-bottom: 14px;
}

/* ============== 主框架布局 ============== */
.app-shell {
    position: fixed; inset: 0;
    display: flex; flex-direction: column;
    background: transparent;
}

/* 顶部 */
.app-top {
    height: 38px;
    background:
        linear-gradient(to bottom,
            rgba(180, 212, 240, 0.92) 0%,
            rgba(140, 182, 220, 0.95) 48%,
            rgba(110, 158, 205, 0.95) 52%,
            rgba(140, 182, 220, 0.92) 100%);
    border-bottom: 1px solid rgba(20, 60, 120, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.55),
        0 1px 3px rgba(0,0,0,0.15);
    display: flex; align-items: center;
    padding: 0 12px;
    z-index: 100;
}
.app-top .corner-logo {
    width: 24px; height: 24px;
    background: url('../images/logo.svg') center/contain no-repeat;
    margin-right: 10px;
}
.app-top .sys-name {
    color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}
.app-top .sys-name .sep { opacity: 0.5; margin: 0 6px; }
.app-top .sys-name .ver  { font-size: 11px; opacity: 0.85; font-weight: 400; }

.app-top .top-clock {
    color: #fff; font-size: 12px; margin-left: 18px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.35);
    font-family: "Consolas", "Lucida Console", monospace;
}
.app-top .top-spacer { flex: 1; }

.app-top .net-indicator {
    display: flex; align-items: center; gap: 6px;
    color: #fff; font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    text-shadow: 0 1px 0 rgba(0,0,0,0.30);
}
.net-indicator .net-icon {
    width: 16px; height: 16px;
    background: url('../images/net-icon.svg') center/contain no-repeat;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.app-top .user-chip {
    margin-left: 12px;
    display: flex; align-items: center; gap: 6px;
    color: #fff; font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    cursor: pointer;
}
.user-chip .avatar {
    width: 18px; height: 18px;
    background: linear-gradient(135deg, #d4e4f6, #7eaad8);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: #1f3a6b; font-weight: 700; text-align: center; line-height: 16px;
    font-size: 11px;
}

/* 中部区域 */
.app-body {
    flex: 1;
    display: flex;
    min-height: 0;
}

/* 侧栏玻璃容器 */
.sidebar-glass {
    width: 220px;
    margin: 8px 0 8px 8px;
    background: rgba(232, 242, 251, 0.65);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 1px 3px rgba(0,0,0,0.12);
    border-radius: 4px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    display: flex; flex-direction: column;
    overflow: hidden;
}
.sidebar-glass.right {
    width: 200px;
    margin: 8px 8px 8px 0;
}

.sidebar-header {
    height: 28px; line-height: 28px;
    padding: 0 12px;
    font-size: 12px; color: #1f3a6b; font-weight: 700;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(220,232,245,0.45));
    border-bottom: 1px solid rgba(20,60,120,0.18);
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.nav-list {
    list-style: none;
    padding: 6px 4px;
    overflow-y: auto;
    flex: 1;
}
.nav-list li a {
    display: flex; align-items: center; gap: 8px;
    height: 32px; line-height: 32px;
    padding: 0 12px;
    color: #1f3a6b;
    font-size: 12.5px;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.1s;
}
.nav-list li a:hover {
    background: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.nav-list li a.active {
    background:
        linear-gradient(to bottom, #cee3f6 0%, #a4c8eb 48%, #8eb6e0 52%, #a4c8eb 100%);
    border-color: #4f8ec5;
    color: #103060;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        inset 0 -1px 0 rgba(0,0,0,0.06);
}
.nav-list li a .nav-ico {
    width: 16px; height: 16px;
    background: url('../images/nav-icons.svg') no-repeat;
    background-size: 16px 128px;
    display: inline-block;
}
.nav-ico.i-add   { background-position: 0 0; }
.nav-ico.i-seal  { background-position: 0 -16px; }
.nav-ico.i-cust  { background-position: 0 -32px; }
.nav-ico.i-branch{ background-position: 0 -48px; }
.nav-ico.i-ip    { background-position: 0 -64px; }
.nav-ico.i-ht    { background-position: 0 -80px; }
.nav-ico.i-ext   { background-position: 0 -96px; }
.nav-ico.i-acc   { background-position: 0 -112px; }

/* 中部内容区 */
.app-content {
    flex: 1;
    margin: 8px;
    background: rgba(245, 249, 254, 0.82);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 1px 3px rgba(0,0,0,0.12);
    border-radius: 4px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    overflow: hidden;
    display: flex; flex-direction: column;
}
.app-content .content-header {
    height: 34px; line-height: 34px;
    padding: 0 14px;
    font-size: 13px; color: #1f3a6b; font-weight: 700;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(220,232,245,0.4));
    border-bottom: 1px solid rgba(20,60,120,0.20);
    display: flex; justify-content: space-between; align-items: center;
}
.app-content .content-header .crumb { color: #2a4a7a; }
.app-content .content-header .crumb span.sep { color: #888; padding: 0 4px; }
.app-content .content-body { flex: 1; padding: 14px; overflow: auto; }

/* 状态栏 */
.app-status {
    height: 24px;
    background:
        linear-gradient(to bottom, rgba(220,232,245,0.85), rgba(190,210,235,0.85));
    border-top: 1px solid rgba(20,60,120,0.20);
    display: flex; align-items: center;
    padding: 0 12px;
    font-size: 11.5px; color: #1f3a6b;
    gap: 18px;
}
.app-status .stat-seg {
    display: flex; align-items: center; gap: 4px;
}
.app-status .seg-bar {
    width: 100px; height: 6px;
    background: rgba(255,255,255,0.6);
    border: 1px solid #6c8cb8;
    border-radius: 2px; overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.10);
}
.seg-bar > span { display: block; height: 100%; background: linear-gradient(to bottom, #6ea7e0, #386fb0); }
.app-status .right { margin-left: auto; }

/* ============== 表格 ============== */
.tbl {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #b9c8d8;
    font-size: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.tbl thead th {
    background:
        linear-gradient(to bottom, #eaf1f9 0%, #d2e0ee 48%, #b8cbde 52%, #d2e0ee 100%);
    color: #1f3a6b;
    font-weight: 600;
    text-align: left;
    padding: 7px 10px;
    border-bottom: 1px solid #8aa6c6;
    border-right: 1px solid #d0dbe7;
    text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
.tbl thead th:last-child { border-right: 0; }
.tbl tbody td {
    padding: 6px 10px;
    border-bottom: 1px solid #e1e8f0;
    border-right: 1px solid #eef2f7;
    color: #1a1a1a;
}
.tbl tbody td:last-child { border-right: 0; }
.tbl tbody tr:nth-child(even) td { background: #f7fafd; }
.tbl tbody tr:hover td { background: #e9f2fb; }
.tbl .ctr { text-align: center; }
.tbl .op a { margin-right: 6px; }

.tag {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 9px;
    font-size: 11px;
    border: 1px solid #b9c8d8;
    background: #f0f4f8;
    color: #1f3a6b;
}
.tag.ok      { background: #e6f3e2; border-color: #9ec995; color: #2c6a1f; }
.tag.warn    { background: #fdf3d9; border-color: #d8b760; color: #7a5a10; }
.tag.danger  { background: #fbe1e1; border-color: #d49a9a; color: #8a2020; }
.tag.info    { background: #e3effa; border-color: #9bbadb; color: #1f3a6b; }

/* 工具条 */
.toolbar {
    display: flex; gap: 8px; align-items: center;
    padding: 0 0 10px 0;
    flex-wrap: wrap;
}
.toolbar .grow { flex: 1; }
.toolbar .search {
    height: 28px;
    border: 1px solid #9fb9d9;
    background: #fff;
    border-radius: 3px;
    padding: 0 8px;
    width: 220px;
    font-size: 12px;
    box-shadow: inset 0 1px 2px rgba(20,60,120,0.10);
}

/* 表单面板 */
.panel {
    background: #fff;
    border: 1px solid #b9c8d8;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}
.panel-header {
    height: 30px; line-height: 30px;
    padding: 0 12px;
    font-weight: 700; font-size: 12.5px; color: #1f3a6b;
    background: linear-gradient(to bottom, #f0f6fc, #dbe7f4);
    border-bottom: 1px solid #b9c8d8;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.panel-body { padding: 14px 16px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}
.form-grid.single { grid-template-columns: 1fr; }
.form-grid .full { grid-column: 1 / -1; }

.form-item label {
    display: block; font-size: 12px; color: #1f3a6b; margin-bottom: 4px; font-weight: 600;
}
.form-item label .req { color: #c11; margin-left: 2px; }
.form-item .ctrl input[type="text"],
.form-item .ctrl input[type="password"],
.form-item .ctrl input[type="number"],
.form-item .ctrl input[type="date"],
.form-item .ctrl input[type="email"],
.form-item .ctrl select,
.form-item .ctrl textarea {
    width: 100%; height: 28px; padding: 0 8px;
    border: 1px solid #9fb9d9;
    background: #fff;
    border-radius: 2px;
    font-size: 12.5px;
    color: #1a1a1a;
    box-shadow: inset 0 1px 2px rgba(20,60,120,0.10);
    font-family: inherit;
}
.form-item .ctrl textarea { height: 100px; padding: 6px 8px; resize: vertical; }
.form-item .ctrl input:focus,
.form-item .ctrl select:focus,
.form-item .ctrl textarea:focus {
    outline: none;
    border-color: #4ea0e0;
    box-shadow: inset 0 1px 2px rgba(20,60,120,0.10), 0 0 0 2px rgba(78,160,224,0.25);
}
.form-item .ctrl-inline { display: flex; align-items: center; gap: 14px; height: 28px; }
.form-item .ctrl-inline label { font-weight: 400; margin: 0; cursor: pointer; }
.form-actions {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #cfd9e3;
    display: flex; gap: 10px;
}

/* 弹窗 */
.modal-mask {
    position: fixed; inset: 0;
    background: rgba(20,40,80,0.35);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(2px);
}
.modal-box {
    background: rgba(245, 249, 254, 0.96);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 0 0 1px rgba(40,90,160,0.45), 0 20px 50px rgba(0,30,80,0.45);
    border-radius: 6px;
    width: 520px;
    max-width: 92%;
    overflow: hidden;
}

/* 分页 */
.pager { margin-top: 10px; display: flex; gap: 4px; align-items: center; justify-content: flex-end; }
.pager a, .pager span {
    display: inline-block; min-width: 22px; height: 22px; line-height: 20px;
    text-align: center; padding: 0 8px;
    border: 1px solid #b9c8d8; background: #fff; color: #1f3a6b;
    font-size: 12px; border-radius: 2px; text-decoration: none;
}
.pager a:hover { background: #e9f2fb; }
.pager .current {
    background: linear-gradient(to bottom, #6ea7e0, #386fb0);
    color: #fff; border-color: #2c5d9b;
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* 印章 */
.seal-img {
    width: 110px; height: 110px;
    background-position: center; background-repeat: no-repeat; background-size: contain;
    display: inline-block;
}
.seal-img.official   { background-image: url('../images/seal-official.svg'); }
.seal-img.contract   { background-image: url('../images/seal-contract.svg'); }
.seal-img.personnel  { background-image: url('../images/seal-personnel.svg'); }

.seal-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px;
    border: 1px solid #c44; border-radius: 10px;
    color: #c33; font-size: 11px; background: #fff5f5;
    font-family: "STXingkai", "KaiTi", serif;
    letter-spacing: 1px;
}

/* 通知 */
.toast {
    position: fixed; top: 60px; left: 50%; transform: translateX(-50%);
    background: rgba(20,60,120,0.92); color: #fff;
    padding: 8px 18px; border-radius: 3px; font-size: 12.5px;
    z-index: 9999; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.3);
    animation: toast-in 0.2s ease;
}
@keyframes toast-in { from {opacity:0; transform:translate(-50%,-8px);} to {opacity:1; transform:translate(-50%,0);} }

/* 打印样式 */
@media print {
    body, html { background: #fff; overflow: visible; }
    .app-top, .app-status, .sidebar-glass, .no-print, .toolbar, .pager { display: none !important; }
    .app-content {
        margin: 0; border: 0; box-shadow: none; background: #fff;
        backdrop-filter: none;
    }
    .app-body { display: block; }
    .content-body { padding: 0; overflow: visible; }
    .aero-window { box-shadow: none; border: 0; }
}

/* 滚动条 */
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track {
    background: rgba(232,242,251,0.4);
    border-left: 1px solid rgba(20,60,120,0.10);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #c8d8ec, #95b3d8);
    border: 2px solid rgba(232,242,251,0.6);
    border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(to right, #95b3d8, #6c8cb8); }

