/* ========================================
   送审案件流转管理系统 - 全局样式表
   ======================================== */

/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
}

body {
    background: #f5f7fa;
    min-height: 100vh;
}

/* ========== 全局导航栏 ========== */
.global-nav {
    background: #2357a8;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    z-index: 999;
    position: sticky;
    top: 0;
}

.global-nav.fullscreen-hide {
    display: none;
}

.sys-name {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    flex: 1;
}

.version-tag {
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ========== 导航按钮 ========== */
.nav-btn {
    background: #1c4990;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.nav-btn:hover {
    background: #2a6ad2;
}

.nav-btn.active {
    background: #409eff;
    color: #fff;
}

/* ========== 页面容器 ========== */
.page {
    display: none;
    padding: 20px;
}

.page.show {
    display: block;
}

/* ========== 通用表单元素 ========== */
input, select, textarea {
    height: 36px;
    padding: 0 10px;
    border: 1px #ddd solid;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: #409eff;
    box-shadow: 0 0 3px rgba(64, 158, 255, 0.3);
}

textarea {
    height: auto;
    min-height: 60px;
    padding: 8px 10px;
    resize: vertical;
}

/* ========== 功能按钮 ========== */
.func-btn {
    padding: 6px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    margin: 0 2px;
    transition: background 0.2s, opacity 0.2s;
}

.func-btn:hover {
    opacity: 0.85;
}

.func-btn:active {
    opacity: 0.7;
}

.btn-blue { background: #2357a8; color: #fff; }
.btn-red { background: #f56c6c; color: #fff; }
.btn-green { background: #36ac63; color: #fff; }
.btn-orange { background: #ff7d00; color: #fff; }
.btn-gray { background: #909399; color: #fff; }

.btn-add {
    background: #2357a8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-add:hover {
    background: #1c4990;
}

/* ========== 登录页 ========== */
.login-wrap {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 420px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.login-card h2 {
    text-align: center;
    color: #2357a8;
    margin-bottom: 30px;
    font-weight: normal;
}

.login-item {
    margin-bottom: 20px;
}

.login-item input, .login-item select {
    width: 100%;
    height: 44px;
}

.login-submit {
    width: 100%;
    height: 44px;
    background: #2357a8;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.login-submit:hover {
    background: #1c4990;
}

.login-msg {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    min-height: 20px;
}

.login-msg.error { color: #f56c6c; }
.login-msg.success { color: #36ac63; }

/* ========== 用户信息栏 ========== */
.user-bar {
    background: #fff;
    padding: 8px 20px;
    margin-bottom: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.user-info {
    color: #333;
    font-size: 14px;
}

.user-info strong {
    color: #2357a8;
}

.btn-logout {
    background: #f56c6c;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: #e04848;
}

/* ========== 标签页 ========== */
.tab-box {
    margin: 8px 0 4px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab {
    display: inline-block;
    padding: 14px 28px;
    border: 1px #ccc solid;
    background: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 500;
}

.tab:hover {
    border-color: #2357a8;
    color: #2357a8;
}

.tab.active {
    background: #2357a8;
    color: #fff;
    border-color: #2357a8;
}

.tab-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    background: #36ac63;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
}
.tab-badge.red {
    background: #f53f3f;
}

/* ========== 搜索区域 ========== */
.search-box {
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-box input, .search-box select {
    min-width: 160px;
}

.search-box input[type="date"] {
    min-width: 140px;
}

/* ========== 新增按钮容器 ========== */
#addBtnWrap {
    display: block;
}

/* ========== 表格 ========== */
table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

th, td {
    border: 1px #eee solid;
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
}

th {
    background: #f0f4f9;
    color: #333;
    font-weight: bold;
}

tbody tr:hover {
    background: #f5f7fa;
}

/* ========== 拖拽排序样式 ========== */
tbody tr[draggable="true"]:active {
    opacity: 0.5;
    background: #e8f4ff;
}

tbody tr[draggable="true"] {
    transition: all 0.2s;
}

tbody tr[draggable="true"]:hover {
    background: #e8f4ff;
    cursor: grab;
}

tbody tr[draggable="true"]:active {
    cursor: grabbing;
}

/* ========== 急件样式 ========== */
.urgent-row {
    background: #fff2e6 !important;
}

.urgent-tag {
    display: inline-block;
    background: #ff7d00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    margin-left: 4px;
    vertical-align: middle;
}

/* ========== 备注列样式 ========== */
.remark-tag {
    display: inline-block;
    background: #e6a23c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.remark-cell {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== 退回标签 ========== */
.return-tag {
    display: inline-block;
    background: #f56c6c;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: normal;
    vertical-align: middle;
}

.completed-tag {
    display: inline-block;
    background: #67c23a;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: normal;
    vertical-align: middle;
}

/* ========== 数据看板 ========== */
.data-board {
    margin: 20px 0;
    padding: 18px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px #eee;
}

.data-board-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.data-board h3 {
    color: #2357a8;
    font-weight: normal;
}

.data-content {
    line-height: 1.8;
    color: #333;
    white-space: pre-line;
}

/* ========== 弹窗 ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content {
    width: 480px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.modal-content h3 {
    color: #2357a8;
    margin-bottom: 20px;
    font-size: 16px;
}

.modal-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
}

.modal-item label {
    width: 90px;
    color: #333;
    font-size: 14px;
    text-align: right;
    flex-shrink: 0;
}

.modal-item input[type="text"],
.modal-item input[type="password"],
.modal-item input[type="number"],
.modal-item select {
    flex: 1;
}

.modal-item input[type="radio"] {
    height: auto;
    margin: 0 4px 0 10px;
}

.modal-item textarea {
    flex: 1;
}

.modal-btn {
    margin-top: 10px;
    text-align: right;
    gap: 10px;
    display: flex;
    justify-content: flex-end;
}

/* ========== 后台管理 ========== */
.admin-login-area {
    width: 420px;
    margin: 30px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.admin-login-area h3 {
    text-align: center;
    color: #2357a8;
    margin-bottom: 30px;
}

.admin-panel {
    display: none;
}

.admin-panel.show {
    display: block;
}

.admin-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px #eee;
}

.admin-form h3 {
    color: #2357a8;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.form-row label {
    width: 80px;
    color: #333;
    text-align: right;
    flex-shrink: 0;
}

.form-row input, .form-row select {
    flex: 1;
}

/* ========== 数据统计 ========== */
.stat-filter {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-title {
    font-size: 20px;
    color: #2357a8;
    margin-bottom: 15px;
}

/* ========== 监控大屏 ========== */
.screen-page {
    background: #0f2447;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
    position: relative;
    padding: 0;
}

/* 覆盖 .page.show { display: block } 的优先级，只在激活时启用 flex 布局 */
.screen-page.show {
    display: flex;
    flex-direction: column;
}

.screen-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #274b88;
    padding: 15px 25px;
    flex-shrink: 0;
}

.screen-top h1 {
    font-size: 32px;
    color: #67c8ff;
    font-weight: normal;
}

.time-info {
    font-size: 17px;
    color: #d0e4ff;
}

.card-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    padding: 25px;
    overflow-x: auto;
    flex-shrink: 0;
}

/* 确保卡片不会收缩，并保持合适的宽度 */
.data-card {
    flex: 0 0 calc((100% - (22px * 6)) / 7.2); /* card-cyan占1.2份 + 其余6张各1份 = 7.2份 */
    min-width: 180px;
}

/* 当日累计交件卡片 - 蓝色高亮边框，微宽以容纳指标文本 */
.card-cyan {
    border-color: #00e5ff;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
    flex: 0 0 calc((100% - (22px * 6)) / 7.2 * 1.2); /* 比普通卡片宽20%，容纳指标文本 */
}

.data-card {
    background: #183667;
    border: 1px solid #396abb;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}

.card-title {
    font-size: 26px;
    color: #e6f0ff;
    margin-bottom: 12px;
    font-weight: bold;
}

.card-num {
    font-size: 38px;
    font-weight: bold;
    margin: 5px 0;
}

.card-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #c5d8f2;
}

.num-green { color: #39e662; }
.num-yellow { color: #ffd322; }
.num-red { color: #ff5555; }
.num-blue { color: #67c8ff; }
.num-cyan { color: #00e5ff; }
.time-green { color: #39e662; }
.time-yellow { color: #ffd322; }
.time-red { color: #ff5555; }
.time-blue { color: #67c8ff; }
.time-cyan { color: #00e5ff; }

/* ========== 当日累计交件指标样式 ========== */
.card-metrics {
    margin-top: 12px;
    text-align: center;
    padding: 0 4px;
}

.metric-item {
    font-size: 16px;
    color: #00e5ff;
    line-height: 1.8;
    padding: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-box {
    padding: 0 25px 25px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.box {
    background: #183667;
    border: 1px solid #396abb;
    border-radius: 10px;
    padding: 22px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.box-title {
    font-size: 22px;
    color: #67c8ff;
    border-left: 4px solid #00e5ff;
    padding-left: 8px;
    margin-bottom: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ========== 积压总数样式 ========== */
.backlog-total {
    font-size: 16px;
    color: #67c8ff;
    margin-left: 12px;
    font-weight: normal;
}

/* ========== 监控大屏表格容器滚动 ========== */
.box-table-container {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

.box-table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.box-table-container::-webkit-scrollbar-track {
    background: #0d2140;
    border-radius: 4px;
}

.box-table-container::-webkit-scrollbar-thumb {
    background: #396abb;
    border-radius: 4px;
}

.box-table-container::-webkit-scrollbar-thumb:hover {
    background: #4d7fd1;
}

.box table {
    background: #122a54;
    width: 100%;
    min-width: 900px;  /* 设置最小宽度，确保列宽不被过度压缩 */
    table-layout: fixed;  /* 使用固定布局，确保列宽严格按设定值显示 */
}

/* 确保表头固定 */
.box thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* 优化表格列宽 - 所有列强制单行显示 */
.box th:nth-child(1) { width: 100px; }  /* 当前环节 */
.box th:nth-child(2) { width: 60px; }   /* 序号 */
.box th:nth-child(3) { width: 120px; }  /* 所属银行 */
.box th:nth-child(4) { width: 100px; }  /* 借款人 */
.box th:nth-child(5) { 
    width: 150px;  /* 资料情况：固定宽度 */
    min-width: 120px;  /* 最小宽度 */
    max-width: 200px;  /* 最大宽度 */
}  
.box th:nth-child(6) { width: 100px; }  /* 备注 */
.box th:nth-child(7) { width: 150px; }  /* 齐资料时间 */
.box th:nth-child(8) { width: 120px; }  /* 积压时间 */

/* 所有列强制单行显示 */
.box td {
    white-space: nowrap;  /* 强制单行显示 */
    overflow: hidden;
    text-overflow: ellipsis;  /* 超出部分显示省略号 */
}

/* 资料情况列的特殊处理：内容过长时允许换行 */
.box td:nth-child(5) {
    white-space: nowrap;  /* 默认单行显示 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.box td.data-status-wrap {
    white-space: normal;  /* 允许换行 */
    word-wrap: break-word;  /* 自动换行 */
    text-overflow: initial;  /* 取消省略号 */
}

.box th {
    background: #244b8e;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 8px;
    border: 1px solid #396abb;
}

.box td {
    background: #122a54;
    color: #e0eaff;
    font-size: 16px;
    padding: 8px 8px;
    border: 1px solid #396abb;
    transition: background 0.3s ease;
}

.red-row {
    background: rgba(255, 80, 80, 0.28) !important;
}

.red-row td {
    color: #ffffff !important;
    font-weight: bold;
}

.screen-urgent-tag {
    display: inline-block;
    background: #ff4747;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
    box-shadow: 0 0 6px rgba(255, 71, 71, 0.6);
}

.empty-text {
    color: #94b8e8;
    font-size: 20px;
    text-align: center;
    margin-top: 90px;
}

/* ========== 全屏返回按钮 ========== */
.fullscreen-back-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 9999;
    background: #2357a8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.fullscreen-back-btn.show {
    display: block;
}

/* ========== 缺资料信息标注 ========== */
.missing-info {
    display: inline-block;
    background: #fff2e6;
    color: #e07b30;
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 3px;
    margin-top: 3px;
    border: 1px solid #fcd5b0;
}

/* ========== 通知提示 ========== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    z-index: 10000;
    animation: toastIn 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.toast.success { background: #36ac63; }
.toast.error { background: #f56c6c; }
.toast.warning { background: #ff7d00; }
.toast.info { background: #409eff; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== 空状态 ========== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 15px;
}

/* ========== 分页 ========== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    margin-top: 10px;
}

.pagination-container button {
    padding: 6px 15px;
    border: 1px solid #dee2e6;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s;
}

.pagination-container button:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #2357a8;
    color: #2357a8;
}

.pagination-container button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-container select {
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
}

.pagination-container span {
    font-size: 13px;
    color: #666;
}

/* ========== 日期筛选器 ========== */
.search-box input[type="date"] {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    height: 32px;
}

.search-box span {
    font-size: 13px;
    color: #666;
}

/* ========== 日期快捷按钮 ========== */
.date-shortcuts {
    display: inline-flex;
    gap: 10px;
    margin-left: 10px;
}

.shortcut-btn {
    padding: 6px 16px;
    border: 1px solid #2357a8;
    background: #fff;
    color: #2357a8;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.shortcut-btn:hover {
    background: #2357a8;
    color: #fff;
}

.shortcut-btn.active {
    background: #2357a8;
    color: #fff;
}

/* ========== 重置按钮 ========== */
.btn-reset {
    padding: 6px 16px;
    border: 1px solid #dc3545;
    background: #dc3545;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-reset:hover {
    background: #c82333;
    border-color: #bd2130;
}

/* ========== 角色标签 ========== */
.role-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    vertical-align: middle;
}

.role-tag.clerk { background: #e6f0ff; color: #2357a8; }
.role-tag.maker { background: #fff2e6; color: #ff7d00; }
.role-tag.bank { background: #e6ffe6; color: #36ac63; }
.role-tag.admin { background: #ffe6e6; color: #f56c6c; }
/* 新增：三方专员（颜色同整件文员） */
.role-tag.third-clerk { background: #fff2e6; color: #ff7d00; }
/* 新增：三方经理（颜色同管理员/签约经理） */
.role-tag.third-manager { background: #ffe6e6; color: #f56c6c; }

/* ========== 退回高亮 ========== */
.highlight-return {
    background: #fff1f0 !important;
    color: #f5222d !important;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 3px;
}

/* ========== 更新日志 ========== */
.changelog-list {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.changelog-item {
    border-left: 3px solid #2357a8;
    padding-left: 16px;
    margin-bottom: 24px;
    position: relative;
}

.changelog-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2357a8;
    border: 2px solid #fff;
}

.changelog-item.latest {
    border-left-color: #ff7d00;
}

.changelog-item.latest::before {
    background: #ff7d00;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.changelog-version {
    font-size: 18px;
    font-weight: bold;
    color: #2357a8;
}

.changelog-item.latest .changelog-version {
    color: #ff7d00;
}

.changelog-time {
    font-size: 13px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 10px;
}

.changelog-badge {
    font-size: 11px;
    background: #ff7d00;
    color: #fff;
    padding: 1px 8px;
    border-radius: 8px;
}

/* 更新日志页面专用浅色背景 */
#changelog .box {
    background: #fff;
    border: 1px solid #ddd;
}

#changelog .box-title {
    color: #2357a8;
}

.changelog-content {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

.changelog-content li {
    margin-bottom: 4px;
    list-style-type: disc;
    margin-left: 18px;
}

/* ========== 澶囨淇℃伅 ========== */
.beian {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    background: rgba(255,255,255,0.95);
    text-align: center;
    flex-wrap: wrap;
    z-index: 9999;
}
.beian a {
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.beian a:hover {
    color: #2357a8;
}
.beian-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}