:root {
  --ui-primary: #0b68da;
  --ui-primary-dark: #0954b0;
  --ui-surface: #ffffff;
  --ui-bg: #f0f2f5;
  --ui-text: #172033;
  --ui-muted: #64748b;
  --ui-border: #dbe3ef;
  --ui-success: #047857;
  --ui-warning: #b45309;
  --ui-danger: #b91c1c;
  --ui-space-1: 4px;
  --ui-space-2: 8px;
  --ui-space-3: 12px;
  --ui-space-4: 16px;
  --ui-space-5: 20px;
  --ui-focus: 0 0 0 3px rgba(11, 104, 218, 0.22);
}

*:focus-visible {
  outline: none;
  box-shadow: var(--ui-focus);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
  color: rgba(0, 0, 0, 0.85);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.login-container {
  max-width: 400px;
  margin: 100px auto;
  padding: 40px;
  background: white;
  border-radius: 6px;
}

.login-container h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b68da;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--dloa-transition-colors);
}

.btn-primary {
  background: #0b68da;
  color: white;
}

.btn-primary:hover {
  background: #0954b0;
  transform: none;
  box-shadow: none;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-danger {
  background: #dc3545;
  color: white;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.links {
  text-align: center;
  margin-top: 20px;
}

.links a {
  color: #0b68da;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: #0d5ec4;
  color: white;
  padding: 20px 0;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sidebar-menu li {
  padding: 0;
}

.sidebar-menu a {
  display: block;
  padding: 15px 20px;
  color: #ecf0f1;
  text-decoration: none;
  transition: background 0.3s;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(255, 255, 255, 0.15);
}

.main-content {
  flex: 1;
  padding: 20px;
  background: #f5f6fa;
}

.header {
  background: white;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card {
  background: white;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

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

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

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

table th,
table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #555;
}

table tbody tr:hover {
  background: #f8f9fa;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.badge-success {
  background: #d4edda;
  color: #155724;
}

.badge-warning {
  background: #fff3cd;
  color: #856404;
}

.badge-danger {
  background: #f8d7da;
  color: #721c24;
}

.badge-info {
  background: #d1ecf1;
  color: #0c5460;
}

.badge-purchaser {
  background: #ff4d4f;
  color: white;
  font-size: var(--dloa-font-size-xs);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: normal;
}

/* 补抽标识：追加补抽与请假补抽共用，便于打印件与现场核对 */
.badge-supplement {
  background: var(--dloa-warning-bg);
  color: var(--dloa-warning);
  border: 1px solid var(--dloa-warning-border);
  font-size: var(--dloa-font-size-xs);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: normal;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 4px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.draw-config {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.draw-config-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.draw-result {
  margin-top: 20px;
}

.draw-section {
  margin-bottom: 30px;
}

.draw-section-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.expert-card {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.expert-info h4 {
  margin-bottom: 5px;
  color: #333;
}

.expert-info p {
  color: #666;
  font-size: 13px;
  margin: 3px 0;
}

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

.alert {
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.hidden {
  display: none !important;
}

.inline-form-error {
  margin-bottom: 16px;
}
.modal[role='dialog'] {
  border: 0;
}
.modal[role='dialog'] .modal-content {
  border-radius: var(--dloa-radius-lg);
}
button,
input,
select,
textarea {
  font: inherit;
}

/* ============================================================
   专家中心样式 (expert-center)
   ============================================================ */
.expert-center-stat-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  flex: 1;
}
.expert-center-stat-number {
  font-size: var(--dloa-font-size-2xl);
  font-weight: 700;
  color: #1a4c8a;
}
.expert-center-stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.expert-center-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.expert-center-summary-title {
  font-weight: 600;
  font-size: var(--dloa-font-size-md);
}
.expert-center-summary-badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
}
.expert-center-summary-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.expert-center-summary-metric {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.expert-center-summary-metric strong {
  display: block;
  font-size: var(--dloa-font-size-xl);
  color: #1a4c8a;
}
.expert-center-summary-metric span {
  font-size: 12px;
  color: #666;
}
.expert-center-overview-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
}
.expert-center-overview-item strong {
  display: block;
  font-size: var(--dloa-font-size-xl);
  color: #1a4c8a;
}
.expert-center-overview-item span {
  font-size: 13px;
  color: #333;
}
.expert-center-overview-item small {
  display: block;
  font-size: var(--dloa-font-size-xs);
  color: #999;
  margin-top: 2px;
}
.expert-center-todo-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.expert-center-todo-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px;
}
.expert-center-todo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.expert-center-todo-card-title {
  font-weight: 600;
  font-size: 14px;
}
.expert-center-todo-card-desc {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.expert-center-todo-card-actions {
  display: flex;
  gap: 8px;
}
.expert-center-empty-card {
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 14px;
  background: #f9f9f9;
  border-radius: 4px;
}

/* ============================================================
   数据卡片布局 (data-card-grid / data-card)
   用于后台管理页面的卡片式数据展示
   ============================================================ */
.data-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
  padding: 16px 0;
}

.data-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.data-card:hover {
  transform: none;
}

.data-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  min-height: 44px;
}

.data-card-title {
  font-weight: 600;
  font-size: var(--dloa-font-size-md);
  color: #1c2d41;
  line-height: 1.4;
  flex: 1;
  word-break: break-all;
}

.data-card-badge {
  flex-shrink: 0;
}

.data-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  flex: 1;
}

.data-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  padding: 2px 0;
}

.data-card-label {
  color: #5d6d81;
  flex-shrink: 0;
  font-size: 12px;
}

.data-card-value {
  color: #1c2d41;
  text-align: right;
  word-break: break-all;
  font-weight: 500;
}

.data-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.data-card-actions .btn {
  font-size: 12px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
}

.data-card-info {
  font-size: 13px;
  line-height: 1.6;
  color: #1c2d41;
  padding: 2px 0;
}

.data-card-footer {
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

.data-card-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: #8a99ac;
  font-size: 14px;
}

/* ==================== 开标大厅 ==================== */
.opening-hall-body {
  background: #0b68da;
  min-height: 100vh;
}

.opening-hall-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.opening-hall-header {
  background: white;
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.opening-hall-header-main {
  flex: 1;
  min-width: 0;
}

.opening-hall-kicker {
  font-size: 12px;
  color: #0b68da;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.opening-hall-header-main h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  line-height: 1.3;
}

.opening-hall-subtitle {
  font-size: 13px;
  color: #666;
}

.opening-hall-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.opening-hall-header-actions .btn {
  width: auto;
}

/* Toolbar */
.opening-hall-toolbar {
  background: white;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.opening-hall-toolbar .btn {
  width: auto;
}

.opening-hall-toolbar-hint {
  font-size: 12px;
  color: #999;
  margin-left: auto;
}

/* Summary */
.opening-hall-summary {
  margin-bottom: 16px;
}

.opening-hall-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.opening-hall-summary-item {
  background: white;
  border-radius: 4px;
  padding: 14px 16px;
  border-left: 3px solid #0b68da;
}

.opening-hall-summary-item span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.opening-hall-summary-item strong {
  display: block;
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
}

.opening-hall-summary-item-wide {
  grid-column: span 2;
}

/* Content Layout */
.opening-hall-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: start;
}

.opening-hall-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opening-hall-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.opening-hall-section {
  margin-bottom: 0;
}

/* Data Table */
.opening-hall-data-table {
  width: 100%;
  border-collapse: collapse;
}

.opening-hall-data-table th {
  background: #f8f9fa;
  padding: 10px 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  border-bottom: 2px solid #e0e0e0;
  white-space: nowrap;
}

.opening-hall-data-table td {
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.opening-hall-data-table tbody tr:hover {
  background: #fafbff;
}

.opening-hall-data-table .btn {
  width: auto;
  margin: 2px;
}

.portal-muted-text {
  font-size: var(--dloa-font-size-xs);
  color: #999;
  margin-top: 4px;
  line-height: 1.4;
}

/* Announcement Board */
.opening-hall-announcement-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.opening-hall-announcement-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.opening-hall-announcement-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0b68da;
}

.opening-hall-announcement-rank {
  font-size: 12px;
  font-weight: 700;
  color: #0b68da;
  margin-bottom: 6px;
}

.opening-hall-announcement-card-item h4 {
  font-size: var(--dloa-font-size-md);
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.opening-hall-announcement-card-item p {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
  line-height: 1.5;
}

.opening-hall-empty-panel {
  text-align: center;
  padding: 32px 20px;
  color: #999;
  font-size: 14px;
}

/* Video */
.opening-hall-video-placeholder {
  text-align: center;
  padding: 32px 20px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 2px dashed #d0d5e0;
  margin-bottom: 12px;
}

.opening-hall-video-placeholder strong {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.opening-hall-video-placeholder p {
  font-size: 12px;
  color: #999;
}

.opening-hall-video-meta p {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

/* Archive */
.opening-hall-archive-metric {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 12px;
}

.opening-hall-archive-metric span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.opening-hall-archive-metric strong {
  font-size: var(--dloa-font-size-xl);
  color: #0b68da;
  font-weight: 700;
}

.opening-hall-archive-detail p {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Chat */
.opening-hall-chat-card {
  display: flex;
  flex-direction: column;
}

.opening-hall-chat-note {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
}

.opening-hall-chat-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding: 4px 0;
}

.opening-hall-chat-empty {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 13px;
}

.opening-hall-chat-item {
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-left: 3px solid #e0e0e0;
}

.opening-hall-chat-item.is-self {
  background: #eef1ff;
  border-left-color: #0b68da;
}

.opening-hall-chat-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 12px;
}

.opening-hall-chat-meta strong {
  color: #333;
  font-weight: 600;
}

.opening-hall-chat-meta span {
  color: #888;
}

.opening-hall-chat-meta em {
  color: #aaa;
  font-style: normal;
  margin-left: auto;
}

.opening-hall-chat-text {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  word-break: break-all;
}

.opening-hall-chat-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.opening-hall-chat-form textarea:focus {
  outline: none;
  border-color: #0b68da;
}

.opening-hall-inline-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.opening-hall-inline-actions .btn {
  width: auto;
  flex-shrink: 0;
}

.opening-hall-chat-status {
  font-size: 12px;
  color: #999;
}

/* 桌面端布局：按已确认范围移除移动端覆盖 */

@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: white;
  }
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ============================================================
   桌面端统一设计系统：公共令牌与组件基线
   ============================================================ */
:root {
  --ui-primary: #0b68da;
  --ui-primary-hover: #0954b0;
  --ui-primary-soft: #eef4fa;
  --ui-success: #047857;
  --ui-warning: #b45309;
  --ui-danger: #b91c1c;
  --ui-info: #0b68da;
  --ui-text: #172b4d;
  --ui-text-secondary: #667085;
  --ui-text-tertiary: #98a2b3;
  --ui-bg: #f0f2f5;
  --ui-surface: #fff;
  --ui-border: #d9e2ec;
  --ui-space-1: 4px;
  --ui-space-2: 8px;
  --ui-space-3: 12px;
  --ui-space-4: 16px;
  --ui-space-5: 20px;
  --ui-space-6: 24px;
  --ui-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --ui-shadow-md: 0 2px 6px rgba(15, 23, 42, 0.08);
  --ui-focus: 0 0 0 3px rgba(11, 104, 218, 0.18);
}

body {
  background: var(--ui-bg);
  color: var(--ui-text);
}
button,
input,
select,
textarea {
  font: inherit;
}
*:focus-visible {
  outline: 0;
  box-shadow: var(--ui-focus);
}
.card,
.panel,
.transaction-section,
.bottom-card,
.filter-panel,
.filter-bar {
  border: 1px solid var(--ui-border);
  border-radius: var(--dloa-radius);
}
.card-header,
.panel-head {
  border-bottom-color: var(--ui-border);
}
.btn {
  min-height: 36px;
  border-radius: var(--dloa-radius-sm);
  font-weight: 600;
}
.btn-primary {
  background: var(--ui-primary);
  border-color: var(--ui-primary);
}
.btn-primary:hover {
  background: var(--ui-primary-hover);
  border-color: var(--ui-primary-hover);
}
.form-group input,
.form-group select,
.form-group textarea,
input,
select,
textarea {
  border-color: var(--ui-border);
  border-radius: var(--dloa-radius-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--ui-primary);
  box-shadow: var(--ui-focus);
}
table th {
  background: #f8fafc;
  color: #344054;
  font-weight: 700;
}
table tbody tr:hover {
  background: var(--ui-primary-soft);
}
.empty-state,
.workspace-empty,
.empty {
  min-height: 88px;
  display: grid;
  place-items: center;
  color: var(--ui-text-tertiary);
  background: #fafbfc;
  border-radius: var(--dloa-radius-sm);
}
.ui-toast-stack {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 24px;
  display: grid;
  gap: 10px;
  width: 360px;
  pointer-events: none;
}
.ui-toast {
  padding: 12px 16px;
  color: #344054;
  background: #fff;
  border: 1px solid var(--ui-border);
  border-left: 4px solid var(--ui-info);
  border-radius: var(--dloa-radius-sm);
  box-shadow: var(--ui-shadow-md);
  pointer-events: auto;
  animation: ui-toast-in 0.18s ease-out;
}
.ui-toast.success {
  border-left-color: var(--ui-success);
}
.ui-toast.error {
  border-left-color: var(--ui-danger);
}
.ui-toast.warning {
  border-left-color: var(--ui-warning);
}
@keyframes ui-toast-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ui-toast {
    animation: none;
  }
}

/* ============================================================
   登录页面统一样式 - 简洁专业风格
   ============================================================ */
.portal-auth-body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif !important;
  background: #f0f2f5 !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
}

.portal-auth-shell {
  display: flex !important;
  min-height: 100vh !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  background: #f0f2f5 !important;
  max-width: none !important;
  position: static !important;
  overflow: visible !important;
}

.portal-auth-shell::before,
.portal-auth-shell::after {
  display: none !important;
}

.portal-auth-intro {
  display: none !important;
}

.portal-auth-card {
  width: 100% !important;
  max-width: 400px !important;
  background: white !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 40px 32px !important;
  position: static !important;
  z-index: auto !important;
}

.portal-auth-card::before {
  display: none !important;
}

.portal-auth-card h2 {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: rgba(0, 0, 0, 0.85) !important;
  margin: 0 0 32px 0 !important;
  text-align: center !important;
  text-shadow: none !important;
}

.portal-auth-card > p {
  display: none !important;
}

.portal-auth-card .form-group {
  margin-bottom: 24px !important;
}

.portal-auth-card .form-group label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(0, 0, 0, 0.85) !important;
  margin-bottom: 8px !important;
  text-shadow: none !important;
}

.portal-auth-card .form-group input,
.portal-auth-card .form-group select,
.portal-auth-card .form-group textarea {
  width: 100% !important;
  padding: 8px 12px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 2px !important;
  font-size: 14px !important;
  transition: var(--dloa-transition-colors) !important;
  box-sizing: border-box !important;
  background: white !important;
  color: rgba(0, 0, 0, 0.85) !important;
  height: 36px !important;
  box-shadow: none !important;
}

.portal-auth-card .form-group textarea {
  height: auto !important;
  min-height: 80px !important;
  resize: vertical !important;
}

.portal-auth-card .form-group input:focus,
.portal-auth-card .form-group select:focus,
.portal-auth-card .form-group textarea:focus {
  outline: none !important;
  border-color: #0b68da !important;
  box-shadow: 0 0 0 2px rgba(11, 104, 218, 0.2) !important;
  background: white !important;
}

.portal-auth-card .form-group input::placeholder {
  color: #bfbfbf !important;
}

.portal-auth-card .btn,
.portal-auth-card .btn-primary {
  width: 100% !important;
  padding: 0 !important;
  height: 36px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-radius: 2px !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--dloa-transition-colors) !important;
  background: #0b68da !important;
  color: white !important;
  line-height: 36px !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
  position: static !important;
  text-shadow: none !important;
}

.portal-auth-card .btn:hover,
.portal-auth-card .btn-primary:hover {
  background: #0954b0 !important;
  color: white !important;
  box-shadow: none !important;
  transform: none !important;
}

.portal-auth-card .btn:active {
  background: #0d3560 !important;
  color: white !important;
}

.portal-auth-status {
  display: none !important;
  padding: 8px 12px !important;
  border-radius: 2px !important;
  font-size: 14px !important;
  margin-bottom: 24px !important;
  border: 1px solid !important;
}

.portal-auth-status.is-visible {
  display: block !important;
}

.portal-auth-status.alert-warning {
  background: #fffbe6 !important;
  border-color: #ffe58f !important;
  color: rgba(0, 0, 0, 0.65) !important;
}

.portal-auth-status.alert-danger {
  background: #fff1f0 !important;
  border-color: #ffa39e !important;
  color: rgba(0, 0, 0, 0.65) !important;
}

.portal-auth-status.alert-success {
  background: #f6ffed !important;
  border-color: #b7eb8f !important;
  color: rgba(0, 0, 0, 0.65) !important;
}

.portal-auth-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 24px !important;
  padding-top: 16px !important;
  border-top: 1px solid #f0f0f0 !important;
}

.portal-auth-links a {
  color: #0b68da !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: color 0.3s !important;
  text-align: center !important;
}

.portal-auth-links a:hover {
  color: #0954b0 !important;
}

.portal-auth-links .btn,
.portal-auth-links .btn-secondary {
  width: 100% !important;
  height: 32px !important;
  line-height: 30px !important;
  font-size: 14px !important;
  background: white !important;
  color: #0b68da !important;
  border: 1px solid #0b68da !important;
  box-shadow: none !important;
  transform: none !important;
  padding: 0 !important;
  text-shadow: none !important;
}

.portal-auth-links .btn:hover,
.portal-auth-links .btn-secondary:hover {
  background: white !important;
  color: #0954b0 !important;
  border-color: #0954b0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* 桌面端样式，不覆盖移动端布局 */

/* 注册弹窗样式 */
.portal-auth-modal {
  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: 9999;
  animation: fadeIn 0.3s ease;
}

.portal-auth-modal.hidden {
  display: none;
}

.portal-auth-modal-content {
  background: white;
  border-radius: 6px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.portal-auth-modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #1f2937;
}

.portal-auth-modal-close {
  background: none;
  border: none;
  font-size: var(--dloa-font-size-2xl);
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.portal-auth-modal-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================================
   全站清晰度优化 - 背景层次与内容对比度增强
   ============================================================ */
:root {
  --office-bg: #f0f2f5;
  --office-bg-soft: #f6f9fc;
  --office-card: #ffffff;
  --office-card-subtle: #f8fafc;
  --office-border: #d8e1ec;
  --office-border-strong: #c4d1df;
  --office-text: #162033;
  --office-text-secondary: #334155;
  --office-text-muted: #56657a;
  --office-primary: #0b68da;
  --office-primary-soft: #e8f0ff;
  --office-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --office-shadow-soft: 0 2px 10px rgba(15, 23, 42, 0.06);
}

body,
.portal-auth-body {
  color: var(--office-text) !important;
  background: var(--office-bg) !important;
}

.main-content,
.portal-auth-shell {
  background: var(--office-bg) !important;
}

.card,
.header,
.modal-content,
.portal-auth-card,
.portal-auth-modal-content,
.data-card,
.expert-card,
.expert-center-stat-card,
.expert-center-summary-metric,
.expert-center-overview-item,
.expert-center-todo-card,
.opening-hall-header,
.opening-hall-toolbar,
.opening-hall-summary-item,
.opening-hall-announcement-card-item,
.opening-hall-video-placeholder,
.opening-hall-archive-metric,
.opening-hall-chat-item {
  background: var(--office-card) !important;
  border: 1px solid var(--office-border) !important;
}

.card,
.header,
.modal-content,
.portal-auth-card,
.portal-auth-modal-content,
.data-card,
.expert-card,
.opening-hall-header,
.opening-hall-toolbar,
.opening-hall-summary-item {
  border-radius: 6px !important;
}

.card-header,
.modal-header,
.modal-footer,
.data-card-header,
.data-card-actions,
.data-card-footer,
.portal-auth-modal-header {
  border-color: var(--office-border) !important;
}

.card-title,
.modal-title,
.data-card-title,
.draw-section-title,
.expert-info h4,
.expert-center-summary-title,
.expert-center-todo-card-title,
.opening-hall-header-main h1,
.opening-hall-announcement-card-item h4,
.opening-hall-chat-meta strong,
.portal-auth-modal-header h3 {
  color: var(--office-text) !important;
}

p,
label,
.expert-info p,
.data-card-label,
.expert-center-stat-label,
.expert-center-summary-metric span,
.expert-center-overview-item small,
.expert-center-todo-card-desc,
.opening-hall-subtitle,
.opening-hall-summary-item span,
.opening-hall-announcement-card-item p,
.opening-hall-video-meta p,
.opening-hall-archive-detail p,
.opening-hall-chat-note,
.opening-hall-toolbar-hint,
.portal-muted-text,
.opening-hall-chat-status {
  color: var(--office-text-muted) !important;
}

.data-card-value,
.data-card-info,
.expert-center-overview-item span,
.opening-hall-summary-item strong,
.opening-hall-data-table td,
.opening-hall-chat-text {
  color: var(--office-text-secondary) !important;
}

table,
.opening-hall-data-table {
  background: var(--office-card) !important;
}

table th,
.opening-hall-data-table th {
  background: #eaf1f8 !important;
  color: #253449 !important;
  border-bottom-color: var(--office-border-strong) !important;
}

table td,
.opening-hall-data-table td {
  border-bottom-color: var(--office-border) !important;
}

table tbody tr:hover,
.opening-hall-data-table tbody tr:hover {
  background: #f2f7fd !important;
}

.form-group input,
.form-group select,
.form-group textarea,
.opening-hall-chat-form textarea {
  background: #ffffff !important;
  color: var(--office-text) !important;
  border-color: var(--office-border-strong) !important;
}

.form-group input::placeholder,
.portal-auth-card .form-group input::placeholder {
  color: #7b8798 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.opening-hall-chat-form textarea:focus {
  border-color: var(--office-primary) !important;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14) !important;
}

.sidebar {
  background: #0d5ec4 !important;
}

.sidebar-menu a {
  color: #dbe6f3 !important;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.btn-primary,
.portal-auth-card .btn-primary,
.portal-auth-card .btn {
  background: var(--office-primary) !important;
  border-color: var(--office-primary) !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.portal-auth-card .btn-primary:hover,
.portal-auth-card .btn:hover {
  background: #0954b0 !important;
  border-color: #0954b0 !important;
}

.btn-secondary,
.portal-auth-links .btn-secondary,
.portal-auth-links .btn {
  background: #ffffff !important;
  color: var(--office-text-secondary) !important;
  border-color: var(--office-border-strong) !important;
}

.btn-secondary:hover,
.portal-auth-links .btn-secondary:hover,
.portal-auth-links .btn:hover {
  background: var(--office-primary-soft) !important;
  color: var(--office-primary) !important;
  border-color: var(--office-primary) !important;
}

.opening-hall-body {
  background: var(--office-bg) !important;
}

.opening-hall-announcement-card-item,
.opening-hall-chat-item.is-self {
  background: #f4f8ff !important;
}

.opening-hall-kicker,
.opening-hall-announcement-rank,
.opening-hall-archive-metric strong,
.expert-center-stat-number,
.expert-center-summary-metric strong,
.expert-center-overview-item strong,
.links a,
.portal-auth-links a {
  color: var(--office-primary) !important;
}

.alert-info,
.expert-center-empty-card,
.opening-hall-empty-panel {
  background: #f4f8ff !important;
  border: 1px solid var(--office-border) !important;
  color: var(--office-text-muted) !important;
}

.portal-auth-status.alert-warning,
.portal-auth-status.alert-danger,
.portal-auth-status.alert-success {
  color: var(--office-text-secondary) !important;
}

.portal-auth-status.alert-warning {
  background: #fff8e6 !important;
  border-color: #f3d389 !important;
}

.portal-auth-status.alert-danger {
  background: #fff0f0 !important;
  border-color: #f4b4b4 !important;
}

.portal-auth-status.alert-success {
  background: #eefaf1 !important;
  border-color: #a9d8b4 !important;
}

.portal-auth-card .form-group label,
.portal-auth-card h2 {
  color: var(--office-text) !important;
}

/* 门户首页、公告页、项目页、专家页统一增强 */
.main-header,
.notice-strip,
.stats-section,
.transaction-section,
.bottom-card,
.service-portal-card,
.filter-panel,
.data-section,
.page-header,
.project-card,
.detail-card,
.related-header,
.panel,
.proof-card,
.review-shell {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid var(--office-border) !important;
}

.main-header,
.notice-strip,
.transaction-section,
.bottom-card,
.service-portal-card,
.filter-panel,
.data-section,
.page-header,
.project-card,
.detail-card,
.panel,
.proof-card,
.review-shell {
  border-radius: 6px !important;
}

.header-title-main,
.page-header h1,
.transaction-header h2,
.bottom-card-title,
.data-section-title,
.project-card-name,
.detail-card-title,
.panel-title,
.proof-card-title,
.modal-section-title {
  color: var(--office-text) !important;
}

.header-title-sub,
.project-card-summary,
.project-card-code,
.project-card-owner,
.project-card-date,
.detail-card-meta-label,
.detail-card-meta-value,
.detail-content,
.notice-strip-item,
.data-section-count,
.filter-panel-header {
  color: var(--office-text-muted) !important;
}

.header-nav a,
.nav-login,
.notice-strip-more,
.bottom-card-more,
.section-link {
  color: var(--office-primary) !important;
}

.header-logo,
.stat-card-icon,
.notice-strip-label,
.data-card-index {
  background: var(--office-primary) !important;
  color: #ffffff !important;
}

.stat-card,
.service-portal-card,
.project-card,
.bottom-card,
.panel,
.proof-card {
  background: #ffffff !important;
}

.stat-card-value,
.data-card-date {
  color: var(--office-primary) !important;
}

.stat-card-label,
.data-list-header,
.related-list-header {
  color: var(--office-text-secondary) !important;
}

.home-body,
.portal-page-body,
.public-page-body {
  background: var(--office-bg) !important;
  color: var(--office-text) !important;
}

.main-content {
  color: var(--office-text) !important;
}

.modal-dialog,
.modal-body,
.modal-content-area,
.modal-section,
.modal-meta,
.filter-panel-body,
.filter-row,
.loading-state,
.empty-state,
.data-table,
.data-card-body,
.data-card-footer,
.project-card-footer,
.project-card-top,
.related-list-header,
.related-header,
.detail-card-header,
.detail-card-body {
  background: #ffffff !important;
  color: var(--office-text) !important;
}

.modal-dialog,
.modal-content-area,
.modal-section,
.modal-meta,
.empty-state,
.loading-state {
  border: 1px solid var(--office-border) !important;
  border-radius: 6px !important;
}

.modal-dialog {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16) !important;
}

.modal-header {
  background: #f8fbff !important;
}

.modal-body,
.modal-content-area,
.detail-card-body {
  color: var(--office-text-secondary) !important;
  line-height: 1.75 !important;
}

.modal-meta-item .label,
.filter-label,
.detail-label,
.empty-hint,
.loading-state,
.empty-state,
.category-badge,
.project-card-badges,
.project-display-hint {
  color: var(--office-text-muted) !important;
}

.modal-meta-item .value,
.detail-content,
.project-display-name,
.empty-state strong,
.data-section-count strong {
  color: var(--office-text) !important;
}

.filter-input,
.filter-select,
.filter-date,
.search-input,
select,
input[type='text'],
input[type='date'],
input[type='number'],
input[type='password'],
textarea {
  background: #ffffff !important;
  color: var(--office-text) !important;
  border: 1px solid var(--office-border-strong) !important;
  border-radius: 4px !important;
}

.filter-input:focus,
.filter-select:focus,
.filter-date:focus,
.search-input:focus,
select:focus,
input[type='text']:focus,
input[type='date']:focus,
input[type='number']:focus,
input[type='password']:focus,
textarea:focus {
  outline: none !important;
  border-color: var(--office-primary) !important;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14) !important;
}

.category-badge,
.badge,
.project-display-bar,
.project-card-badges span,
.tag,
.status-tag {
  background: #eef4ff !important;
  border: 1px solid #c8d8f5 !important;
  color: var(--office-primary) !important;
  border-radius: 999px !important;
}

.empty-icon,
.loading-spinner {
  color: var(--office-primary) !important;
}

.data-card:hover,
.project-card:hover,
.service-portal-card:hover,
.bottom-card:hover {
  border-color: #b7c9e6 !important;
}

.list-pagination,
.list-toolbar,
.project-list-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--office-border);
  border-radius: 6px;
  background: var(--office-bg-soft);
  color: var(--office-text-muted);
  font-size: 13px;
}

.list-pagination {
  justify-content: flex-end;
}

.list-pagination-info {
  margin-right: auto;
  color: var(--office-text);
  font-weight: 600;
}

.list-pagination select,
.list-toolbar input,
.list-toolbar select,
.project-list-toolbar input,
.project-list-toolbar select {
  min-height: 34px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  color: var(--office-text);
  padding: 6px 10px;
}

.list-toolbar input,
.project-list-toolbar input {
  min-width: min(360px, 100%);
  flex: 1 1 260px;
}

.list-toolbar select,
.project-list-toolbar select {
  min-width: 150px;
}

.list-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#projects-table-body td:nth-child(1),
#projects-table-body td:nth-child(2),
#projects-table-body td:nth-child(4),
#e-review-projects-table-body td:nth-child(1),
#e-review-projects-table-body td:nth-child(2),
#e-review-projects-table-body td:nth-child(3) {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#projects-table-body td:last-child,
#e-review-projects-table-body td:last-child {
  min-width: 180px;
  white-space: normal;
}

.bidder-grid {
  max-height: 72vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
}

.bidder-card {
  overflow-wrap: anywhere;
}

.project-title,
.bidder-name {
  overflow-wrap: anywhere;
}

.badge-success,
.category-badge.success,
.status-tag.success {
  background: #eefaf1 !important;
  border-color: #b7dfc0 !important;
  color: #166534 !important;
  font-weight: 600 !important;
}

.badge-warning,
.category-badge.warning,
.status-tag.warning {
  background: #fff8e6 !important;
  border-color: #f3d389 !important;
  color: #92400e !important;
  font-weight: 600 !important;
}

.badge-danger,
.category-badge.danger,
.status-tag.danger {
  background: #fff0f0 !important;
  border-color: #f4b4b4 !important;
  color: #991b1b !important;
  font-weight: 600 !important;
}

.badge-info,
.category-badge.info,
.status-tag.info {
  background: #ecfeff !important;
  border-color: #a5f3fc !important;
  color: #155e75 !important;
  font-weight: 600 !important;
}

/* 全站流式布局基线 */
html,
body {
  min-width: 0;
  max-width: 100%;
}
.portal-auth-shell,
.opening-hall-shell,
.portal-workspace-content,
.page-container {
  min-width: 0;
  max-width: 100%;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    min-width: 0;
  }

  .sidebar {
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .sidebar.open {
    left: 0;
  }

  .main-content {
    width: 100%;
    padding: 10px;
    margin-top: 60px;
  }

  .header {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .header-greeting {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-user {
    width: 100%;
    justify-content: space-between;
  }

  /* 移动端菜单按钮 */
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: var(--ui-primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
  }

  /* 遮罩层 */
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .sidebar-overlay.active {
    display: block;
  }

  /* 宽表由明确的外层容器承担横向滚动，避免表格脱离原生语义 */
  .table-wrap,
  .table-wrapper,
  .table-responsive,
  .table-container {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* 卡片响应式 */
  .card {
    margin-bottom: 10px;
  }

  /* 工作台摘要条与面板网格的响应式由 dashboard-pro.css 统一控制，
     此处不再重复定义（style.css 先加载，重复规则永远被后者覆盖） */
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  /* 表单响应式 */
  .form-group {
    margin-bottom: 15px;
  }

  .form-row {
    flex-direction: column;
  }

  /* 按钮响应式 */
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* 平板适配 */
@media (min-width: 769px) and (max-width: 1024px) {
  .layout {
    min-width: 0;
  }

  .sidebar {
    width: 200px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #ffffff !important;
  }
}

/* 谈判纪要 */
.oh-quote-minutes {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 6px;
  padding: 12px;
  margin: 8px 0;
  font-size: 13px;
}
.oh-quote-minutes pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 4px 0 0;
  font-family: inherit;
  font-size: 12px;
  color: #666;
}

/* 添加纪要按钮 */
.oh-add-minutes-btn {
  margin-left: 8px;
}

/* 唱标确认按钮 */
.js-opening-hall-confirm {
  background: #52c41a;
  border-color: #52c41a;
  color: white;
}
.js-opening-hall-confirm:hover {
  background: #73d13d;
  border-color: #73d13d;
}

/* 解密异常按钮 */
.js-opening-hall-failure {
  font-size: var(--dloa-font-size-xs);
  padding: 2px 8px;
}
