:root {
    --op2-bg: #eef4f7;
    --op2-paper: #ffffff;
    --op2-paper-2: #f8fbfb;
    --op2-ink: #1c2534;
    --op2-heading: #10202b;
    --op2-muted: #667985;
    --op2-line: #d8e5e7;
    --op2-line-strong: #b9ccd1;
    --op2-teal: #118878;
    --op2-teal-2: #0f766e;
    --op2-teal-dark: #0b5f58;
    --op2-teal-soft: #e4f5f2;
    --op2-blue: #2563eb;
    --op2-blue-soft: #e8f0ff;
    --op2-green: #0f9f6e;
    --op2-green-soft: #e6f6ee;
    --op2-amber: #c57a10;
    --op2-amber-soft: #fff3dc;
    --op2-red: #c73737;
    --op2-red-soft: #fff0f0;
    --op2-purple: #697188;
    --op2-purple-soft: #eef1f6;
    --op2-shadow: 0 18px 45px rgba(31, 59, 69, .1);
    --op2-soft-shadow: 0 8px 24px rgba(31, 59, 69, .08);
    --op2-radius: 10px;
}

* {
    box-sizing: border-box;
}

body.op2-app {
    margin: 0;
    min-height: 100vh;
    color: var(--op2-ink);
    background:
        radial-gradient(circle at 14% 12%, rgba(17, 136, 120, .1), transparent 28%),
        linear-gradient(135deg, #eef4f7 0%, #f7faf8 50%, #e9f2f5 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: 0;
}

body.op2-app a {
    color: inherit;
    text-decoration: none;
}

body.op2-app button,
body.op2-login button,
body.op2-app input,
body.op2-login input,
body.op2-app select,
body.op2-app textarea {
    font-family: inherit;
    letter-spacing: 0;
}

.op2-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
}

.op2-side {
    position: sticky;
    top: 0;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    overflow-y: auto;
    background: rgba(248, 251, 251, .94);
    border-right: 1px solid var(--op2-line);
    backdrop-filter: blur(16px);
}

.op2-brand {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--op2-line);
    border-radius: var(--op2-radius);
    background: var(--op2-paper);
    box-shadow: var(--op2-soft-shadow);
}

.op2-brand span,
.op2-login-mark span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--op2-teal), #1ea998);
    font-weight: 800;
    font-size: 14px;
}

.op2-brand strong,
.op2-login-mark strong {
    min-width: 0;
    overflow: hidden;
    color: var(--op2-heading);
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.op2-account {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--op2-line);
    border-radius: var(--op2-radius);
    background: linear-gradient(180deg, #ffffff 0%, #f2faf8 100%);
}

.op2-account-text {
    min-width: 0;
}

.op2-account span,
.op2-title span,
.op2-page-head span,
.op2-brief span,
.op2-panel header span,
.op2-kpi span,
.op2-summary-grid span,
.op2-doc-hero span,
.op2-muted,
.op1-muted {
    color: var(--op2-muted);
    font-size: 12px;
    line-height: 1.35;
}

.op2-account b {
    display: block;
    margin-top: 6px;
    overflow: hidden;
    color: var(--op2-heading);
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.op2-account small {
    display: block;
    margin-top: 4px;
    color: var(--op2-muted);
    font-size: 12px;
    word-break: break-all;
}

.op2-nav {
    display: grid;
    gap: 8px;
}

.op2-nav a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: var(--op2-radius);
    color: #33454f;
}

.op2-nav a i {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--op2-teal);
    background: var(--op2-teal-soft);
}

.op2-nav a span {
    min-width: 0;
    color: var(--op2-heading);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op2-nav a small {
    min-width: 0;
    color: var(--op2-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op2-nav a:hover,
.op2-nav a.is-active {
    border-color: rgba(17, 136, 120, .28);
    background: #ffffff;
    box-shadow: var(--op2-soft-shadow);
}

.op2-nav a.is-active i {
    color: #ffffff;
    background: var(--op2-teal);
}

.op2-side-footer {
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.op2-menu-toggle,
.op2-exit {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--op2-line);
    border-radius: var(--op2-radius);
    color: var(--op2-heading);
    background: #ffffff;
}

.op2-exit {
    color: var(--op2-red);
}

.op2-main {
    min-width: 0;
}

.op2-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid var(--op2-line);
    backdrop-filter: blur(18px);
}

.op2-title h1 {
    margin: 3px 0 0;
    color: var(--op2-heading);
    font-size: 22px;
    line-height: 1.2;
}

.op2-top-actions,
.op2-page-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.op2-icon-btn {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--op2-line);
    border-radius: 10px;
    color: var(--op2-heading);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(31, 59, 69, .05);
}

.op2-icon-btn:hover,
.op2-btn:hover,
.op2-action-list a:hover {
    transform: translateY(-1px);
}

.op2-icon-btn.is-danger {
    color: var(--op2-red);
}

.op2-content {
    padding: 24px 28px 32px;
}

.op2-brief,
.op2-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.op2-brief {
    padding: 20px;
    border: 1px solid rgba(17, 136, 120, .22);
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #eefaf7 100%);
    box-shadow: var(--op2-soft-shadow);
}

.op2-brief h2,
.op2-page-head h2,
.op2-panel header h2,
.op2-doc-hero h2 {
    margin: 4px 0 0;
    color: var(--op2-heading);
    font-size: 22px;
    line-height: 1.2;
}

.op2-page-head h2 {
    font-size: 24px;
}

.op2-btn,
.op1-btn,
.op1-action-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid var(--op2-line-strong);
    border-radius: 10px;
    color: var(--op2-heading);
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.op2-btn.is-primary,
.op1-btn.is-primary {
    color: #ffffff;
    border-color: var(--op2-teal);
    background: var(--op2-teal);
    box-shadow: 0 10px 22px rgba(17, 136, 120, .18);
}

.op2-btn.is-ghost,
.op1-btn.is-ghost {
    color: var(--op2-heading);
    background: #ffffff;
}

.op2-btn.is-soft {
    color: var(--op2-teal);
    border-color: rgba(17, 136, 120, .24);
    background: var(--op2-teal-soft);
}

.op2-btn:disabled,
.op1-btn:disabled,
.op1-action-btn:disabled {
    cursor: not-allowed;
    opacity: .65;
    transform: none;
}

.op2-kpi-grid,
.op1-kpi-grid,
.op2-summary-grid,
.op1-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.op2-summary-grid,
.op1-summary-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.op2-kpi,
.op1-kpi,
.op2-summary-grid > article,
.op1-summary-grid > article,
.op2-panel,
.op1-panel {
    border: 1px solid var(--op2-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--op2-soft-shadow);
}

.op2-kpi,
.op1-kpi,
.op2-summary-grid > article,
.op1-summary-grid > article {
    min-height: 118px;
    padding: 18px;
}

.op2-kpi.is-primary,
.op1-kpi.is-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e 0%, #16a394 100%);
}

.op2-kpi.is-primary span,
.op2-kpi.is-primary p,
.op1-kpi.is-primary span,
.op1-kpi.is-primary p {
    color: rgba(255, 255, 255, .76);
}

.op2-kpi strong,
.op1-kpi strong,
.op2-summary-grid b,
.op1-summary-grid b {
    display: block;
    margin-top: 8px;
    color: var(--op2-heading);
    font-size: 24px;
    line-height: 1.2;
}

.op2-kpi.is-primary strong,
.op1-kpi.is-primary strong {
    color: #ffffff;
}

.op2-kpi p,
.op1-kpi p {
    margin: 8px 0 0;
    color: var(--op2-muted);
}

.op2-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
    gap: 18px;
}

.op2-panel,
.op1-panel {
    padding: 18px;
}

.op2-panel-wide {
    min-width: 0;
}

.op2-panel header,
.op1-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.op2-action-list {
    display: grid;
    gap: 10px;
}

.op2-action-list a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 10px;
    padding: 12px;
    border: 1px solid var(--op2-line);
    border-radius: 12px;
    background: #f8fbfb;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.op2-action-list a i {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--op2-teal);
    background: var(--op2-teal-soft);
}

.op2-action-list a b {
    color: var(--op2-heading);
}

.op2-action-list a span {
    color: var(--op2-muted);
    font-size: 12px;
}

.op2-trend,
.op1-trend {
    min-height: 220px;
}

.op1-trend-bar {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 70px;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.op1-trend-bar b {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--op2-teal), #80d8ca);
}

.op1-trend-bar span {
    color: var(--op2-heading);
    font-weight: 700;
}

.op1-trend-bar small {
    color: var(--op2-muted);
}

.op2-mini-list,
.op1-mini-list {
    display: grid;
    gap: 10px;
}

.op1-mini-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--op2-line);
    border-radius: 12px;
    background: #f8fbfb;
}

.op1-mini-row > i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--op2-teal);
    background: var(--op2-teal-soft);
}

.op1-mini-row b,
.op1-mini-row span {
    display: block;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.op2-search-panel {
    margin-bottom: 18px;
}

.op2-filter-bar,
.op1-filter-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    align-items: flex-end;
}

.op1-filter-extra {
    display: none;
}

.op2-filter-bar input,
.op2-filter-bar select,
.op1-filter-bar input,
.op1-filter-bar select,
.op2-drawer input,
.op2-drawer select,
.op2-drawer textarea {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--op2-line-strong);
    border-radius: 10px;
    color: var(--op2-heading);
    background: #ffffff;
    outline: none;
}

.op2-filter-bar input:focus,
.op2-filter-bar select:focus,
.op1-filter-bar input:focus,
.op1-filter-bar select:focus,
.op2-drawer input:focus,
.op2-drawer select:focus,
.op2-drawer textarea:focus {
    border-color: var(--op2-teal);
    box-shadow: 0 0 0 3px rgba(17, 136, 120, .12);
}

.op2-filter-bar > input,
.op2-filter-bar > select,
.op2-filter-bar > .select2-container,
.op1-filter-bar > input,
.op1-filter-bar > select,
.op1-filter-bar > .select2-container {
    width: 100% !important;
    min-width: 0;
}

.op2-filter-bar > .op2-btn,
.op1-filter-bar > .op2-btn,
.op1-filter-bar > .op1-btn {
    width: 100%;
    min-width: 86px;
}

.op2-time-range {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto minmax(155px, 1fr) minmax(155px, 1fr);
    gap: 8px;
    align-items: end;
    min-width: 0;
}

.op2-time-range span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(17, 136, 120, .18);
    border-radius: 10px;
    color: var(--op2-teal-dark);
    background: var(--op2-teal-soft);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.op2-time-range input {
    min-width: 0;
}

.op2-table-wrap,
.op1-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.op1-data-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
}

.op1-data-table th,
.op1-data-table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--op2-line);
    color: var(--op2-ink);
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
}

.op1-data-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--op2-muted);
    background: #f6fbfa;
    font-weight: 700;
}

.op1-data-table tbody tr:hover td {
    background: #fbfefd;
}

.op1-money {
    color: var(--op2-heading);
    font-weight: 800;
}

.op1-tag {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--op2-purple);
    background: var(--op2-purple-soft);
    font-size: 12px;
    font-weight: 700;
}

.op1-tag.is-success {
    color: var(--op2-green);
    background: var(--op2-green-soft);
}

.op1-tag.is-running {
    color: var(--op2-blue);
    background: var(--op2-blue-soft);
}

.op1-tag.is-wait {
    color: var(--op2-amber);
    background: var(--op2-amber-soft);
}

.op1-tag.is-fail {
    color: var(--op2-red);
    background: var(--op2-red-soft);
}

.op1-tag.is-abnormal {
    color: var(--op2-purple);
    background: var(--op2-purple-soft);
}

.op1-row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.op1-action-btn {
    min-height: 30px;
    padding: 0 10px;
    color: var(--op2-teal);
    border-color: rgba(17, 136, 120, .28);
    background: var(--op2-teal-soft);
}

.op2-pager,
.op1-pager {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: var(--op2-muted);
}

.op1-pager-actions {
    display: flex;
    gap: 8px;
}

.op1-pager button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--op2-line);
    border-radius: 10px;
    color: var(--op2-heading);
    background: #ffffff;
}

.op1-pager button:disabled {
    color: #9aa8ae;
    background: #f4f7f8;
}

.op1-empty {
    min-height: 120px;
    display: grid;
    place-items: center;
    color: var(--op2-muted);
    border: 1px dashed var(--op2-line-strong);
    border-radius: 12px;
    background: #f9fcfc;
}

.op1-empty.is-loading::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 8px;
    display: inline-block;
    border: 2px solid rgba(17, 136, 120, .2);
    border-top-color: var(--op2-teal);
    border-radius: 999px;
    animation: op2-spin .8s linear infinite;
    vertical-align: middle;
}

@keyframes op2-spin {
    to { transform: rotate(360deg); }
}

.op2-tabs,
.op1-tabs {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 14px;
    padding: 4px;
    border: 1px solid var(--op2-line);
    border-radius: 12px;
    background: #f7fbfb;
}

.op2-tabs button,
.op1-tabs button {
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 9px;
    color: var(--op2-muted);
    background: transparent;
    font-weight: 700;
}

.op2-tabs button.is-active,
.op1-tabs button.is-active {
    color: #ffffff;
    background: var(--op2-teal);
}

.op2-drawer-mask,
.op1-drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    background: rgba(13, 27, 34, .36);
}

.op2-drawer-mask.is-open,
.op1-drawer-mask.is-open {
    display: block;
}

.op2-drawer,
.op1-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(640px, 96vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: -18px 0 44px rgba(18, 34, 45, .18);
}

.op2-drawer header,
.op1-drawer header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--op2-line);
}

.op2-drawer header span,
.op1-drawer header span {
    color: var(--op2-muted);
    font-size: 12px;
}

.op2-drawer header h3,
.op1-drawer header h3 {
    margin: 4px 0 0;
    color: var(--op2-heading);
    font-size: 20px;
}

.op2-drawer header button,
.op1-drawer header button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--op2-line);
    border-radius: 10px;
    color: var(--op2-heading);
    background: #ffffff;
}

.op2-drawer-body,
.op1-drawer-body {
    flex: 1;
    min-height: 0;
    padding: 20px 22px;
    overflow-y: auto;
}

.op1-drawer-filter {
    display: grid;
    gap: 12px;
}

.op1-detail-card {
    display: grid;
    gap: 12px;
}

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

.op1-detail-item {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--op2-line);
    border-radius: 12px;
    background: #f8fbfb;
}

.op1-detail-item.is-wide {
    grid-column: 1 / -1;
}

.op1-detail-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--op2-muted);
    font-size: 12px;
}

.op1-detail-item b,
.op1-detail-value {
    display: block;
    min-width: 0;
    color: var(--op2-heading);
    font-size: 13px;
    line-height: 1.45;
    word-break: break-all;
}

.op1-detail-pre {
    padding: 10px;
    border-radius: 10px;
    color: #17313a;
    background: #edf5f5;
    white-space: pre-wrap;
}

.op2-doc-hero {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #edf8f6 100%);
}

.op2-doc-hero p {
    margin: 8px 0 0;
    color: var(--op2-muted);
}

.op2-doc-badge {
    min-width: 138px;
    min-height: 92px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border-radius: 14px;
    color: var(--op2-teal);
    background: var(--op2-teal-soft);
    font-weight: 800;
}

.op2-doc-shell,
.op1-doc-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.op2-doc-nav,
.op1-doc-nav {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--op2-line);
    border-radius: 14px;
    background: #f8fbfb;
}

.op1-doc-nav-title {
    margin-bottom: 6px;
    color: var(--op2-muted);
    font-size: 12px;
    font-weight: 800;
}

.op2-doc-nav a,
.op1-doc-nav a {
    min-height: 32px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 9px;
    color: var(--op2-heading);
    font-size: 13px;
}

.op2-doc-nav a:hover,
.op2-doc-nav a.is-active,
.op1-doc-nav a:hover,
.op1-doc-nav a.is-active {
    color: var(--op2-teal);
    background: var(--op2-teal-soft);
}

.op2-doc-content,
.op1-doc-content {
    min-width: 0;
    color: var(--op2-ink);
    line-height: 1.7;
}

.op2-doc-content h1,
.op2-doc-content h2,
.op2-doc-content h3,
.op1-doc-content h1,
.op1-doc-content h2,
.op1-doc-content h3 {
    color: var(--op2-heading);
}

.op2-doc-content table,
.op1-doc-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    border: 1px solid var(--op2-line);
}

.op2-doc-content th,
.op2-doc-content td,
.op1-doc-content th,
.op1-doc-content td {
    padding: 10px;
    border: 1px solid var(--op2-line);
    text-align: left;
}

.op2-doc-content pre,
.op1-doc-content pre {
    overflow-x: auto;
    padding: 14px;
    border-radius: 12px;
    color: #e8f7f4;
    background: #163238;
}

.select2-container--default .select2-selection--single {
    min-height: 38px;
    border-color: var(--op2-line-strong);
    border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    color: var(--op2-heading);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.select2-dropdown {
    border-color: var(--op2-line-strong);
    border-radius: 10px;
    overflow: hidden;
}

.layui-laydate {
    border-color: var(--op2-line);
    border-radius: 10px;
    box-shadow: var(--op2-shadow);
}

.layui-laydate .layui-this {
    background-color: var(--op2-teal) !important;
}

body.op2-login {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    color: var(--op2-ink);
    background:
        linear-gradient(120deg, rgba(15, 38, 44, .72), rgba(13, 56, 54, .42)),
        #10292f center / cover no-repeat;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

.op2-login-shell {
    width: min(1080px, calc(100vw - 40px));
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 24px;
    background: rgba(255, 255, 255, .16);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
}

.op2-login-visual {
    position: relative;
    min-height: 610px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.op2-login-visual::after {
    content: "";
    position: absolute;
    inset: auto 36px 36px auto;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 32px;
    transform: rotate(12deg);
}

.op2-login-mark {
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-template-columns: 44px auto;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.op2-login-mark span {
    color: var(--op2-teal);
    background: #ffffff;
}

.op2-login-mark strong {
    color: #ffffff;
    font-size: 20px;
}

.op2-login-copy {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.op2-login-copy p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.op2-login-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
}

.op2-login-copy span {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
}

.op2-login-card {
    display: flex;
    align-items: center;
    padding: 34px;
    background: rgba(255, 255, 255, .96);
}

.op2-login-card form {
    width: 100%;
}

.op2-login-head {
    margin-bottom: 24px;
}

.op2-login-head span {
    color: var(--op2-teal);
    font-size: 12px;
    font-weight: 800;
}

.op2-login-head h2 {
    margin: 6px 0 0;
    color: var(--op2-heading);
    font-size: 28px;
}

.op2-field {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.op2-field span {
    color: var(--op2-heading);
    font-size: 13px;
    font-weight: 700;
}

.op2-field input,
.op2-captcha input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--op2-line-strong);
    border-radius: 10px;
    outline: none;
}

.op2-field input:focus,
.op2-captcha input:focus {
    border-color: var(--op2-teal);
    box-shadow: 0 0 0 3px rgba(17, 136, 120, .12);
}

.op2-captcha {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
    margin-bottom: 14px;
}

.op2-captcha img {
    width: 120px;
    height: 44px;
    border: 1px solid var(--op2-line);
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}

.op2-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--op2-muted);
    font-size: 13px;
}

.op2-login-submit {
    width: 100%;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: var(--op2-teal);
    font-weight: 800;
    cursor: pointer;
}

.op2-login-submit:disabled {
    cursor: not-allowed;
    opacity: .72;
}

.op2-code-wrap {
    position: relative;
}

.op2-code-copy {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 8px;
    padding: 5px 9px;
    color: #d7f6ef;
    background: rgba(15, 23, 42, .82);
    font-size: 12px;
    cursor: pointer;
}

.op2-code-copy:hover {
    background: rgba(20, 184, 166, .92);
}

@media (max-width: 1320px) {
    .op2-filter-bar,
    .op1-filter-bar {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .op2-time-range {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1080px) {
    .op2-shell {
        grid-template-columns: 1fr;
    }

    .op2-side {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 70;
        width: min(286px, 86vw);
        transform: translateX(-105%);
        transition: transform .18s ease;
    }

    body.is-menu-open .op2-side {
        transform: translateX(0);
    }

    .op2-home-grid,
    .op2-doc-shell,
    .op1-doc-shell {
        grid-template-columns: 1fr;
    }

    .op2-doc-nav,
    .op1-doc-nav {
        position: static;
    }

    .op2-kpi-grid,
    .op1-kpi-grid,
    .op2-summary-grid,
    .op1-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .op2-content,
    .op2-topbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .op2-kpi-grid,
    .op1-kpi-grid,
    .op2-summary-grid,
    .op1-summary-grid,
    .op2-filter-bar,
    .op1-filter-bar {
        grid-template-columns: 1fr;
    }

    .op2-time-range {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .op2-filter-bar > input,
    .op2-filter-bar > select,
    .op2-filter-bar > .select2-container,
    .op1-filter-bar > input,
    .op1-filter-bar > select,
    .op1-filter-bar > .select2-container,
    .op2-filter-bar > .op2-btn,
    .op1-filter-bar > .op2-btn,
    .op1-filter-bar > .op1-btn {
        width: 100%;
        min-width: 0;
    }

    .op2-time-range span {
        min-height: auto;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .op2-brief,
    .op2-page-head,
    .op2-topbar,
    .op2-doc-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .op1-detail-grid {
        grid-template-columns: 1fr;
    }

    .op2-login-shell {
        width: min(420px, calc(100vw - 28px));
        grid-template-columns: 1fr;
    }

    .op2-login-visual {
        min-height: 240px;
    }

    .op2-login-copy h1 {
        font-size: 34px;
    }
}
