
.toast-container[data-v-6fd22a26] {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 380px;
}
.toast-item[data-v-6fd22a26] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
  border-left: 4px solid;
  animation: toast-in-6fd22a26 0.3s ease;
}
.toast-success[data-v-6fd22a26] { border-color: #10b981;
}
.toast-error[data-v-6fd22a26] { border-color: #ef4444;
}
.toast-warning[data-v-6fd22a26] { border-color: #f59e0b;
}
.toast-info[data-v-6fd22a26] { border-color: #3b82f6;
}
.toast-icon[data-v-6fd22a26] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.toast-success .toast-icon[data-v-6fd22a26] { background: #d1fae5; color: #059669;
}
.toast-error .toast-icon[data-v-6fd22a26] { background: #fee2e2; color: #dc2626;
}
.toast-warning .toast-icon[data-v-6fd22a26] { background: #fef3c7; color: #d97706;
}
.toast-info .toast-icon[data-v-6fd22a26] { background: #dbeafe; color: #2563eb;
}
.toast-msg[data-v-6fd22a26] { flex: 1; color: #374151;
}
.toast-close[data-v-6fd22a26] {
  background: none;
  border: none;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.toast-close[data-v-6fd22a26]:hover { color: #4b5563;
}
.toast-slide-enter-active[data-v-6fd22a26] { transition: all 0.3s ease;
}
.toast-slide-leave-active[data-v-6fd22a26] { transition: all 0.2s ease;
}
.toast-slide-enter-from[data-v-6fd22a26] { transform: translateX(100%); opacity: 0;
}
.toast-slide-leave-to[data-v-6fd22a26] { transform: translateX(100%); opacity: 0;
}
@keyframes toast-in-6fd22a26 {
from { transform: translateX(100%); opacity: 0;
}
to { transform: translateX(0); opacity: 1;
}
}

.loading-bar[data-v-1feca449] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 99999;
  background: rgba(37, 99, 235, 0.1);
}
.loading-bar-inner[data-v-1feca449] {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% 100%;
  animation: loading-slide-1feca449 1.5s ease-in-out infinite;
  border-radius: 0 2px 2px 0;
}
@keyframes loading-slide-1feca449 {
0% { width: 0%; background-position: 0% 0%;
}
50% { width: 70%; background-position: 100% 0%;
}
100% { width: 100%; background-position: 0% 0%;
}
}
.loading-bar-enter-active[data-v-1feca449] { transition: opacity 0.2s;
}
.loading-bar-leave-active[data-v-1feca449] { transition: opacity 0.4s 0.3s;
}
.loading-bar-enter-from[data-v-1feca449],
.loading-bar-leave-to[data-v-1feca449] { opacity: 0;
}
*, *::before, *::after { box-sizing: border-box; }
html, body, #app { margin: 0; min-height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  background: #f0f2f5;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
code { font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; font-size: 0.88em; background: #f1f5f9; padding: 2px 6px; border-radius: 4px; color: #475569; }
#app { width: 100%; min-height: 100vh; }

/* ===== 全局按钮系统 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.4;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: #fff;
  color: #374151;
  border-color: #d1d5db;
}
.btn-secondary:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}
.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-color: #dc2626;
}
.btn-danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.btn-sm { padding: 5px 10px; font-size: 12px; border-radius: 5px; }
.btn-xs { padding: 3px 8px; font-size: 11px; border-radius: 4px; }

/* ===== 表单系统 ===== */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.form-label .required { color: #ef4444; margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #1f2937;
  background: #fff;
  transition: all 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-input.is-error,
.form-textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
.form-input::placeholder { color: #9ca3af; }
.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* ===== 卡片系统 ===== */
.card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-body { padding: 20px; }
.card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* ===== 数据表格 ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}
.data-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  vertical-align: middle;
}
.data-table tbody tr {
  transition: background 0.15s;
}
.data-table tbody tr:hover {
  background: #f8fafc;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== 标签系统 ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}
.tag-blue { background: #eff6ff; color: #1d4ed8; }
.tag-green { background: #f0fdf4; color: #15803d; }
.tag-orange { background: #fff7ed; color: #c2410c; }
.tag-red { background: #fef2f2; color: #dc2626; }
.tag-gray { background: #f3f4f6; color: #6b7280; }
.tag-warn { background: #fef3c7; color: #92400e; }

/* ===== 分页器 ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #f3f4f6;
}
.pagination-info { color: #9ca3af; }
.pagination-btns {
  display: flex;
  gap: 6px;
}
.pagination-btns .btn { min-width: 32px; }

/* ===== Hero 头部区 ===== */
.hero-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 12px;
  padding: 24px 28px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card h2 { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.hero-card p { margin: 0; font-size: 13px; opacity: 0.7; }
.hero-stats { display: flex; gap: 20px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 22px; font-weight: 700; }
.hero-stat span { font-size: 11px; opacity: 0.7; }

/* ===== 搜索栏 ===== */
.search-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-input {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  min-width: 240px;
  outline: none;
  transition: all 0.2s;
}
.search-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== 快捷操作 ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.quick-link:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}
.quick-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.quick-link-icon.blue { background: #eff6ff; color: #2563eb; }
.quick-link-icon.green { background: #f0fdf4; color: #16a34a; }
.quick-link-icon.orange { background: #fff7ed; color: #ea580c; }
.quick-link-icon.purple { background: #faf5ff; color: #7c3aed; }
.quick-link strong { display: block; font-size: 13px; color: #1e293b; margin-bottom: 2px; }
.quick-link small { font-size: 11px; color: #9ca3af; }

/* ===== 提示栏 ===== */
.hint-bar {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #1e40af;
  margin-bottom: 12px;
}

/* ===== 通用工具类 ===== */
.text-muted { color: #6b7280; }
.text-sm { font-size: 12px; }
.text-danger { color: #ef4444; }
.text-success { color: #10b981; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ===== 脱敏文本 ===== */
.masked-text {
  font-family: monospace;
  letter-spacing: 1px;
  color: #6b7280;
}
.reveal-btn {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 11px;
  cursor: pointer;
  padding: 0 4px;
}
.reveal-btn:hover { text-decoration: underline; }

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .hero-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stats { gap: 12px; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .search-bar { flex-wrap: wrap; }
  .search-input { min-width: 100%; }
}
