html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: #243040;
    background: #F5F7FA;
}
[v-cloak] {
    display: none;
}

/* ===== 布局 ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background:
        radial-gradient(1200px 420px at 100% -80px, rgba(0, 194, 179, .10), transparent 55%),
        #F5F7FA;
}
.admin-aside {
    width: 224px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #1c2b3a 0%, #152230 100%);
    color: #c5d0dc;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 20;
    overflow: visible;
    box-shadow: 4px 0 24px rgba(16, 28, 42, .16);
    transition: width .28s cubic-bezier(.2, .8, .2, 1);
}
.admin-layout.is-collapsed .admin-aside {
    width: 64px;
}
.admin-logo {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: rgba(0, 0, 0, .18);
    overflow: hidden;
    white-space: nowrap;
}
.logo-mark {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #3DDEC9, #00C2B3);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 194, 179, .35);
}
.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(16, 28, 42, .18);
}
.logo-full {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: opacity .2s, width .28s;
}
.admin-layout.is-collapsed .logo-full {
    width: 0;
    opacity: 0;
    overflow: hidden;
}
.admin-menu {
    height: calc(100vh - 56px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px 0 16px;
}
.admin-layout.is-collapsed .admin-menu {
    overflow: visible;
}
.admin-menu::-webkit-scrollbar {
    width: 4px;
}
.admin-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .12);
    border-radius: 4px;
}
.menu-group {
    margin: 8px 10px 2px;
    position: relative;
}
.menu-group + .menu-group {
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}
.menu-group-title {
    width: 100%;
    border: 0;
    background: transparent;
    color: #e8eef5;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: left;
    transition: background .2s, color .2s;
}
.menu-group-title i:first-child {
    width: 18px;
    font-size: 15px;
    text-align: center;
    flex-shrink: 0;
    color: #5ee0d4;
}
.menu-group.is-current > .menu-group-title {
    color: #fff;
    background: rgba(0, 194, 179, .12);
}
.menu-group-title:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}
.menu-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity .18s;
}
.menu-arrow {
    font-size: 11px;
    color: #6d7d90;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.menu-group.is-open .menu-arrow {
    transform: rotate(180deg);
}
.menu-sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .22s cubic-bezier(.22, 1, .36, 1);
    margin-left: 17px;
}
.menu-group.is-open .menu-sub {
    grid-template-rows: 1fr;
}
.menu-sub-inner {
    min-height: 0;
    overflow: hidden;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}
.menu-group.is-open .menu-sub-inner {
    padding-top: 2px;
    padding-bottom: 6px;
}
.menu-fly-title {
    display: none;
}
.menu-item {
    display: flex;
    align-items: center;
    height: 32px;
    margin: 1px 0;
    padding: 0 8px 0 6px;
    color: #8b99aa;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    transition: background .2s, color .2s;
}
.menu-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5a6a7c;
    margin-right: 8px;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}
.menu-item:hover {
    color: #d7e0ea;
    background: rgba(255, 255, 255, .05);
}
.menu-item:hover .menu-dot,
.menu-item.is-active .menu-dot {
    background: #00C2B3;
    transform: scale(1.2);
}
.menu-item.is-active {
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 194, 179, .32), rgba(0, 194, 179, .06));
    box-shadow: inset 2px 0 0 #00C2B3;
    font-weight: 600;
}
.admin-layout.is-collapsed .menu-text,
.admin-layout.is-collapsed .menu-arrow,
.admin-layout.is-collapsed .menu-dot {
    opacity: 0;
    width: 0;
    margin: 0;
    overflow: hidden;
}
.admin-layout.is-collapsed .menu-group {
    margin: 4px 8px;
}
.admin-layout.is-collapsed .menu-group-title {
    justify-content: center;
    padding: 0;
}
.admin-layout.is-collapsed .menu-group.is-open .menu-sub {
    grid-template-rows: 0fr;
}
.admin-layout.is-collapsed .menu-group:hover .menu-sub {
    display: block;
    grid-template-rows: none;
    position: absolute;
    left: 56px;
    top: 0;
    width: 172px;
    margin-left: 0;
    padding: 6px;
    background: #1b2837;
    border-radius: 10px;
    box-shadow: 8px 10px 28px rgba(0, 0, 0, .28);
    overflow: visible;
    z-index: 30;
    animation: menuFly .16s ease;
}
.admin-layout.is-collapsed .menu-group:hover .menu-sub-inner {
    overflow: visible;
    padding: 0;
    border-left: 0;
}
.admin-layout.is-collapsed .menu-group:hover .menu-sub .menu-text,
.admin-layout.is-collapsed .menu-group:hover .menu-sub .menu-dot {
    opacity: 1;
    width: auto;
    margin-right: 10px;
}
.admin-layout.is-collapsed .menu-group:hover .menu-fly-title {
    display: block;
    padding: 8px 12px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.admin-layout.is-collapsed .menu-item {
    padding: 0 10px;
    transform: none;
}
@keyframes menuFly {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
}

.admin-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.admin-header {
    height: 56px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e6ebf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-left {
    display: flex;
    align-items: center;
    min-width: 0;
}
.fold-btn {
    width: 36px;
    height: 36px;
    border: 0;
    margin-right: 12px;
    border-radius: 10px;
    background: #f3f6fb;
    color: #5b6573;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
}
.fold-btn i { font-size: 16px; }
.fold-btn:hover {
    background: #E6FAF8;
    color: #00C2B3;
}
.fold-btn:active { transform: scale(.96); }
.admin-header .title {
    font-size: 16px;
    color: #1a2433;
    font-weight: 650;
    letter-spacing: .2px;
}
.admin-header .user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #606266;
    font-size: 13px;
}
.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    background: #f4f7fb;
    border: 1px solid #e8edf3;
    border-radius: 999px;
}
.user-avatar {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #3DDEC9, #00C2B3);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.user-name {
    color: #334155;
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-link,
.logout-link {
    color: #5b6573;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.user-link:hover {
    background: #E6FAF8;
    color: #00C2B3;
}
.logout-link:hover {
    background: #fff1f0;
    color: #f56c6c;
}
.admin-main {
    padding: 18px 20px 32px;
    flex: 1;
}

/* ===== 卡片 / 页头 ===== */
.el-card {
    border: 1px solid #e8edf3 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(31, 58, 104, .05) !important;
}
.el-card__header {
    padding: 14px 18px !important;
    border-bottom: 1px solid #eef2f7 !important;
    font-size: 15px;
    font-weight: 650;
    color: #1a2433;
    background: #fff;
}
.el-card__body {
    padding: 16px 18px 18px !important;
}
.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.page-head > span:first-child {
    font-size: 15px;
    font-weight: 650;
    color: #1a2433;
    letter-spacing: .2px;
}
.page-head .el-form {
    margin-bottom: 0;
}
.page-head .el-form-item {
    margin-bottom: 0;
}
.page-head > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== 筛选条 ===== */
.filter-bar,
.el-card__body > .el-form--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 4px;
    margin: 0 0 14px !important;
    padding: 10px 12px 2px;
    background: #f6f8fb;
    border: 1px solid #eef2f7;
    border-radius: 10px;
}
.filter-bar > .el-input,
.filter-bar > .el-select,
.filter-bar > .el-button,
.filter-bar > .el-date-editor {
    margin: 0 8px 8px 0;
}
.filter-bar .el-form-item,
.el-card__body > .el-form--inline .el-form-item {
    margin-bottom: 8px;
}
.el-alert {
    border-radius: 10px;
}
.el-card__header .el-form--inline,
.page-head .el-form--inline {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 !important;
}

/* ===== 表格 ===== */
.el-table {
    font-size: 13px;
    color: #334155;
}
.el-table--border {
    border-radius: 10px;
    overflow: hidden;
}
.el-table th {
    background: #f5f7fb !important;
    color: #5b6573 !important;
    font-weight: 600 !important;
    font-size: 12px;
}
.el-table td,
.el-table th {
    padding: 10px 0 !important;
}
.el-table--striped .el-table__body tr.el-table__row--striped td {
    background: #fafbfd !important;
}
.el-table__body tr:hover > td {
    background: #E6FAF8 !important;
}
.el-table .el-button--text {
    padding: 0 6px;
    font-weight: 500;
}
.el-table .el-tag {
    border: 0;
    font-weight: 500;
}

/* ===== 分页 ===== */
.pager {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #e8edf3;
    text-align: right;
}
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #00C2B3;
}

/* ===== 按钮 / 表单 ===== */
.el-button {
    border-radius: 8px;
    font-weight: 500;
}
.el-button--primary {
    background: #00C2B3;
    border-color: #00C2B3;
}
.el-button--primary:hover,
.el-button--primary:focus {
    background: #1AD4C5;
    border-color: #1AD4C5;
}
.el-input__inner,
.el-textarea__inner {
    border-radius: 8px;
}
.el-dialog {
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(16, 28, 42, .18) !important;
}
.el-dialog__header {
    padding: 16px 20px !important;
    border-bottom: 1px solid #eef2f7;
    background: #fbfcfe;
}
.el-dialog__title {
    font-size: 15px;
    font-weight: 650;
    color: #1a2433;
}
.el-dialog__body {
    padding: 18px 20px 8px !important;
}
.el-dialog__footer {
    padding: 12px 20px 16px !important;
    border-top: 1px solid #eef2f7;
    background: #fbfcfe;
}
.el-dialog .el-select,
.el-dialog .el-date-editor.el-input,
.el-dialog .el-date-editor.el-input__inner {
    width: 100%;
}
.el-drawer__header {
    margin-bottom: 8px;
    font-weight: 650;
    color: #1a2433;
}
.el-drawer__body {
    padding: 0 20px 24px;
}

.muted {
    color: #8090a5;
    font-size: 12px;
    line-height: 1.7;
}
.el-card__body > .muted,
.el-card__body > p.muted {
    margin: 0 0 14px;
    padding: 10px 12px;
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    border-radius: 8px;
    color: #5b6b82;
}
.el-form-item .muted,
.el-form-item .muted[style] {
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.file-link {
    font-size: 12px;
    color: #00C2B3;
    margin-left: 8px;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-field {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
}
input[type=file] {
    font-size: 12px;
    color: #606266;
}

.form-page {
    max-width: 760px;
}
.setting-card .el-card__body {
    padding-top: 8px !important;
}
.setting-card .el-tabs__header {
    margin: 0 0 18px;
}
.setting-card .el-tabs__item {
    font-weight: 600;
    height: 42px;
    line-height: 42px;
}
.setting-card .el-tabs__nav-wrap::after {
    height: 1px;
    background-color: #eef2f7;
}
.img-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #f3f6fb;
    border: 1px solid #e8edf3;
}
.img-uploader .el-upload--picture-card {
    width: 108px;
    height: 108px;
    line-height: 106px;
    border-radius: 12px;
    border: 1px dashed #c9d4e5;
    background: #f7f9fc;
    color: #8b98ab;
}
.img-uploader .el-upload--picture-card:hover {
    border-color: #00C2B3;
    color: #00C2B3;
    background: #E6FAF8;
}
.img-uploader .el-upload-list--picture-card .el-upload-list__item {
    width: 108px;
    height: 108px;
    border-radius: 12px;
}
.img-uploader.is-full .el-upload--picture-card {
    display: none;
}
.img-uploader.ad-uploader .el-upload--picture-card,
.img-uploader.ad-uploader .el-upload-list--picture-card .el-upload-list__item {
    width: 288px;
    height: 162px;
    line-height: 160px;
}
.rich-editor {
    border: 1px solid #e8edf3;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    isolation: isolate;
    position: relative;
    z-index: 1;
}
.rich-editor .w-e-toolbar {
    border: none !important;
    border-bottom: 1px solid #eef2f7 !important;
    background: #f7f9fc !important;
    z-index: 2 !important;
}
.rich-editor .w-e-text-container {
    border: none !important;
    z-index: 1 !important;
}
.el-loading-mask {
    border-radius: 14px;
}

/* ===== 工作台 ===== */
.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 16px 14px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(31, 58, 104, .05);
    min-height: 88px;
    box-sizing: border-box;
    transition: transform .18s, box-shadow .18s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 58, 104, .09);
}
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.stat-card .num {
    font-size: 24px;
    font-weight: 700;
    color: #1a2433;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}
.stat-card .label {
    margin-top: 4px;
    color: #8090a5;
    font-size: 12px;
}
.stat-card.is-user .stat-icon { background: #E6FAF8; color: #00C2B3; }
.stat-card.is-member .stat-icon { background: #e8f8ef; color: #22a06b; }
.stat-card.is-bank .stat-icon { background: #fff4e5; color: #d48806; }
.stat-card.is-question .stat-icon { background: #f3e8ff; color: #7c3aed; }
.stat-card.is-school .stat-icon { background: #e7f6fb; color: #0e8aaa; }
.stat-card.is-coupon .stat-icon { background: #ffece8; color: #e25c3a; }
.stat-card.is-paper .stat-icon { background: #eef4ff; color: #3b6fd4; }
.stat-card.is-video .stat-icon { background: #fff0f6; color: #c9347a; }
.stat-card.is-article .stat-icon { background: #f3e8ff; color: #6b4fd4; }
.stat-card .stat-meta { min-width: 0; flex: 1; }
.stat-card .stat-go {
    color: #c5ced8;
    font-size: 14px;
    margin-left: auto;
}
.stat-card:hover .stat-go { color: #00C2B3; }
.dash-row { margin-bottom: 4px; }
.dash-row .el-col { margin-bottom: 14px; }
.dash-hello {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(0, 194, 179, .12), rgba(61, 222, 201, .04) 46%, #fff 70%),
        #fff;
    border: 1px solid #d8f4f0;
    box-shadow: 0 8px 24px rgba(31, 58, 104, .04);
}
.dash-hi {
    font-size: 20px;
    font-weight: 700;
    color: #1a2433;
}
.dash-date {
    margin-top: 4px;
    font-size: 13px;
    color: #8090a5;
}
.dash-hello-side {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d8f4f0;
    color: #0a8f85;
    font-size: 13px;
    cursor: pointer;
}
.dash-hello-side i { font-size: 16px; }
.dash-hello-side em {
    font-style: normal;
    font-weight: 700;
    color: #00C2B3;
}
.dash-sec-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 12px;
    font-size: 14px;
    font-weight: 650;
    color: #1a2433;
}
.dash-sec-title i { color: #00C2B3; }
.today-grid,
.asset-grid,
.entry-grid,
.tip-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 4px;
}
.today-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.asset-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.entry-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.tip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.today-card,
.asset-card,
.entry-card,
.tip-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .16s, box-shadow .16s, border-color .16s;
}
.today-card:hover,
.asset-card:hover,
.entry-card:hover {
    transform: translateY(-2px);
    border-color: #C8F3ED;
    box-shadow: 0 10px 22px rgba(31, 58, 104, .06);
}
.today-card .num,
.asset-card .num {
    font-size: 20px;
    font-weight: 700;
    color: #1a2433;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}
.today-card .label,
.asset-card .label {
    margin-top: 2px;
    font-size: 12px;
    color: #8090a5;
}
.today-ico,
.asset-ico,
.entry-ico,
.todo-ico,
.log-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.entry-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 92px;
    font-size: 13px;
    font-weight: 650;
    color: #334155;
}
.tip-card {
    align-items: flex-start;
    cursor: default;
    background: #F0FBF9;
    border-color: #D8F4F0;
}
.tip-card i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    color: #00C2B3;
    font-size: 16px;
    flex-shrink: 0;
}
.tip-card strong { display: block; font-size: 13px; color: #1a2433; }
.tip-card p { margin: 6px 0 0; font-size: 12px; line-height: 1.6; color: #5b6573; }
.is-teal { background: #E6FAF8; color: #00C2B3; }
.is-green { background: #e8f8ef; color: #22a06b; }
.is-blue { background: #eef4ff; color: #3b6fd4; }
.is-purple { background: #f3e8ff; color: #6b4fd4; }
.is-orange { background: #fff4e5; color: #d48806; }
.is-red { background: #ffece8; color: #e25c3a; }
.todo-item { gap: 10px; }
.todo-item .name { flex: 1; }
.dash .el-card__header i { margin-right: 6px; color: #00C2B3; }
.log-ico { width: 28px; height: 28px; border-radius: 8px; font-size: 13px; }

.crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #243040;
}
.crumb a {
    color: #00C2B3;
    cursor: pointer;
}
.crumb-sep {
    color: #c0c4cc;
    font-weight: 400;
}
.todo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.todo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f6f8fb;
    border: 1px solid #eef2f7;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.todo-item:hover {
    background: #E6FAF8;
    border-color: #C8F3ED;
}
.todo-item .name {
    color: #334155;
    font-size: 13px;
    font-weight: 500;
}
.todo-item .todo-link {
    color: #00C2B3;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.todo-item .todo-link:hover {
    color: #009e92;
}
.todo-item .count {
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    line-height: 22px;
    text-align: center;
    border-radius: 999px;
    background: #00C2B3;
    color: #fff;
    font-size: 12px;
    font-weight: 650;
}
.todo-item .count.is-zero {
    background: #d5dbe6;
}
.readonly-bar {
    margin: -8px 0 16px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff7e6;
    color: #ad6800;
    font-size: 13px;
    border: 1px solid #ffe7ba;
}
.login-captcha {
    display: flex;
    gap: 8px;
}
.login-captcha .el-input {
    flex: 1;
}
.captcha-q {
    min-width: 110px;
    height: 36px;
    border: 1px dashed #00C2B3;
    border-radius: 8px;
    background: #E6FAF8;
    color: #0d6b64;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
}

/* ===== 登录 ===== */
.login-wrap {
    min-height: 100vh;
    background: #122033;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.login-wrap::before,
.login-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.login-wrap::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 194, 179, .42), transparent 68%);
    top: -160px;
    right: -80px;
}
.login-wrap::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(61, 222, 201, .28), transparent 70%);
    bottom: -120px;
    left: -60px;
}
.login-card {
    width: 400px;
    position: relative;
    z-index: 1;
    border-radius: 16px !important;
    overflow: hidden;
}
.login-card .el-card__header {
    display: none;
}
.login-card .el-card__body {
    padding: 28px 28px 24px !important;
}
.login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.login-brand .logo-mark {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 12px;
}
.login-brand .logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 6px 14px rgba(16, 28, 42, .12);
}
.login-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2433;
}
.login-sub {
    margin-top: 2px;
    font-size: 12px;
    color: #8090a5;
}
.login-card .el-button {
    height: 40px;
    font-size: 15px;
}

.code-text {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    letter-spacing: .3px;
    background: #f4f7fb;
    border: 1px solid #e8edf3;
    padding: 3px 8px;
    border-radius: 6px;
    color: #1a2433;
}
.score-em {
    font-size: 16px;
    font-weight: 700;
    color: #00C2B3;
    font-variant-numeric: tabular-nums;
}
.num-em {
    font-weight: 650;
    font-variant-numeric: tabular-nums;
    color: #1a2433;
}
.stat-split {
    font-size: 12px;
    white-space: nowrap;
}
.stat-split .ok { color: #22a06b; font-weight: 650; }
.stat-split .bad { color: #e25c3a; font-weight: 650; }
.stat-split .wait { color: #8090a5; }
.rule-chip {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background: #f5f7fb;
    font-size: 12px;
    color: #5b6573;
    white-space: nowrap;
}
.days-chip {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #E6FAF8;
    color: #00C2B3;
    font-size: 12px;
    font-weight: 650;
}
.invite-rule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 13px;
}
.invite-rule .arrow {
    color: #b7c3d2;
}
.rule-box {
    background: #f6f8fb;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 12px 12px 4px;
    margin-bottom: 8px;
}
.rule-box-title {
    font-size: 12px;
    color: #8090a5;
    margin: 0 0 10px;
    font-weight: 600;
}
.detail-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 12px 14px;
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    border-radius: 10px;
    margin-bottom: 14px;
}
.detail-banner .item .lab {
    display: block;
    font-size: 12px;
    color: #8090a5;
    margin-bottom: 2px;
}
.detail-banner .item .val {
    font-size: 14px;
    font-weight: 650;
    color: #1a2433;
}
.time-range {
    font-size: 12px;
    line-height: 1.6;
    color: #5b6573;
}
.ans-ok { color: #22a06b; font-weight: 650; }
.ans-bad { color: #e25c3a; }

@media (max-width: 1200px) {
    .stat-card .num { font-size: 20px; }
    .today-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .entry-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tip-grid { grid-template-columns: 1fr; }
}

/* ===== Element 主题对齐 #00C2B3 ===== */
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner,
.el-radio__input.is-checked .el-radio__inner {
    background-color: #00C2B3;
    border-color: #00C2B3;
}
.el-checkbox__input.is-checked + .el-checkbox__label,
.el-radio__input.is-checked + .el-radio__label,
.el-radio__input.is-checked .el-radio__inner::after {
    color: #00C2B3;
}
.el-switch.is-checked .el-switch__core {
    background-color: #00C2B3 !important;
    border-color: #00C2B3 !important;
}
.el-tabs__active-bar { background-color: #00C2B3; }
.el-tabs__item.is-active,
.el-tabs__item:hover { color: #00C2B3; }
.el-select-dropdown__item.selected { color: #00C2B3; }
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #00C2B3;
}
.el-input__inner:focus,
.el-textarea__inner:focus {
    border-color: #00C2B3;
}
.el-button--text { color: #00C2B3; }
.el-button--text:hover,
.el-button--text:focus { color: #00A89B; }
.el-loading-spinner .path { stroke: #00C2B3; }
.el-loading-spinner .el-loading-text { color: #00C2B3; }
.el-date-table td.current:not(.disabled) span,
.el-date-table td.today span {
    color: #00C2B3;
}
.el-date-table td.current:not(.disabled) span {
    background-color: #00C2B3;
    color: #fff;
}
.stat-card { cursor: pointer; }
.stat-card.is-static { cursor: default; }
.login-wrap { background: #0d2a28; }

.page-tip {
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    color: #4a6670;
    font-size: 13px;
    line-height: 1.6;
}
.scope-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}
.scope-cell .main {
    font-weight: 650;
    color: #1a2433;
}
.scope-cell .sub {
    font-size: 12px;
    color: #8090a5;
}
.qtype-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.qtype-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    color: #334155;
    background: #f5f7fb;
}
.qtype-chip em {
    font-style: normal;
    font-weight: 650;
}
.qtype-chip.is-single { background: #E6FAF8; color: #0a8f85; }
.qtype-chip.is-multi { background: #eef4ff; color: #3b6fd4; }
.qtype-chip.is-judge { background: #fff6e6; color: #c17a10; }
.qtype-chip.is-essay { background: #f4f0ff; color: #6b4fd4; }
.qtype-chip.is-off { opacity: .38; }
.mock-section {
    margin-bottom: 16px;
}
.mock-section:last-child {
    margin-bottom: 0;
}
.mock-section-title {
    font-size: 13px;
    font-weight: 650;
    color: #1a2433;
    margin: 0 0 10px;
}
.mock-types {
    border: 1px solid #eef2f7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.mock-types-head,
.mock-types-row {
    display: grid;
    grid-template-columns: 88px 1fr 1fr 88px;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
}
.mock-types-head {
    background: #f6f8fb;
    font-size: 12px;
    font-weight: 650;
    color: #8090a5;
}
.mock-types-row + .mock-types-row {
    border-top: 1px solid #f0f3f7;
}
.mock-types-row .el-input-number {
    width: 100%;
}
.mock-sub {
    font-size: 13px;
    font-weight: 650;
    color: #1a2433;
    text-align: right;
}
.mock-sub.is-muted {
    font-weight: 500;
    color: #8090a5;
}
.mock-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 650;
}
.mock-summary.is-ok {
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    color: #0a8f85;
}
.mock-summary.is-bad {
    background: #fff5f2;
    border: 1px solid #ffd8cc;
    color: #e25c3a;
}
.mock-summary .muted {
    font-weight: 400;
    margin-left: auto;
}
.mock-dialog .el-dialog__body {
    padding-top: 14px;
}
.mock-dialog .el-form-item {
    margin-bottom: 12px;
}
.result-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.result-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
    white-space: nowrap;
}
.result-chip.is-ok { background: #e8f8f0; color: #22a06b; }
.result-chip.is-bad { background: #fff1ed; color: #e25c3a; }
.result-chip.is-wait { background: #f4f6f9; color: #8090a5; }
.record-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
}
.record-drawer .el-drawer__body {
    padding: 16px 20px 24px;
}
.record-drawer .detail-banner {
    margin-bottom: 16px;
}
.record-drawer .detail-banner .muted {
    font-weight: 500;
    color: #8090a5;
}
.code-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}
.code-text {
    cursor: pointer;
}
.code-text.is-used {
    opacity: .5;
}
.focus-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff8e8;
    border: 1px solid #ffe7ba;
    color: #ad6800;
    font-size: 13px;
}
.assist-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 10px;
}
.assist-bar strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}
.assist-bar .sub {
    font-size: 12px;
    font-weight: 400;
}
.assist-bar.is-open {
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    color: #0a8f85;
}
.assist-bar.is-closed {
    background: #f6f8fb;
    border: 1px solid #eef2f7;
    color: #5b6573;
}
.assist-bar.is-closed .sub {
    color: #8090a5;
}
.count-pair {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #1a2433;
}
.count-pair em {
    font-style: normal;
    font-weight: 700;
    color: #00C2B3;
}
.count-pair .sub {
    font-size: 12px;
    color: #8090a5;
}
.catalog-card > .el-card__body {
    padding-top: 14px !important;
}
.catalog-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 14px;
    padding: 10px 14px;
    background: #F0FBF9;
    border: 1px solid #D8F4F0;
    border-radius: 10px;
}
.catalog-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: #6b7c8d;
}
.catalog-crumb i {
    font-size: 12px;
    color: #c5ced8;
}
.catalog-crumb-item {
    cursor: pointer;
    color: #00C2B3;
    font-weight: 600;
}
.catalog-crumb-item:hover {
    color: #009e92;
}
.catalog-crumb-item.on {
    color: #1a2433;
    cursor: default;
}
.catalog-hint {
    font-size: 12px;
    color: #8090a5;
}
.catalog-panel {
    min-height: 360px;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.catalog-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f3f7;
    cursor: pointer;
    transition: background .15s;
}
.catalog-row:last-child {
    border-bottom: 0;
}
.catalog-row:hover {
    background: #F0FBF9;
}
.catalog-row.is-off {
    opacity: .62;
}
.catalog-cover {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.catalog-cover.lv-major {
    background: linear-gradient(135deg, #3DDEC9, #00C2B3);
}
.catalog-cover.lv-track {
    background: linear-gradient(135deg, #FFB26B, #FF8A3D);
}
.catalog-cover.lv-subject {
    background: linear-gradient(135deg, #8BB4FF, #5B8DEF);
}
.catalog-cover.has-img {
    background: #f3f6fb;
    border: 1px solid #e8edf3;
}
.catalog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.catalog-row-main {
    min-width: 0;
    flex: 1;
}
.catalog-row-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.catalog-row-title strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a2433;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog-row-sub {
    margin-top: 4px;
    font-size: 12px;
    color: #8090a5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog-ops {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.catalog-ops .el-button {
    padding: 0 8px;
    font-weight: 500;
}
.catalog-ops .is-danger {
    color: #F56C6C;
}
.catalog-ops .is-danger:hover {
    color: #d94848;
}
.catalog-go {
    color: #c5ced8;
    font-size: 14px;
    flex-shrink: 0;
    transition: color .15s, transform .15s;
}
.catalog-row:hover .catalog-go {
    color: #00C2B3;
    transform: translateX(2px);
}
.catalog-st {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    line-height: 20px;
    flex-shrink: 0;
}
.catalog-st.on {
    background: #e8f8f0;
    color: #22a06b;
}
.catalog-st.off {
    background: #f4f6f9;
    color: #8090a5;
}
.catalog-blank {
    text-align: center;
    color: #8090a5;
    font-size: 13px;
    padding: 72px 20px;
}
.catalog-blank i {
    font-size: 36px;
    color: #c5ced8;
}
.catalog-blank p {
    margin: 10px 0 16px;
}
@media (max-width: 720px) {
    .catalog-row {
        flex-wrap: wrap;
    }
    .catalog-ops {
        width: 100%;
        justify-content: flex-end;
        order: 5;
    }
}
.form-page.is-wide {
    max-width: 920px;
}
.page-savebar {
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-content .el-tabs__item.is-active {
    color: #00C2B3;
}
.page-content .el-tabs__active-bar {
    background-color: #00C2B3;
}

.q-item-dialog .el-dialog__body {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-top: 14px !important;
}
.q-item-dialog .el-form-item {
    margin-bottom: 12px;
}
.q-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.q-type-wrap,
.q-score-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.q-meta-lab {
    color: #606266;
    font-size: 13px;
    flex-shrink: 0;
}
.q-type-btns {
    display: inline-flex;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.q-type-btn {
    appearance: none;
    border: 0;
    border-right: 1px solid #d8dee8;
    background: #fff;
    color: #606266;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 32px;
    cursor: pointer;
}
.q-type-btn:last-child {
    border-right: 0;
}
.q-type-btn:hover:not(:disabled) {
    color: #00A89B;
    background: #F0FBF9;
}
.q-type-btn.on {
    background: #00C2B3;
    color: #fff;
    font-weight: 650;
}
.q-type-btn:disabled {
    cursor: not-allowed;
    opacity: .65;
}
.q-item-tabs {
    margin-top: 4px;
}
.q-item-tabs .el-tabs__header {
    margin: 0 0 12px;
}
.q-item-tabs .el-tabs__item.is-active {
    color: #00C2B3;
    font-weight: 650;
}
.q-item-tabs .el-tabs__active-bar {
    background-color: #00C2B3;
}
.q-empty-hint {
    padding: 48px 16px;
    text-align: center;
    color: #8090a5;
    background: #f7f9fc;
    border: 1px dashed #e4eaf1;
    border-radius: 10px;
}
.q-opt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}
.q-opt-grid .el-form-item {
    margin-bottom: 10px;
}
@media (max-width: 640px) {
    .q-opt-grid {
        grid-template-columns: 1fr;
    }
}
