/* /Components/Account/Pages/AssistanceRecords.razor.rz.scp.css */
/* ================== 1. 全局布局 ================== */
[b-ildi4igd39] body,
.mobile-wrapper[b-ildi4igd39] {
    background-color: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    padding-bottom: 80px; /* 避让底部导航 */
    min-height: 100vh;
}

.mobile-wrapper[b-ildi4igd39] {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px;
}

/* ================== 2. 顶部 Tab 切换 ================== */
.tabs-container[b-ildi4igd39] {
    display: flex;
    background: white;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.tab-item[b-ildi4igd39] {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

    /* 选中状态：橙色背景，白色文字 */
    .tab-item.active[b-ildi4igd39] {
        background: linear-gradient(135deg, #ff9966, #ff5e62);
        color: white;
        box-shadow: 0 2px 6px rgba(255, 94, 98, 0.3);
    }

/* ================== 3. 列表卡片通用样式 ================== */
.records-list[b-ildi4igd39] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.record-card[b-ildi4igd39] {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: relative;
    border-left: 4px solid transparent; /* 预留左侧状态条 */
}

/* 头部行：名字 + 状态 */
.card-header-row[b-ildi4igd39] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.user-name[b-ildi4igd39] {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}

/* 状态标签 */
.status-badge[b-ildi4igd39] {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.status-gray[b-ildi4igd39] {
    color: #999;
    background: #f0f0f0;
}
/* 待打款 */
.status-orange[b-ildi4igd39] {
    color: #e67e22;
    background: #fdf2e9;
}
/* 待核查 */
.status-green[b-ildi4igd39] {
    color: #27ae60;
    background: #e8f8f5;
}
/* 已完成 */
.status-red[b-ildi4igd39] {
    color: #c0392b;
    background: #fdedec;
}
/* 已驳回 */

/* 信息行 */
.card-info-row[b-ildi4igd39] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.label[b-ildi4igd39] {
    color: #999;
}

.value[b-ildi4igd39] {
    color: #555;
    font-weight: 500;
}

    /* 修改金额样式，使其更醒目 */
    .value.money[b-ildi4igd39] {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        font-weight: 800; /* 加粗 */
        font-size: 1.2rem; /* 字体加大 */
        letter-spacing: 0.5px;
    }

/* 底部按钮行 */
.card-action-row[b-ildi4igd39] {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    text-align: right;
}

/* 列表按钮 */
.btn-check[b-ildi4igd39] {
    background: linear-gradient(135deg, #f39c12, #d35400);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-view[b-ildi4igd39] {
    background: white;
    border: 1px solid #ddd;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.btn-disabled[b-ildi4igd39] {
    background: #f5f5f5;
    color: #ccc;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ================== 4. 历史记录特有样式 ================== */
.history-card .date-text[b-ildi4igd39] {
    font-size: 0.8rem;
    color: #bbb;
}

/* 收/支 小标签 */
.tag-in[b-ildi4igd39], .tag-out[b-ildi4igd39] {
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 3px;
    margin-right: 6px;
    color: white;
    font-weight: normal;
}

.tag-in[b-ildi4igd39] {
    font-size: 0.75rem;
    padding: 2px 5px;
    border-radius: 4px;
    margin-right: 6px;
    color: white;
    font-weight: normal;
    background-color: #27ae60; /* 绿色背景 */
    display: inline-block;
    line-height: 1.2;
}
/* 收款：绿 */
.tag-out[b-ildi4igd39] {
    background-color: #e74c3c;
}
/* 支出：红 */

.text-success[b-ildi4igd39] {
    color: #27ae60 !important;
}

/* 确保 text-danger 优先级够高 */
.text-danger[b-ildi4igd39] {
    color: #d63031 !important; /* 鲜艳的红色 */
}

/* ================== 5. 弹窗样式 (复用 DailyTask 风格) ================== */
.custom-modal-backdrop[b-ildi4igd39] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-content[b-ildi4igd39] {
    background: white;
    width: 90%;
    max-width: 400px;
    height: 80vh;
    max-height: 600px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: zoomIn-b-ildi4igd39 0.2s ease-out;
}

@keyframes zoomIn-b-ildi4igd39 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 头部 */
.modal-header-simple[b-ildi4igd39] {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: relative;
    flex-shrink: 0;
}

.modal-title[b-ildi4igd39] {
    font-weight: bold;
    font-size: 1rem;
}

.btn-close-simple[b-ildi4igd39] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: #999;
}

/* 中间内容 (图片可滚动) */
.modal-body-full[b-ildi4igd39] {
    flex: 1;
    overflow-y: auto;
    background: #000; /* 图片背景黑，突出内容 */
    display: flex;
    flex-direction: column;
    position: relative;
}

.proof-container[b-ildi4igd39] {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.proof-img[b-ildi4igd39] {
    width: 100%;
    height: auto;
    display: block;
}

.no-img-text[b-ildi4igd39] {
    color: #999;
    font-size: 0.9rem;
}

/* 悬浮在图片下方的金额提示条 */
.amount-check[b-ildi4igd39] {
    background: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* 底部操作区 (双按钮) */
.modal-footer-audit[b-ildi4igd39] {
    padding: 15px;
    background: white;
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-audit[b-ildi4igd39] {
    flex: 1;
    border: none;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* 驳回按钮 (灰色/红色文字) */
.btn-reject[b-ildi4igd39] {
    background: #f5f5f5;
    color: #c0392b;
    border: 1px solid #e0e0e0;
}

/* 确认按钮 (橙色渐变) */
.btn-confirm[b-ildi4igd39] {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 94, 98, 0.3);
}

/* 详情页的底部 */
.modal-footer-simple[b-ildi4igd39] {
    padding: 15px;
    background: white;
    text-align: center;
    flex-shrink: 0;
}

.btn-close-large[b-ildi4igd39] {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
}

/* 详情页 Tab */
.detail-tabs[b-ildi4igd39] {
    display: flex;
    background: white;
    border-bottom: 1px solid #eee;
}

    .detail-tabs button[b-ildi4igd39] {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 0;
        font-size: 0.9rem;
        color: #666;
        border-bottom: 2px solid transparent;
    }

        .detail-tabs button.active[b-ildi4igd39] {
            color: #ff5e62;
            border-bottom-color: #ff5e62;
            font-weight: bold;
        }

/* 状态提示 */
.empty-state[b-ildi4igd39], .state-text[b-ildi4igd39] {
    text-align: center;
    padding: 40px 0;
    color: #999;
}
/* /Components/Account/Pages/DailyTask.razor.rz.scp.css */
/* ================== 1. 全局布局与背景 ================== */
[b-h4gpzvleer] body,
.mobile-wrapper[b-h4gpzvleer] {
    background-color: #f0f2f5; /* 高级灰背景 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    padding-bottom: 80px; /* 给底部导航留出空间 */
}

.mobile-wrapper[b-h4gpzvleer] {
    max-width: 600px; /* 桌面端限制宽度，模拟手机 */
    margin: 0 auto;
    padding: 16px;
    min-height: 100vh;
}

/* ================== 2. 顶部统计卡片 (Dashboard) ================== */
.stats-card[b-h4gpzvleer] {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

    /* 顶部装饰条 */
    .stats-card[b-h4gpzvleer]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff9966, #ff5e62);
    }

.stats-header[b-h4gpzvleer] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stats-title[b-h4gpzvleer] {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

.stats-time[b-h4gpzvleer] {
    font-size: 0.75rem;
    color: #636e72;
    background: #f1f2f6;
    padding: 4px 10px;
    border-radius: 12px;
}

.stats-main-row[b-h4gpzvleer] {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.stats-total-amount[b-h4gpzvleer] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2d3436;
    background: linear-gradient(45deg, #2d3436, #636e72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-count[b-h4gpzvleer] {
    margin-left: auto;
    font-size: 0.85rem;
    color: #b2bec3;
}

.stats-divider[b-h4gpzvleer] {
    height: 1px;
    background: linear-gradient(90deg, transparent, #eee, transparent);
    margin: 10px 0 15px 0;
}

.stats-sub-row[b-h4gpzvleer] {
    display: flex;
    justify-content: space-between;
}

.stats-label[b-h4gpzvleer] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 4px;
}

.stats-value-box[b-h4gpzvleer] {
    font-size: 0.8rem;
    color: #636e72;
}

.val-accumulated[b-h4gpzvleer] {
    color: #e17055;
    font-weight: 700;
    font-size: 0.95rem;
}

.val-verified[b-h4gpzvleer] {
    color: #00b894;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ================== 3. 标题装饰 ================== */
.section-title[b-h4gpzvleer] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0.9;
}

.title-text[b-h4gpzvleer] {
    margin: 0 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #2d3436;
    letter-spacing: 1px;
}

.dot[b-h4gpzvleer] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .dot.yellow[b-h4gpzvleer] {
        background-color: #ffeaa7;
    }

    .dot.orange[b-h4gpzvleer] {
        background-color: #ff7675;
    }

/* ================== 4. 任务列表与卡片 (修改部分) ================== */
.task-grid[b-h4gpzvleer] {
    display: grid;
    grid-template-columns: 1fr; /* 【修改】改为单列竖排 */
    gap: 16px; /* 间距加大一点 */
}

.promo-card[b-h4gpzvleer] {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: row; /* 【修改】改为横向布局 */
    align-items: center;
    justify-content: space-between; /* 两端对齐 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s;
    height: auto;
}

    .promo-card:active[b-h4gpzvleer] {
        transform: scale(0.98);
    }

.promo-img-box[b-h4gpzvleer] {
    width: 48px;
    height: 48px;
    background: #e3f2fd;
    color: #0984e3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* 【修改】去掉底部间距 */
    margin-right: 15px; /* 【修改】增加右侧间距 */
    flex-shrink: 0; /* 防止图标被挤压 */
}

    .promo-img-box svg[b-h4gpzvleer] {
        width: 24px;
        height: 24px;
    }

/* 配合 Razor 中的 promo-info-col 容器 */
[b-h4gpzvleer] .promo-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1; /* 占满中间空间 */
    margin-right: 10px;
    overflow: hidden;
}

.promo-name[b-h4gpzvleer] {
    font-size: 1rem; /* 稍微加大 */
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 2px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; /* 【修改】左对齐 */
}

.promo-desc[b-h4gpzvleer] {
    font-size: 0.75rem;
    color: #b2bec3;
    margin-bottom: 4px;
    text-align: left; /* 【修改】左对齐 */
}

.promo-price[b-h4gpzvleer] {
    font-size: 1.1rem;
    font-weight: 800;
    color: #d63031;
    margin-bottom: 0; /* 【修改】去掉底部间距 */
    text-align: left; /* 【修改】左对齐 */
}

/* 列表内的小按钮 */
.btn-action[b-h4gpzvleer] {
    width: 88px; /* 【修改】固定宽度，不占满一行 */
    border: none;
    padding: 8px 0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; /* 防止按钮变形 */
}

.btn-red[b-h4gpzvleer] {
    background: linear-gradient(135deg, #ff7675, #d63031);
    color: white;
    box-shadow: 0 4px 10px rgba(214, 48, 49, 0.3);
}

.btn-disabled[b-h4gpzvleer] {
    background: #dfe6e9;
    color: #b2bec3;
    cursor: not-allowed;
}

/* ================== 5. 全新弹窗设计 (大图模式) ================== */

/* 遮罩层 */
.custom-modal-backdrop[b-h4gpzvleer] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* 深色背景突出主体 */
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 弹窗主体容器 */
.custom-modal-content[b-h4gpzvleer] {
    background: white;
    width: 90%;
    max-width: 400px;
    height: 80vh; /* 占屏幕高度的80% */
    max-height: 600px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: zoomIn-b-h4gpzvleer 0.25s ease-out;
}

@keyframes zoomIn-b-h4gpzvleer {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- 弹窗头部 (极简) --- */
.modal-header-simple[b-h4gpzvleer] {
    flex-shrink: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-title[b-h4gpzvleer] {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-close-simple[b-h4gpzvleer] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 2. 主体：改为可滚动模式 --- */
.modal-body-full[b-h4gpzvleer] {
    flex: 1; /* 占据剩余空间 */
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto; /* 允许垂直滚动 */
    overflow-x: hidden; /* 禁止水平滚动 */
    background-color: #f5f5f5; /* 灰色背景，区分图片和边框 */
    -webkit-overflow-scrolling: touch; /* 让手机滚动更丝滑 */
}

/* 二维码容器：不再强制居中，而是让图片自然撑开 */
.qr-full-container[b-h4gpzvleer] {
    width: 100%;
    min-height: 100%; /* 保证内容少时也能撑开 */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0; /* 去掉内边距，让图片无缝连接 */
}

/* 图片核心样式：宽度100%，高度自适应 */
.qr-img-full[b-h4gpzvleer] {
    width: 100%; /* 强制宽度占满 */
    height: auto; /* 高度自动，保持比例 */
    display: block;
    border-bottom: 1px solid #eee; /* 图片底部加条线，防止和大白底混淆 */
}

/* 如果图片加载失败显示的占位 */
.qr-placeholder[b-h4gpzvleer] {
    padding: 50px;
    color: #ccc;
    text-align: center;
}

/* 确保 DailyTask.razor.css 里有这个背景色设置 */
.modal-footer-simple[b-h4gpzvleer] {
    flex-shrink: 0;
    padding: 15px 20px;
    background: white; /* 必须是白色背景，不然会透出下面的图片 */
    border-top: 1px solid #f0f0f0;
    text-align: center;
    z-index: 10; /* 确保层级比滚动的图片高 */
}

/* 底部大按钮 */
.btn-pay-action[b-h4gpzvleer] {
    width: 100%;
    background: linear-gradient(135deg, #ff7675, #d63031);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
    cursor: pointer;
    transition: transform 0.1s;
}

    .btn-pay-action:active[b-h4gpzvleer] {
        transform: scale(0.98);
    }

    .btn-pay-action:disabled[b-h4gpzvleer] {
        background: #dfe6e9;
        box-shadow: none;
        cursor: not-allowed;
    }

.amount-tag[b-h4gpzvleer] {
    margin-left: 8px;
    font-size: 1.2rem;
}

.safe-tip[b-h4gpzvleer] {
    font-size: 12px;
    color: red !important; /* 强制大红色 */
    margin-top: 8px;
    line-height: 2; /* 因为你有两行字，增加一点行高防止挤在一起 */
    font-weight: bold; /* 建议加粗，起到警示作用 */
}

/* --- 上传界面样式 --- */
.upload-step-compact[b-h4gpzvleer] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.step-title[b-h4gpzvleer] {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.upload-area-compact[b-h4gpzvleer] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.upload-label[b-h4gpzvleer] {
    flex: 1;
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    background: #fcfcfc;
}

.preview-box-compact[b-h4gpzvleer] {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.preview-img[b-h4gpzvleer] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-reselect[b-h4gpzvleer] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* 状态提示 */
.empty-state[b-h4gpzvleer] {
    text-align: center;
    padding: 40px 0;
    color: #b2bec3;
}

.loading-state[b-h4gpzvleer] {
    text-align: center;
    padding: 40px 0;
    color: #0984e3;
}
/* /Components/Account/Pages/Manage/EnterpriseProfile.razor.rz.scp.css */
/* 收款码坑位容器：宽度最大1000px，高度自适应 */
.qr-upload-container[b-c4ezro5xhg] {
    max-width: 1000px; /* 宽度限制最大1000px（可按需调整） */
    height: auto; /* 高度自适应 */
    position: relative;
    margin-top: 8px;
}

/* 未上传时的坑位：填充容器，高度自适应 */
.qr-placeholder[b-c4ezro5xhg] {
    width: 100%;
    min-height: 200px; /* 最小高度，避免坑位太窄 */
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s;
}

    .qr-placeholder:hover[b-c4ezro5xhg] {
        border-color: #0d6efd;
        background-color: #f0f7ff;
    }

/* 上传按钮 */
.qr-upload-btn[b-c4ezro5xhg] {
    color: #666;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

/* 提示文字：修改建议尺寸说明 */
.qr-hint[b-c4ezro5xhg] {
    margin: 12px 0 0 0;
    font-size: 14px;
    color: #999;
}

/* 已上传预览容器：自适应尺寸 */
/* 已上传预览容器（确保是相对定位，作为子元素的定位基准） */
.qr-preview[b-c4ezro5xhg] {
    position: relative; /* 关键：必须加这个，否则标签会相对于整个页面定位 */
    border-radius: 8px;
    overflow: hidden;
    max-width: 1000px;
}

/* 预览图片：保持比例，避免变形 */
.qr-image[b-c4ezro5xhg] {
    width: 100%; /* 宽度填满容器（最大1000px） */
    height: auto; /* 高度自适应 */
    object-fit: contain; /* 完整显示图片，不裁剪、不变形 */
}

/* 保留删除按钮样式（已强化） */
.qr-delete-btn[b-c4ezro5xhg] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #dc3545;
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

    .qr-delete-btn:hover[b-c4ezro5xhg] {
        background-color: #bb2d3b;
        transform: scale(1.1);
    }

.qr-loading[b-c4ezro5xhg] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}



/* 审核状态标签（调整为左上角） */
.qr-status[b-c4ezro5xhg] {
    position: absolute; /* 绝对定位 */
    top: 6px; /* 距离容器顶部6px */
    left: 6px; /* 距离容器左侧6px */
    z-index: 10; /* 确保标签在图片上方显示 */
}
.qr-status .badge[b-c4ezro5xhg] {
        font-size: 12px;
        padding: 3px 8px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ԭ�л�����ʽ��������޸������ */
.page[b-j65y7q72mt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j65y7q72mt] {
    flex: 1;
}

.sidebar[b-j65y7q72mt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-j65y7q72mt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row a[b-j65y7q72mt], .top-row .btn-link[b-j65y7q72mt] {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row a:hover[b-j65y7q72mt], .top-row .btn-link:hover[b-j65y7q72mt] {
            text-decoration: underline;
        }

        .top-row a:first-child[b-j65y7q72mt] {
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* �������ʽ��ɾ��::deep��͸��ֱ�ӿ��Ƶײ��������޸����ͻ�� */
@media (min-width: 768px) {
    .page[b-j65y7q72mt] {
        flex-direction: row;
    }

    .sidebar[b-j65y7q72mt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-j65y7q72mt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    /* ȥ��::deep��!important������ֱ��ѡ���� */
    #mobile-footer-fixed[b-j65y7q72mt] {
        display: none;
    }
}

/* �ֻ�����ʽ��ɾ��!important���������߼� */
@media (max-width: 767.98px) {
    .sidebar[b-j65y7q72mt] {
        display: none;
    }

    .top-row a[b-j65y7q72mt], .top-row .btn-link[b-j65y7q72mt] {
        margin-left: 0;
    }

    /* �ײ��ռ䣺ȥ��!important�����⸲�Ǻ�����ʽ */
    main[b-j65y7q72mt] {
        padding-bottom: 70px;
    }

    /* ���ض���Ԫ�أ�ȥ��!important���û���ѡ���� */
    .desktop-only[b-j65y7q72mt] {
        display: none;
    }
}
/* /Components/Layout/MobileNav.razor.rz.scp.css */
/* 1. 容器样式 (保持不变) */
#mobile-footer-fixed[b-ht3iyrvgp4] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    padding: 0 10px;
}

/* ==================================================
   关键修改：添加 ::deep 以穿透 NavLink 组件
   ================================================== */

/* 2. 按钮样式 */
[b-ht3iyrvgp4] .mobile-nav-btn {
    text-decoration: none !important; /* 核心：强制去掉下划线 */
    border: none;
    background-color: transparent;
    display: flex; /* 核心：找回 Flex 布局 */
    flex-direction: column !important; /* 核心：强制垂直排列 */
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #999999 !important; /* 核心：强制变灰 */
    font-size: 11px;
    gap: 3px;
    padding: 6px 0;
    cursor: pointer;
}

    /* 3. 选中/悬停状态 */
    /* 当 NavLink 激活时，Blazor 会自动添加 .mobile-nav-btn-active 类 */
    [b-ht3iyrvgp4] .mobile-nav-btn.mobile-nav-btn-active,
    [b-ht3iyrvgp4] .mobile-nav-btn:hover {
        color: #ffc107 !important; /* 强制变黄 */
    }

    /* 4. 去掉焦点框 */
    [b-ht3iyrvgp4] .mobile-nav-btn:focus {
        outline: none;
    }

/* ================== 图标样式 ================== */

/* 必须加上 ::deep，否则 NavLink 里的 span 也会被忽略 */
[b-ht3iyrvgp4] .bi-lightning-charge-mobile,
[b-ht3iyrvgp4] .bi-journal-text-mobile,
[b-ht3iyrvgp4] .bi-person-mobile {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* --- 图标：蓄能推广 --- */
[b-ht3iyrvgp4] .bi-lightning-charge-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09zM4.157 8.5H7a.5.5 0 0 1 .478.647L6.11 13.59l5.732-6.09H9a.5.5 0 0 1-.478-.647L9.89 2.41 4.157 8.5z'/%3E%3C/svg%3E");
}
/* 选中状态 (黄色) */
[b-ht3iyrvgp4] .mobile-nav-btn-active .bi-lightning-charge-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc107' viewBox='0 0 16 16'%3E%3Cpath d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09zM4.157 8.5H7a.5.5 0 0 1 .478.647L6.11 13.59l5.732-6.09H9a.5.5 0 0 1-.478-.647L9.89 2.41 4.157 8.5z'/%3E%3C/svg%3E");
}

/* --- 图标：助力记录 --- */
[b-ht3iyrvgp4] .bi-journal-text-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2z'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1z'/%3E%3C/svg%3E");
}

[b-ht3iyrvgp4] .mobile-nav-btn-active .bi-journal-text-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc107' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2z'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1z'/%3E%3C/svg%3E");
}

/* --- 图标：我的 --- */
[b-ht3iyrvgp4] .bi-person-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

[b-ht3iyrvgp4] .mobile-nav-btn-active .bi-person-mobile {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc107' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-5bndfk4shp] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-5bndfk4shp] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-5bndfk4shp] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-5bndfk4shp] {
    font-size: 1.1rem;
}

.bi[b-5bndfk4shp] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-shield-check-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shield-check' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.232.106A61.493 61.493 0 0 1 8 0c2.324 0 3.785.129 4.768.26a.48.48 0 0 1 .326.39c.554 4.157-.726 7.19-2.253 9.188a10.725 10.725 0 0 1-2.287 2.233c-.346.244-.652.42-.893.533-.12.057-.218.095-.293.118a.55.55 0 0 1-.101.025.615.615 0 0 1-.1-.025c-.076-.023-.174-.061-.294-.118a11.42 11.42 0 0 1-.893-.533 10.726 10.726 0 0 1-2.287-2.233C2.727 7.884 1.447 4.85 2.001.693a.48.48 0 0 1 .326-.39z'/%3E%3Cpath d='M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.bi-list-ul-nav-menu[b-5bndfk4shp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-ul' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
}

.nav-item[b-5bndfk4shp] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-5bndfk4shp] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-5bndfk4shp] {
        padding-bottom: 1rem;
    }

    .nav-item[b-5bndfk4shp]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-5bndfk4shp]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-5bndfk4shp]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-5bndfk4shp] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-5bndfk4shp] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-5bndfk4shp] {
        display: none;
    }

    .nav-scrollable[b-5bndfk4shp] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Admin/QrAuditPending.razor.rz.scp.css */
.container[b-1mdh6qlieb] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card[b-1mdh6qlieb] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.alert[b-1mdh6qlieb] {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.alert-success[b-1mdh6qlieb] {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-danger[b-1mdh6qlieb] {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.filter-bar[b-1mdh6qlieb] {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.form-control[b-1mdh6qlieb] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.data-table[b-1mdh6qlieb] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

    .data-table th[b-1mdh6qlieb],
    .data-table td[b-1mdh6qlieb] {
        border: 1px solid #e0e0e0;
        padding: 10px 12px;
        text-align: left;
    }

    .data-table th[b-1mdh6qlieb] {
        background-color: #f5f5f5;
        font-weight: 600;
        white-space: nowrap;
    }

    .data-table tr:hover[b-1mdh6qlieb] {
        background-color: #f9f9f9;
    }

.enterprise-info[b-1mdh6qlieb] {
    line-height: 1.8;
}

.qr-code[b-1mdh6qlieb] {
    vertical-align: middle;
}

    .qr-code img[b-1mdh6qlieb] {
        max-width: 100px;
        max-height: 100px;
        border: 1px solid #f0f0f0;
        padding: 5px;
        border-radius: 4px;
        /* 新增：二维码图片过渡效果，提升交互体验 */
        transition: transform 0.2s;
    }

        /* 新增：二维码图片hover轻微放大，提示可点击 */
        .qr-code img:hover[b-1mdh6qlieb] {
            transform: scale(1.05);
        }

.empty-qr[b-1mdh6qlieb] {
    color: #666;
    font-style: italic;
    display: inline-block;
    padding: 10px 0;
}

.action-buttons[b-1mdh6qlieb] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn[b-1mdh6qlieb] {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

    .btn:hover[b-1mdh6qlieb] {
        opacity: 0.9;
    }

.btn-success[b-1mdh6qlieb] {
    background-color: #5cb85c;
    color: white;
}

.btn-danger[b-1mdh6qlieb] {
    background-color: #d9534f;
    color: white;
}

.btn-secondary[b-1mdh6qlieb] {
    background-color: #6c757d;
    color: white;
}

.spinner[b-1mdh6qlieb] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin-b-1mdh6qlieb 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin-b-1mdh6qlieb {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ====================================== */
/* 新增：二维码预览模态框样式（与原有样式统一） */
/* ====================================== */
/* 模态框遮罩层 */
.modal-backdrop[b-1mdh6qlieb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000 !important;
}

/* 模态框主体 */
.modal[b-1mdh6qlieb] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 与原有card阴影风格一致 */
    box-sizing: border-box;
    z-index: 1001; /* 新增：高于遮罩层的1000 */
}

/* 二维码预览模态框专属样式（限制宽度） */
.qr-preview-modal[b-1mdh6qlieb] {
    z-index: 1001 !important;
    position: relative;
}

/* 模态框头部 */
.modal-header[b-1mdh6qlieb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0; /* 与原有表格边框风格一致 */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

    .modal-header h4[b-1mdh6qlieb] {
        margin: 0;
        font-size: 16px;
        color: #333;
        font-weight: 600;
    }

/* 模态框关闭按钮 */
.btn-close[b-1mdh6qlieb] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

    .btn-close:hover[b-1mdh6qlieb] {
        background-color: #f5f5f5;
        color: #333;
    }

/* 模态框内容区 */
.modal-body[b-1mdh6qlieb] {
    padding: 0;
    margin: 0;
}

/* 二维码大图样式 */
.qr-big[b-1mdh6qlieb] {
    max-width: 400px;
    max-height: 100%;
    border: 1px solid #f0f0f0; /* 与原有二维码边框风格一致 */
    padding: 10px;
    border-radius: 8px;
}

/* 模态框底部 */
.modal-footer[b-1mdh6qlieb] {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* 模态框内的img-fluid样式（适配响应式） */
.img-fluid[b-1mdh6qlieb] {
    max-width: 100%;
    height: auto;
}
