/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/system-info/system-info.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
/* —— 放大页面可用宽度（可选） —— */
.system-info_page__f8ySa {
  background: linear-gradient(to bottom, #0b1220, #0f172a);
  color: #e5e7eb;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 关键：允许超 1100px，更大屏也能更宽 */
  width: 100%;
}

.system-info_grid__UpOw0 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  /* 提高上限，否则 gallery 再大也被卡住 */
  max-width: 1400px;   /* ← 从 1100px 提到 1400px */
  width: 100%;
}

/* —— 放大画廊 —— */
.system-info_gallery__IUCH_ {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;                 /* 间距更大 */
  max-width: 1400px;         /* ← 放宽 */
  width: 100%;
  margin-top: 30px;
}
.system-info_title__UhPeP {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}


@media (min-width: 900px) {
  .system-info_grid__UpOw0 {
    grid-template-columns: 1fr 1fr;
  }
}

.system-info_card__IGaT_ {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.system-info_cardHeader__SYAP7 {
  padding: 16px 20px 0;
}

.system-info_cardTitle__Bzib0 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.system-info_cardSubtitle__NRMZR {
  margin: 6px 0 0 0;
  font-size: 14px;
  color: #94a3b8;
}

.system-info_cardBody__StI_X {
  padding: 20px;
}

.system-info_chartWrap__BG57W {
  position: relative;
  width: 100%;
  height: 320px;
}

/* 900px 以上：一行两张（每张更大） */
@media (min-width: 900px) {
  .system-info_gallery__IUCH_ { grid-template-columns: 1fr 1fr; }
}

/* 1400px 以上：再升级到三列（超大屏） */
@media (min-width: 1400px) {
  .system-info_gallery__IUCH_ { grid-template-columns: 1fr 1fr 1fr; }
}
/* 用固定高度更直观：确保 fill 能撑开父节点高度 */
.system-info_imageWrapper__QraEk {
  position: relative;
  width: 100%;
  height: 320px;             /* ← 从 aspect-ratio 改为固定更高的高度 */
  /* 如果更喜欢比例法，也可以注释上面一行，用下面这行：
     aspect-ratio: 16 / 10;   // 让单卡更“横向” */
}

/* 让图片卡片视觉更“重”一些（可选） */
.system-info_imageCard__NRAHr {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.system-info_imageCard__NRAHr:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.system-info_imageLabel__KWK5X {
  text-align: center;
  padding: 12px;
  font-size: 15px;
  color: #d1d5db;
}

.system-info_loading__07OV8 {
  color: #94a3b8;
  font-size: 18px;
  text-align: center;
  padding: 60px;
}

