/* resources_actions.css — 资源总览批量操作弹窗（G6.5）*/
.ra-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.ra-modal {
  background: #fff;
  border-radius: 12px;
  width: 480px;
  max-width: 92vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 24px;
}
.ra-modal h3 {
  margin: 0 0 16px;
  font-size: 16px;
}
.ra-modal label {
  display: block;
  margin: 10px 0 4px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.ra-modal select,
.ra-modal input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 13px;
  box-sizing: border-box;
}
.ra-modal select[multiple] {
  height: 120px;
}
.ra-modal .ra-mode-toggle {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}
.ra-modal .ra-mode-toggle button {
  padding: 5px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
}
.ra-modal .ra-mode-toggle button.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.ra-modal .ra-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
.ra-modal .ra-progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin: 12px 0;
  overflow: hidden;
}
.ra-modal .ra-progress-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: width 0.3s;
  width: 0%;
}
.ra-modal .ra-info {
  font-size: 12px;
  color: #6b7280;
  margin: 4px 0;
}
