/* 二级：模块详情（左文右图） */
.screen--detail {
  background:
    radial-gradient(1000px 500px at 18% 30%, rgba(200, 16, 46, 0.14), transparent 65%),
    linear-gradient(180deg, #0d1224 0%, #06080f 100%);
}

.detail-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 60px;
}

.detail-counter {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.85);
}

.detail-hint {
  flex: 1;
  font-size: 30px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-align: right;
  margin-right: 10px;
}

.detail-content {
  position: absolute;
  top: 170px;
  left: 0;
  right: 0;
  bottom: 40px;
  display: grid;
  grid-template-columns: 1180px 1fr;
  gap: 70px;
  padding: 20px 120px 20px 130px;
}

/* 左侧文字区 */
.detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}

.detail-accent {
  width: 120px;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--crcc-red-bright), var(--crcc-red));
  box-shadow: 0 0 24px rgba(200, 16, 46, 0.7);
}

.detail-title {
  font-size: 104px;
  font-weight: 700;
  letter-spacing: 8px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.55);
}

.detail-desc {
  font-size: 42px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.detail-body {
  font-size: 34px;
  line-height: 1.7;
  color: var(--text-dim);
}

.detail-caption {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-caption-accent {
  flex: none;
  width: 8px;
  height: 52px;
  border-radius: 4px;
  background: var(--crcc-red);
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.7);
}

.detail-caption-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail-item-desc {
  font-size: 28px;
  color: var(--text-dim);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail-item-desc:empty {
  display: none;
}

/* 右侧单张大图：保持原始比例，不拉伸 */
.detail-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #05070d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.detail-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  transition: opacity 0.35s ease;
}

.detail-image.is-changing {
  animation: imageFade 0.45s ease;
}

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