/**
 * 上传许可证弹窗样式
 *
 * 基于 Figma 设计要点：
 * - 圆角 32px，padding 32px/20px
 * - 标题 20px Medium，描述 17px Regular
 * - 按钮高度 52px，圆角 16px，12px Bold 大写
 * - 两个按钮水平排列，gap 12px
 */
/* Modal 容器样式覆盖 */
.index__uploadModal--lbwSO .ant-modal-content {
  padding: 0;
  border-radius: 32px;
  overflow: hidden;
}
.index__uploadModal--lbwSO .ant-modal-header {
  display: none;
}
.index__uploadModal--lbwSO .ant-modal-body {
  padding: 0;
}
.index__uploadModal--lbwSO .ant-modal-footer {
  margin: 0;
  padding: 0;
}
.index__uploadModal--lbwSO .ant-modal-close {
  display: none;
}
/* 隐藏的文件输入 */
.index__hiddenInput--lkzZE {
  display: none;
}
/* 内容区域 */
.index__content--FDNKB {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 36px 32px;
  text-align: center;
}
.index__title--xLA81 {
  font-family: var(--font-family-wide);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-text-primary);
  margin: 0;
}
.index__description--gYJLH {
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-secondary);
  margin: 0;
}
/* 按钮区域 - 水平排列 */
.index__buttons--wD7E2 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 0 20px 20px;
}
.index__cancelBtn--f4T4P {
  flex: 1;
  height: 52px;
  border-radius: 16px;
  font-family: var(--font-family-wide);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: #f2f3f7;
  border: none;
  color: var(--color-text-primary);
}
.index__cancelBtn--f4T4P:hover:not(:disabled) {
  background: #e5e6ea;
  color: var(--color-text-primary);
}
.index__cancelBtn--f4T4P:active:not(:disabled) {
  background: #d8d9dd;
  color: var(--color-text-primary);
}
.index__cancelBtn--f4T4P:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.index__uploadBtn--YePBc {
  flex: 1;
  height: 52px;
  border-radius: 16px;
  font-family: var(--font-family-wide);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background-color: #ff0032;
  border: none;
  color: #fff;
}
.index__uploadBtn--YePBc:hover:not(:disabled),
.index__uploadBtn--YePBc:focus:not(:disabled) {
  background-color: #e6002d;
  color: #fff;
  border-color: transparent;
}
.index__uploadBtn--YePBc:active:not(:disabled) {
  background-color: #cc0028;
  color: #fff;
}
.index__uploadBtn--YePBc:disabled {
  background-color: #ff0032;
  color: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}
.index__uploadBtn--YePBc.ant-btn-loading {
  background-color: #ff0032;
  color: #fff;
  opacity: 0.8;
}
/*# sourceMappingURL=/data/src/pages/admin/subscription/licenses/components/upload-license-modal/index.css.map */
/**
 * 确认许可证弹窗样式
 * 
 * 布局说明：
 * - 固定高度 800px
 * - 内容区域可滚动
 * - 底部按钮区域固定
 * 
 * 基于 Figma 设计：593-15663
 */
.index__modalContent--kZ3Vm {
  display: flex;
  flex-direction: column;
  height: 600px;
  overflow: hidden;
}
.index__scrollContainer--aa1Vz {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
/* 许可证信息卡片容器 */
.index__licenseInfoCard--bsZZn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
/* 第一行：许可证 ID + 部署模式 */
.index__licenseInfoRow--Bk2aS {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
/* 单个信息卡片 */
.index__licenseInfoItem--O7Ozt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  height: 80px;
  box-sizing: border-box;
  border: 1px solid rgba(188, 195, 208, 0.5);
  border-radius: 16px;
  background-color: var(--color-bg-container);
}
/* 全宽信息卡片（有效期） */
.index__licenseInfoItemFull--AhtHc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  height: 80px;
  box-sizing: border-box;
  border: 1px solid rgba(188, 195, 208, 0.5);
  border-radius: 16px;
  background-color: var(--color-bg-container);
}
.index__licenseInfoLabel--U6zYK {
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #626c77;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index__licenseInfoValue--AbZpq {
  font-family: 'MTS Compact', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  color: #1d2023;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 应用席位对比区域 */
.index__seatComparisonSection--veDgR {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(188, 195, 208, 0.5);
  border-radius: 16px;
  background-color: var(--color-bg-container);
}
.index__sectionTitle--IwtqG {
  font-family: 'MTS Compact', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #1d2023;
  margin: 0;
}
/* 表格样式 */
.index__comparisonTable--Mw8xA {
  width: 100%;
}
.index__comparisonTable--Mw8xA .ant-table {
  background: transparent;
}
.index__comparisonTable--Mw8xA .ant-table-thead > tr > th {
  background-color: transparent;
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1d2023;
  padding: 12px;
  border-bottom: 1px solid rgba(188, 195, 208, 0.5);
}
.index__comparisonTable--Mw8xA .ant-table-tbody > tr > td {
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1d2023;
  padding: 12px;
  border-bottom: 1px solid rgba(188, 195, 208, 0.5);
}
.index__comparisonTable--Mw8xA .ant-table-tbody > tr:last-child > td {
  border-bottom: none;
}
/* 变化值样式 */
.index__changePositive--Hvj7P {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #26cd58;
  font-weight: 500;
}
.index__changePositive--Hvj7P::before {
  content: '↑';
  font-size: 14px;
}
.index__changeNegative--XclWZ {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ff0032;
  font-weight: 500;
}
.index__changeNegative--XclWZ::before {
  content: '↓';
  font-size: 14px;
}
.index__changeNeutral--hwJF9 {
  color: #626c77;
}
/* 无数据显示 */
.index__noData--yOdxE {
  color: #626c77;
}
/* 底部按钮区域 */
.index__footerButtons--uLScy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px 0 0;
  margin-top: auto;
}
.index__cancelButton--ZaH_q {
  flex: 1;
  height: 52px;
  padding: 14px 20px;
  font-family: 'MTS Wide', 'MTS Compact', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1d2023;
  background-color: #f2f3f7;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.index__cancelButton--ZaH_q:hover {
  opacity: 0.9;
}
.index__cancelButton--ZaH_q:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.index__confirmButton--myFzh {
  flex: 1;
  height: 52px;
  padding: 14px 20px;
  font-family: 'MTS Wide', 'MTS Compact', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background-color: #ff0032;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.index__confirmButton--myFzh:hover {
  opacity: 0.9;
}
.index__confirmButton--myFzh:disabled {
  background-color: #bcc3d0;
  cursor: not-allowed;
}
/* 加载状态 */
.index__loadingContainer--peGG0 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}
/* Modal 自定义样式 */
.index__confirmLicenseModal--C8F1f .ant-modal-content {
  padding: 32px;
  border-radius: 32px;
  overflow: hidden;
}
.index__confirmLicenseModal--C8F1f .ant-modal-header {
  padding: 0;
  margin-bottom: 16px;
  border-bottom: none;
}
.index__confirmLicenseModal--C8F1f .ant-modal-title {
  font-family: 'MTS Compact', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #1d2023;
}
.index__confirmLicenseModal--C8F1f .ant-modal-body {
  padding: 0;
}
.index__confirmLicenseModal--C8F1f .ant-modal-footer {
  display: none;
}
.index__confirmLicenseModal--C8F1f .ant-modal-close {
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  background-color: #f2f3f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index__confirmLicenseModal--C8F1f .ant-modal-close .ant-modal-close-x {
  font-size: 16px;
  color: #1d2023;
}
/* 描述文本 */
.index__modalDescription--s8g4_ {
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1d2023;
  margin: 0 0 16px;
}
/*# sourceMappingURL=/data/src/pages/admin/subscription/licenses/components/confirm-license-modal/index.css.map */
/**
 * 许可证管理页面样式
 */
.index__container--MQJcO {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 24px;
  background-color: #fff;
}
.index__loadingState--VLDSJ {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.index__errorState--CrMAn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
}
/* 页面头部 */
.index__pageHeader--uLCPO {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index__pageTitle--pgyBS {
  margin: 0;
  font-family: 'MTS Compact', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #1d2023;
}
.index__updateButton--AwExS {
  height: 36px !important;
  padding: 6px 16px !important;
  border: none;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.index__updateButton--AwExS span {
  font-family: 'MTS Wide', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* 信息列表 */
.index__infoList--BwVjl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.index__infoRow--b1OU6 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(188, 195, 208, 0.5);
}
.index__infoRow--b1OU6:last-child {
  border-bottom: none;
}
.index__infoLabel--jr8tw {
  flex-shrink: 0;
  width: 112px;
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #626c77;
  white-space: pre-wrap;
}
.index__infoValue--MGUKz {
  flex: 1;
  min-width: 0;
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1d2023;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.index__statusContainer--dQwsI {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.index__statusIcon--I_akG {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.index__statusText--qTjqj {
  font-family: 'MTS Compact', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1d2023;
}
/* 通用卡片样式 */
.index__card--PEWUV {
  margin-top: 24px;
  border-radius: 16px;
  border: 1px solid rgba(188, 195, 208, 0.5);
}
.index__cardTitle--nGvuW {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #1d2023;
}
.index__cardTitleIcon--Nug8D {
  font-size: 18px;
  color: #1d2023;
}
/* 描述列表样式 */
.index__descriptions--Tu6nc {
  margin-top: 16px;
}
/* 分割线 */
.index__divider--Meg8s {
  margin: 16px 0;
}
/* 表格容器 */
.index__tableContainer--BbUfn {
  margin-top: 16px;
}
/* 签名文本 */
.index__signatureText--tlV_9 {
  word-break: break-all;
  font-family: monospace;
}
/* 指纹文本 */
.index__fingerprintText--PSFGb {
  font-family: monospace;
}
/* 日志提示 */
.index__logHint--mdLK9 {
  color: #626c77;
  font-size: 14px;
}
/*# sourceMappingURL=/data/src/pages/admin/subscription/licenses/index.css.map */

/*# sourceMappingURL=855.38887e9a.chunk.css.map*/