@charset "UTF-8";
/* 全局变量定义 */
:root {
    --sidebar-width: 260px;
    --primary-color: #1954b9;
    --primary-blue-alt: #165dff;
    --success-color: #00b42a;
    --danger-color: #f53f3f;
    --text-main: #2d3748;
    --text-gray: #718096;
    --border-light: #e2e8f0;
    --bg-page: #f7f8fa;
    --bg-white: #ffffff;
}

/* 全局重置 清除默认边距、盒模型统一 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    display: flex;
}
a {
    text-decoration: none;
}
a:link,
a:visited,
a:hover,
a:active {
    color: #000000;
    text-decoration: none;
}
.clear {
    clear: both;
}
button {
    transition: all 0.2s ease;
    cursor: pointer;
}
button:hover {
    opacity: 0.92;
}
/* 主内容区留出侧边栏宽度 */
main {
            margin-left: 260px;
            min-height: 100vh;
            padding: 24px;
            background: #f7f8fa;
}
/* ========== 左侧侧边栏 ========== */
 /* 侧边栏基础 */
        .sidebar {
            width: 260px;
            background: #fff;
            border-right: 1px solid var(--border-light);
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .sidebar-header-title {
            padding: 32px 24px 20px;
            border-bottom: 1px dashed #94c5f8;
        }
        .sidebar-header-title h1 {
            font-size: 28px;
            color: var(--primary-color);
            font-weight: 700;
        }
        .sidebar-header-title p {
            font-size: 14px;
            color: #666;
            margin-top: 6px;
        }
        .sidebar-menu {
            flex: 1;
            padding: 20px 12px;
            overflow-y: auto;
        }
        /* 一级无折叠菜单 */
        .menu-single-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 12px;
            border-radius: 8px;
            font-size: 15px;
            margin-bottom: 4px;
            color: var(--text-gray);
            cursor: pointer;
            transition: background 0.2s;
        }
        .menu-single-item:hover {
            background: var(--bg-hover);
        }
        /* 一级菜单选中 */
        .menu-single-item.active {
            background: var(--bg-active);
            color: var(--primary-color);
            font-weight: 500;
        }
        /* 折叠一级菜单容器 */
        .menu-toggle-checkbox {
            display: none;
        }
        .menu-toggle-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 12px;
            border-radius: 8px;
            font-size: 15px;
            margin-bottom: 4px;
            color: var(--text-gray);
            gap: 12px;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }
        .menu-toggle-label:hover {
            background: var(--bg-hover);
        }
        /* 折叠一级菜单选中 */
        .menu-toggle-wrap.active .menu-toggle-label {
            background: var(--bg-active);
            color: var(--primary-color);
            font-weight: 500;
        }
        .menu-arrow {
            font-size: 14px;
            color: #999;
            transition: transform 0.2s ease;
        }
        .menu-toggle-checkbox:checked ~ .menu-toggle-label .menu-arrow {
            transform: rotate(180deg);
            color: var(--primary-color);
        }
        /* 子菜单容器 */
        .sub-menu-wrap {
            position: relative;
            padding-left: 40px;
            margin-bottom: 8px;
            display: none;
        }
        .menu-toggle-checkbox:checked ~ .sub-menu-wrap {
            display: block;
        }
        .sub-menu-wrap::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #e5e7eb;
        }
        .sub-menu-item {
            position: relative;
            padding: 10px 12px;
            font-size: 14px;
            cursor: pointer;
            margin: 3px 0;
            color: #555;
            border-radius: 6px;
            z-index: 2;
            transition: background 0.2s;
        }
        .sub-menu-item:hover:not(.active) {
            background: #f7f9fc;
        }
        /* 二级子菜单选中 */
        .sub-menu-item.active {
            color: var(--primary-color);
            font-weight: 500;
            background-color: var(--bg-active);
        }
        .iconfont {
            font-size: 18px;
        }
        /* 底部用户面板 */
        .sidebar-footer-wrap {
            padding: 24px 16px;
            border-top: 1px dashed #94c5f8;
        }
        .user-card {
            background: #f9faff;
            border-radius: 12px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
        }
        .user-info h4 {
            font-size: 16px;
            color: #222;
        }
        .user-info p {
            font-size: 12px;
            color: #888;
            margin-top: 2px;
        }
/* ========== 侧边底部用户面板 ========== */
.sidebar-footer-wrap {
    padding: 24px 16px;
    border-top: 1px dashed #94c5f8;
}
.user-card {
    background: #f9faff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.user-avatar {
    width: 68px;
    height: 68px;
    border-radius: 4px;
    background: #f0f0f0;
}
.user-info h3 {
    font-size: 24px;
    color: #111;
    font-weight: 600;
    line-height: 1.1;
}
.user-info p {
    font-size: 16px;
    color: #aaa;
}
.footer-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 8px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 8px;
}
.footer-menu-item:hover {
    background: #f2f7ff;
}
.footer-menu-item svg {
    width: 22px;
    height: 22px;
    fill: #444;
}

/* ========== 主内容区域（已修复重复定义冲突） ========== */
.main-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.page-header {
    height: 64px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 24px;
    flex-shrink: 0;
}
.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-search {
    width: 280px;
}
.header-search input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-page);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}
.header-search input:focus {
    box-shadow: 0 0 0 2px #bee3f8;
}
.breadcrumb-item {
    font-size: 14px;
    color: #666;
}
.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}
.breadcrumb-item a:hover {
    color: var(--primary-color);
}
.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}
.breadcrumb-sep {
    color: #bbb;
}
.header-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
    cursor: pointer;
    position: relative;
}
.header-icon-btn .dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: var(--danger-color);
    border-radius: 50%;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f0fff4;
    cursor: pointer;
}
.brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #68d391;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
/* 内容容器底部预留内边距，避开底部固定栏，防止遮挡 */
.page-content {
    flex: 1;
    padding: 24px 24px 88px 24px;
    overflow-y: auto;
}
/* 顶部标题栏 */
.page-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.page-title-bar h1 {
    font-size: 22px;
    color: #1f2937;
    font-weight: 600;
}
.page-title-bar p {
    color: #6b7280;
    margin-top: 4px;
}
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stats-card-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.stat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}
.stat-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-trend.up {
    font-size: 13px;
    color: var(--success-color);
}
.stat-trend.down {
    font-size: 13px;
    color: var(--danger-color);
}
.table-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}
.table-filter-bar {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.filter-tab {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
.filter-tab.active {
    background: var(--primary-color);
    color: white;
}
.filter-tab:not(.active) {
    background: var(--bg-page);
    color: #4a5568;
}
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}
thead tr {
    background: var(--bg-page);
}
th, td {
    vertical-align: middle;
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid #edf2f7;
}
th {
    font-weight: 600;
    color: #4a5568;
}
.table-card table th:first-child,
.table-card table td:first-child {
    text-align: left;
}
.table-card table th:not(:first-child),
.table-card table td:not(:first-child) {
    text-align: center;
}
.table-thumb {
    width: 100px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    background: #cbd5e0;
}
/* 操作单元格：强制单行，解决换行错位 */
.cell-action {
    white-space: nowrap;
}

/* ========== 操作栏统一按钮样式（全局统一） ========== */
.op-link {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin: 0 5px;
    background: transparent;
    border: none;
}
.btn-primary-solid {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 4px 11px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    display: inline-block;
    margin: 0 5px;
}
.btn-danger-outline {
    background-color: #ffffff;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
}

/* 状态标签 */
.tag-pending {
    background-color: #e8f0fe;
    color: var(--primary-color);
    border: none;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 13px;
}
.tag-normal {
    background-color: #e6f7ef;
    color: var(--success-color);
    border: none;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}
.tag-freeze {
    background-color: #f2f3f5;
    color: #606266;
    border: none;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 13px;
}
.text-red {
    color: var(--danger-color);
}
.text-link {
    color: var(--primary-color);
    font-size: 13px;
    margin-top: 4px;
    word-break: break-all;
}
.tag-live {
    background: #c6f6d5;
    color: #22543d;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}
.tag-expire {
    background: #fed7d7;
    color: #742a2a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}
.switch-toggle {
    width: 40px;
    height: 20px;
    border-radius: 20px;
    background: #cbd5e0;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.switch-toggle.on {
    background: var(--primary-color);
}
.switch-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.2s;
}
.switch-toggle.on::after {
    left: 22px;
}
.table-action-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: 10px;
    font-size: 16px;
}
.table-action-btn.del {
    color: var(--danger-color);
}
.table-pagination {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-gray);
}
.page-buttons {
    display: flex;
    gap: 6px;
}
.page-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-light);
}
.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.footer-copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #a0aec0;
}

/*===== 新闻公告页面私有样式 =====*/
.page-title-wrap h1 {
    font-size: 22px;
    color: #1d2129;
    font-weight: 600;
    margin-bottom: 6px;
}
.page-title-wrap p {
    font-size: 14px;
    color: #86909c;
}
.btn-add {
    background-color: var(--primary-blue-alt);
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-add:hover {
    background-color: #0e48d9;
}
.filter-bar {
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
.search-input-wrap {
    position: relative;
    width: 420px;
}
.search-input-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #86909c;
}
.search-input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    font-size: 14px;
    background-color: #ffffff;
    outline: none;
}
.search-input:focus {
    border-color: var(--primary-blue-alt);
}
.filter-right-btns {
    display: flex;
    gap: 16px;
}
.icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #dcdfe6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.icon-btn:hover {
    background: #f2f3f5;
}
.table-wrap {
    background: #ffffff;
    border: 1px solid #dcdfe6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}
thead tr {
    background-color: #f2f3f5;
}
th, td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e5e6eb;
}
th {
    color: #4e5969;
    font-weight: 500;
}
td {
    color: #1d2129;
}
.tag-classify {
    padding: 4px 10px;
    background: #e5e6eb;
    border-radius: 4px;
    font-size: 13px;
    color: #4e5969;
    display: inline-block;
}
.status-publish {
    color: var(--success-color);
}
.status-timing {
    color: var(--primary-blue-alt);
}
.status-draft {
    color: #86909c;
}
.operate-btn {
    background: transparent;
    border: none;
    color: var(--primary-blue-alt);
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px;
}
.operate-btn.del {
    color: var(--danger-color);
}
.pagination-bar {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4e5969;
    border-top: 1px solid #e5e6eb;
}
.page-btn-group {
    display: flex;
    gap: 6px;
}
.page-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.page-btn.active {
    background: var(--primary-blue-alt);
    color: #fff;
    border-color: var(--primary-blue-alt);
}
.page-btn:disabled {
    cursor: not-allowed;
    color: #c9cdd4;
}

/*===== 关于我们页面私有样式 =====*/
.container-wrap {
    width: 100%;
    gap: 20px;
}
.left-main {
    width: 70%;
    float: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card {
    background: #fff;
    border: 1px solid #e2e5f0;
    border-radius: 8px;
    padding: 20px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}
.editor-toolbar {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}
.tool-icon {
    cursor: pointer;
    color: #666;
}
.btn-text-edit {
    color: var(--primary-blue-alt);
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.article-content h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.article-content p {
    line-height: 1.7;
    margin-bottom: 16px;
}
.article-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 16px;
}
.info-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 20px;
}
.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.btn-primary-sm {
    background: var(--primary-blue-alt);
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.partner-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.partner-item {
    width: 130px;
    height: 90px;
    border: 1px solid #e2e5f0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}
.partner-add {
    border-style: dashed;
}
.link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.btn-group-inline {
    display: flex;
    gap: 10px;
}
.btn-gray-sm {
    border: 1px solid #d0d3dc;
    background: #f5f6fa;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}
table.link-table {
    width: 100%;
    border-collapse: collapse;
}
.link-table th, .link-table td {
    border: 1px solid #e2e5f0;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
}
.link-table th {
    background: #f7f8fc;
}
.tag-show {
    background: #dcf7e8;
    color: #009944;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}
.tag-hide {
    background: #e9ebf0;
    color: #666;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}
.operate-link {
    color: var(--primary-blue-alt);
    cursor: pointer;
    margin: 0 4px;
}
.operate-del {
    color: var(--danger-color);
    cursor: pointer;
}
.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    font-size: 13px;
    color: #666;
}
.page-btns {
    display: flex;
    gap: 5px;
}
.page-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d0d3dc;
    border-radius: 4px;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: #fff;
}
.page-btn.active {
    background: var(--primary-blue-alt);
    color: #fff;
    border-color: var(--primary-blue-alt);
}
.right-sidebar {
    width: 29%;
    float: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.side-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
}
.btn-update {
    color: var(--primary-blue-alt);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
}
.address-row {
    margin-bottom: 14px;
}
.address-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.address-value-box {
    border: 1px solid #e2e5f0;
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.two-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.map-box {
    width: 100%;
    height: 140px;
    border: 1px solid #e2e5f0;
    border-radius: 6px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f7f8fc;
}
.map-desc {
    position: absolute;
    bottom: 6px;
    font-size: 12px;
    color: #888;
}
.lang-item {
    border: 1px solid #e2e5f0;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.lang-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tag-published {
    background: #dcf7e8;
    color: #009944;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 10px;
}
.lang-unopen {
    background: #f0f1f7;
    border-style: dashed;
    color: #888;
}
.btn-open-trans {
    color: var(--primary-blue-alt);
    font-size: 12px;
    cursor: pointer;
}
/* 搜索筛选栏 */
.search-card {
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    background: #ffffff;
}
.search-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}
.search-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.search-label {
    font-size: 14px;
    color: #444;
}
.search-input {
    width: 240px;
    padding: 8px 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
}
.search-select {
    width: 220px;
    padding: 8px 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}
/* 全局页面基础样式 */
.top-info-card {
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: #ffffff
}
.status-tag-pending {
    background: #fff7e6;
    color: #fa8c16;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    margin-left: 10px;
}
.two-col-wrap {
    display: grid;
    grid-template-columns: 65% 33%;
    gap: 2%;
    margin-bottom: 20px;
}
.info-card {
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:8px;
}
.info-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom:16px;
}
.info-item-full {
    grid-column: 1 / -1;
}
.info-item .label {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}
.info-item .value {
    font-size: 15px;
    color: #222;
    word-break: break-all;
}
.tag-checked {
    background:#e6f7ef;
    color:#00b42a;
    font-size:12px;
    padding:2px 6px;
    border-radius:4px;
    margin-left:8px;
}
.tag-audit {
    background:#e8f0fe;
    color:#1954b9;
    font-size:12px;
    padding:2px 6px;
    border-radius:4px;
    margin-left:8px;
}
.link-right {
    color:#1954b9;
    cursor:pointer;
    font-size:14px;
}
.file-top-bar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}
.file-top-bar button {
    border:1px solid #dcdfe6;
    background:#fff;
    padding:5px 12px;
    border-radius:4px;
    cursor:pointer;
    margin-left:8px;
}
.file-list-left {
    width:220px;
    border:1px solid #e5e6eb;
    border-radius:6px;
}
.file-item {
    padding:10px 12px;
    border-bottom:1px solid #eee;
    font-size:14px;
    cursor:pointer;
}
.file-item.active {
    background:#e8f0fe;
    color:#1954b9;
}
.file-preview-area {
    flex:1;
    background:#f5f7fa;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:240px;
}
.file-wrap-row {
    display:flex;
    gap:16px;
}

/* ===================== 底部操作栏：仅在主内容区域右下角固定，不覆盖左侧侧边栏 ===================== */
.bottom-operate-bar {
    position: fixed;
    left: var(--sidebar-width);
    right: 0;
    bottom: 0;
    padding: 16px 24px;
    background: #ffffff;
    border-top: 1px solid #dcdfe6;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    z-index: 99;
    box-sizing: border-box;
}
.todo-tag {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}