/**
 * Member模块完整样式表 - 固定资产云盘点用户应用平台
 * 基于小程序业务功能设计的Web端页面原型
 * 
 * 作者: GDzc开发团队
 * 版本: 2.0.0
 * 日期: 2026-06-27
 */

/* ==================== 全局样式重置与基础设置 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 
               'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== 主布局容器 ==================== */
.member-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ==================== 左侧菜单栏样式 ==================== */
.member-sidebar {
  width: 250px;
  min-width: 250px;
  background: linear-gradient(180deg, #1e3c72 0%, #2a5298 50%, #449AF4 100%);
  color: #ecf0f1;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Logo区域 */
.sidebar-header {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}

.sidebar-logo-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  font-size: 28px;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.sidebar-logo {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* 菜单容器 */
.sidebar-menu {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0;
}

.sidebar-menu::-webkit-scrollbar {
  width: 3px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* 菜单分类标题 */
.menu-category {
  padding: 14px 22px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  position: relative;
  margin-top: 8px;
}

.menu-category:first-child {
  margin-top: 0;
}

.menu-category::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  right: 22px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

/* 菜单项 */
.menu-item {
  display: flex;
  align-items: center;
  padding: 13px 22px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-left: 3px solid transparent;
  position: relative;
  user-select: none;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.menu-item.active {
  background: rgba(68, 154, 244, 0.18);
  color: #fff;
  border-left-color: #449AF4;
  font-weight: 500;
  box-shadow: inset 0 0 20px rgba(68, 154, 244, 0.08);
}

.menu-item.active::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

/* 菜单图标 */
.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* 菜单文字 */
.menu-text {
  flex: 1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 菜单徽章 */
.menu-badge {
  background: #ff4757;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* 侧边栏底部信息 */
.sidebar-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.7;
}

.sidebar-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.sidebar-footer a:hover {
  color: #4CAF50;
}

/* ==================== 右侧内容区域 ==================== */
.member-content {
  flex: 1;
  margin-left: 250px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

/* 顶部导航栏 */
.member-navbar {
  height: 64px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-title {
  font-size: 17px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.breadcrumb-sep {
  color: #ccc;
}
.breadcrumb-active {
  color: #333;
  font-weight: 500;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #666;
  font-size: 19px;
  transition: all 0.2s;
}
.nav-btn:hover {
  background: #f5f7fa;
  color: #333;
}
.nav-btn .badge-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid #fff;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.user-info:hover {
  background: #f5f7fa;
}
.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}
.user-name {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
}
.user-role {
  font-size: 11px;
  color: #999;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  background: #f5f7fa;
}

.content-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ==================== 首页仪表盘 ==================== */
.dashboard-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.dashboard-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-subtitle {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-card-dashboard {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.stat-card-dashboard:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  opacity: 0.9;
}

/* 消息通知卡片 */
.message-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.message-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.message-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.message-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFA00B, #ff6b35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.message-text {
  flex: 1;
  font-size: 14px;
  color: #444;
}

.message-count {
  background: #ff4757;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* 快捷操作网格 */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.quick-action-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}
.quick-action-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #449AF4;
}

.quick-action-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.quick-action-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 颜色主题 */
.icon-receive { background: linear-gradient(135deg, #11998e, #38ef7d); }
.icon-borrow { background: linear-gradient(135deg, #667eea, #764ba2); }
.icon-return { background: linear-gradient(135deg, #f093fb, #f5576c); }
.icon-stock { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.icon-loss { background: linear-gradient(135deg, #fa709a, #fee140); }
.icon-trace { background: linear-gradient(135deg, #a8edea, #fed6e3); }

/* ==================== 卡片组件 ==================== */
.content-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.content-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title i {
  color: #449AF4;
}

/* Tab切换 */
.tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  bottom: -2px;
}
.tab-btn:hover {
  color: #449AF4;
}
.tab-btn.active {
  color: #449AF4;
  border-bottom-color: #449AF4;
  font-weight: 600;
}

.tab-count {
  background: #f0f2f5;
  color: #999;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  margin-left: 6px;
}
.tab-btn.active .tab-count {
  background: #e8f4fd;
  color: #449AF4;
}

/* ==================== 搜索筛选区 ==================== */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #fafbfc;
  border-radius: 12px;
}

.search-group {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 520px;
}

.search-input {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.search-input:focus {
  border-color: #449AF4;
  box-shadow: 0 0 0 3px rgba(68, 154, 244, 0.1);
}

.btn-search {
  height: 40px;
  padding: 0 22px;
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 154, 244, 0.3);
}

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

.btn-filter {
  height: 40px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-filter:hover {
  border-color: #449AF4;
  color: #449AF4;
}

.btn-primary {
  height: 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 154, 244, 0.3);
}

/* ==================== 资产列表项 ==================== */
.asset-list-container {
  /* 容器样式 */
}

.asset-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.asset-list-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #449AF4;
}

.asset-type-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f7fa, #e8ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  overflow: hidden;
}

.asset-info {
  flex: 1;
  min-width: 0;
}

.asset-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.asset-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.asset-status-tag {
  padding: 3px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.status-in-use { background: #e8f8f0; color: #27ae60; }
.status-pending { background: #fef9e7; color: #f39c12; }
.status-idle { background: #ebf5fb; color: #3498db; }
.status-damaged { background: #fdedec; color: #e74c3c; }

.asset-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.meta-label {
  color: #aaa;
}
.meta-value {
  color: #555;
  font-weight: 500;
}

.asset-arrow {
  color: #ccc;
  font-size: 16px;
  align-self: center;
  flex-shrink: 0;
  margin-left: 8px;
  transition: color 0.2s;
}
.asset-list-item:hover .asset-arrow {
  color: #449AF4;
}

/* 类型标签 */
.type-tags-inline {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.type-tag-small {
  background: #f0f2f5;
  color: #666;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
}

/* ==================== 资产详情页 ==================== */
.asset-detail-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 28px;
  margin-bottom: 20px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5f5f5;
}

.detail-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.detail-title-area h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.detail-code {
  font-size: 14px;
  color: #888;
  font-family: 'Courier New', monospace;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid #f5f5f5;
}
.info-table tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 12px 8px;
  font-size: 14px;
  vertical-align: top;
}
.info-table td:first-child {
  width: 130px;
  color: #888;
  font-weight: 500;
}
.info-table td:last-child {
  color: #333;
  font-weight: 400;
}

/* 操作按钮组（详情页底部） */
.action-bar {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #f5f5f5;
  flex-wrap: wrap;
}

.btn-action {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
}
.btn-outline {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #666;
}
.btn-outline:hover {
  border-color: #449AF4;
  color: #449AF4;
  background: #f8fbff;
}

.btn-confirm {
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
  flex: 1;
  max-width: 200px;
  justify-content: center;
}
.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68, 154, 244, 0.35);
}

.btn-danger-outline {
  background: #fff;
  border: 2px solid #ff6b6b;
  color: #ff6b6b;
}
.btn-danger-outline:hover {
  background: #ff6b6b;
  color: #fff;
}

/* ==================== 表单页面 ==================== */
.form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 28px;
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.form-label .required {
  color: #ff4757;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.form-control:focus {
  border-color: #449AF4;
  box-shadow: 0 0 0 3px rgba(68, 154, 244, 0.1);
}

textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
  padding: 12px 14px;
}

.form-hint {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

.tips-card {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tips-icon {
  color: #faad14;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.tips-content {
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: 24px;
}

.btn-back-form {
  padding: 10px 28px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-back-form:hover {
  border-color: #999;
  color: #333;
}

.btn-submit-form {
  padding: 10px 36px;
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-submit-form:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 154, 244, 0.3);
}

/* ==================== 盘点任务列表 ==================== */
.task-list-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.25s;
}
.task-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: #449AF4;
}

.task-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.task-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.task-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
}

.task-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.task-meta-label {
  color: #aaa;
}
.task-meta-value {
  color: #555;
  font-weight: 500;
}

/* 进度条 */
.progress-wrapper {
  margin-top: 14px;
}
.progress-bar-custom {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #449AF4, #667eea);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.progress-text {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-align: right;
}

/* ==================== 审批列表 ==================== */
.approval-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid #f0f0f0;
  border-left: 4px solid #449AF4;
  transition: all 0.2s;
}
.approval-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.approval-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.approval-type-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.badge-receive { background: #e8f8f0; color: #27ae60; }
.badge-return { background: #fef9e7; color: #f39c12; }
.badge-borrow { background: #e8f4fd; color: #3498db; }
.badge-loss { background: #fdedec; color: #e74c3c; }

.approval-status {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-waiting { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }

.approval-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.approval-field {
  display: flex;
  gap: 6px;
}
.field-label { color: #aaa; }
.field-value { color: #333; font-weight: 500; }

.approval-time {
  font-size: 12px;
  color: #bbb;
  padding-top: 10px;
  border-top: 1px solid #f5f5f5;
}

.approval-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn-approve-action {
  padding: 7px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-approve {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
}
.btn-approve:hover { box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3); }
.btn-reject {
  background: #fff;
  border: 2px solid #e74c3c !important;
  color: #e74c3c;
}
.btn-reject:hover { background: #e74c3c; color: #fff; }

/* ==================== 个人中心 ==================== */
.profile-header-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.profile-avatar-large {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  flex-shrink: 0;
}

.profile-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.profile-company {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.company-badge {
  background: rgba(255, 167, 38, 0.9);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* 功能菜单网格 */
.func-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.func-menu-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 20px;
  transition: all 0.25s;
}
.func-menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.func-menu-title {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.func-menu-title i {
  color: #449AF4;
}

.func-menu-list {
  list-style: none;
}

.func-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #555;
}
.func-menu-item:hover {
  background: #f8fbff;
  color: #449AF4;
  transform: translateX(4px);
}
.func-menu-item i {
  width: 20px;
  text-align: center;
  color: #999;
  transition: color 0.2s;
}
.func-menu-item:hover i {
  color: #449AF4;
}

/* ==================== 分页组件 ==================== */
.pagination-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 16px;
}

.pagination-info-text {
  font-size: 13px;
  color: #999;
}

.pagination-buttons {
  display: flex;
  gap: 6px;
}

.page-btn-custom {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #666;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn-custom:hover:not(:disabled) {
  border-color: #449AF4;
  color: #449AF4;
}
.page-btn-custom.active {
  background: #449AF4;
  color: #fff;
  border-color: #449AF4;
}
.page-btn-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==================== 空状态 & 加载状态 ==================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state-icon {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 16px;
}
.empty-state-text {
  font-size: 15px;
  color: #999;
  margin-bottom: 20px;
}
.empty-state-btn {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.empty-state-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(68, 154, 244, 0.3);
}

.loading-state {
  text-align: center;
  padding: 80px 20px;
}

.spinner-lg {
  width: 48px;
  height: 48px;
  border: 4px solid #f0f0f0;
  border-top-color: #449AF4;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 16px;
}

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

.loading-text-msg {
  font-size: 14px;
  color: #999;
}

/* 数据统计条 */
.data-count-bar {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
  padding: 8px 4px;
}
.data-count-bar strong {
  color: #449AF4;
}

/* ==================== 动画效果 ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.4s ease-out;
}

/* 页脚提示文字 */
.footer-tips {
  text-align: center;
  padding: 24px;
  color: #bbb;
  font-size: 13px;
  line-height: 1.8;
}
.footer-tips .highlight {
  color: #449AF4;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1200px) {
  .member-sidebar {
    transform: translateX(-100%);
    z-index: 1100;
  }
  .member-sidebar.mobile-show {
    transform: translateX(0);
  }
  .member-content {
    margin-left: 0;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
  }
  .sidebar-overlay.show { display: block; }
}

@media (max-width: 992px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .task-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-group { max-width: 100%; }
}

@media (max-width: 768px) {
  .main-content { padding: 16px; }
  .member-navbar { padding: 0 16px; }
  .dashboard-title { font-size: 20px; }
  .stat-num { font-size: 28px; }
  .profile-header-card {
    flex-direction: column;
    text-align: center;
  }
  .quick-actions-grid { grid-template-columns: repeat(3, 1fr); }
  .func-menu-grid { grid-template-columns: 1fr; }
  .asset-meta-row { flex-direction: column; gap: 6px; }
  .action-bar { flex-direction: column; }
  .btn-confirm { max-width: 100%; }
}

/* ==================== 树形结构（部门列表/资产分类） ==================== */
.tree-container {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 20px;
}

.tree-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.tree-title {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tree-title i { color: #449AF4; }

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

/* 树节点 */
.tree-node {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}
.tree-node:hover {
  background: #f8fbff;
}
.tree-node.active {
  background: #e8f4fd;
}

.tree-toggle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
  font-size: 11px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.tree-toggle.expanded {
  transform: rotate(90deg);
}
.tree-toggle:hover { color: #449AF4; }

.tree-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 15px;
  color: #fff;
}
.icon-folder { background: linear-gradient(135deg, #FFB347, #FFCC33); }
.icon-file { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.icon-role { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }

.tree-label {
  flex: 1;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.tree-node:hover .tree-label { color: #449AF4; }

.tree-count {
  font-size: 12px;
  color: #aaa;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 8px;
}

.tree-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* 子级缩进 */
.tree-children {
  margin-left: 28px;
  border-left: 1px dashed #e0e0e0;
  padding-left: 12px;
  display: none;
}
.tree-children.expanded {
  display: block;
}

/* 树底部操作栏 */
.tree-toolbar {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  border-top: 2px solid #f0f0f0;
  flex-wrap: wrap;
}
.btn-tree-action {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-tree-primary {
  background: linear-gradient(135deg, #449AF4, #667eea);
  color: #fff;
}
.btn-tree-primary:hover {
  box-shadow: 0 4px 12px rgba(68,154,244,0.3);
  transform: translateY(-1px);
}
.btn-tree-default {
  background: #f5f6fa;
  color: #666;
  border: 1px solid #e0e0e0 !important;
}
.btn-tree-default:hover {
  background: #ebedef;
  color: #333;
  border-color: #ccc !important;
}
.btn-tree-danger {
  background: #fff;
  color: #e74c3c;
  border: 1px solid #e74c3c !important;
}
.btn-tree-danger:hover { background: #e74c3c; color: #fff; }

/* 空状态 */
.tree-empty {
  text-align: center;
  padding: 40px 20px;
  color: #bbb;
  font-size: 14px;
}

/* ==================== 员工名单 ==================== */
.employee-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.employee-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #449AF4;
}

.employee-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.employee-info {
  flex: 1;
  min-width: 0;
}

.employee-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.employee-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}
.employee-state {
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.state-active { background: #e8f8f0; color: #27ae60; }
.state-resigned { background: #eee; color: #888; }
.state-disabled { background: #fdedec; color: #e74c3c; }

.employee-detail-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #888;
  flex-wrap: wrap;
  margin-top: 4px;
}
.employee-detail-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-label { color: #aaa; }
.detail-value { color: #555; font-weight: 500; }

.employee-arrow {
  color: #ccc;
  align-self: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.employee-card:hover .employee-arrow { color: #449AF4; }

/* 快捷操作栏（添加/导入/激活/离职） */
.quick-op-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.quick-op-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid #f0f0f0;
}
.quick-op-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: #449AF4;
}
.quick-op-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.op-add { background: linear-gradient(135deg, #11998e, #38ef7d); }
.op-import { background: linear-gradient(135deg, #667eea, #764ba2); }
.op-activate { background: linear-gradient(135deg, #f093fb, #f5576c); }
.op-resign { background: linear-gradient(135deg, #fa709a, #fee140); }
.quick-op-text { font-size: 13px; font-weight: 600; color: #555; }

/* ==================== 资产状态管理 ==================== */
.status-list-container {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px;
}

.status-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.status-list-item:hover {
  background: #f8fbff;
  border-color: #e0e8f5;
}
.status-list-item.system-default {
  background: #fafbfc;
  opacity: 0.85;
}
.status-list-item.selected {
  background: #e8f4fd;
  border-color: #449AF4;
}

.status-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #27ae60; }
.dot-blue { background: #3498db; }
.dot-orange { background: #f39c12; }
.dot-red { background: #e74c3c; }
.dot-grey { background: #95a5a6; }

.status-name-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.tag-system {
  background: #e8e8e8;
  color: #777;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
  margin-left: 6px;
}

/* ==================== 平台介绍页 ==================== */
.platform-intro {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.intro-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 48px 32px;
  color: #fff;
  text-align: center;
}
.intro-hero h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.intro-hero p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.intro-body { padding: 32px; }

.intro-section {
  margin-bottom: 28px;
}
.intro-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.intro-section h3 i { color: #449AF4; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-item {
  background: #f8fbff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.25s;
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(68,154,244,0.12);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}
.feat-1 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.feat-2 { background: linear-gradient(135deg, #667eea, #764ba2); }
.feat-3 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.feat-4 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.feat-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.feat-6 { background: linear-gradient(135deg, #a8edea, #fed6e3); }

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ==================== 联系客服 ==================== */
.contact-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 40px 32px;
  text-align: center;
}
.contact-avatar-lg {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #449AF4, #667eea);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(68,154,244,0.25);
}
.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.contact-card > p {
  color: #888;
  font-size: 14px;
  margin-bottom: 28px;
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.contact-method-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-wechat {
  background: #07C160;
  color: #fff;
}
.btn-wechat:hover { box-shadow: 0 4px 14px rgba(7,193,96,0.35); }
.btn-phone {
  background: #f5f6fa;
  color: #333;
  border: 1px solid #e0e0e0 !important;
}
.btn-phone:hover { border-color: #449AF4 !important; color: #449AF4; }

.contact-tips {
  background: #f8fbff;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.contact-tips strong { color: #449AF4; }

/* ==================== 个人资料编辑表单（增强版） ==================== */
.user-edit-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 28px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group .form-control[disabled] {
  background: #f5f6fa;
  color: #888;
  cursor: not-allowed;
}

/* 只读信息展示 */
.readonly-display {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 14px 16px;
  min-height: 42px;
  line-height: 14px;
  font-size: 14px;
  color: #555;
}

/* ==================== 审批日志（增强版 - 多条件筛选） ==================== */
.check-log-query-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 16px 20px;
  background: #fafbfc;
  border-radius: 12px;
  margin-bottom: 20px;
}
.check-log-query-bar .form-control {
  height: 38px;
  font-size: 13px;
}
.query-label-small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  font-weight: 500;
}

.check-log-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
  border-left: 4px solid #449AF4;
  transition: all 0.2s;
  cursor: pointer;
}
.check-log-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.check-log-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0f2f5;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  margin-right: 12px;
}
.check-log-time {
  font-size: 12px;
  color:#bbb;
  margin-left:auto;
}
.check-log-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
}
.check-log-field { display:flex; gap:4px; }
.cl-label { color:#aaa; }
.cl-value { color:#555; font-weight:500; }
.log-status-tag {
  padding: 2px 10px;
  border-radius: 6px;
  font-size:12px;
  font-weight:500;
}
.ls-pending { background:#fff3cd;color:#856404; }
.ls-passed { background:#d4edda;color:#155724; }
.ls-rejected { background:#f8d7da;color:#721c24; }
