.jq-review-page {
  --blue-deep: #004595;
  --blue-main: #0a5bb5;
  --blue-mid: #1a7ad9;
  --blue-soft: #e8f3ff;
  --blue-band: #0b3f86;
  --text: #333c4d;
  --text-muted: #6b7385;
  --line: #e6eef8;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(15, 64, 128, 0.08);
  --shadow-hover: 0 14px 36px rgba(15, 64, 128, 0.14);
  --radius: 12px;
  --max: 1200px;

  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.jq-review-page *,
.jq-review-page *::before,
.jq-review-page *::after {
  box-sizing: border-box;
}

.jq-review-page .media-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.jq-review-page .container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.jq-review-page .section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  letter-spacing: 2px;
}

.jq-review-page .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a6ad4, #37a0ff);
}

/* ========== Hero ========== */
.jq-review-page .hero {
  display: grid;
  width: 100%;
  height: 755px;
  background-color: #eaf4ff;
}

.jq-review-page .hero-bg {
  width: 100%;
  background-repeat: no-repeat;
  background-position: right top;
}

.jq-review-page .hero::after {
  content: "";
  grid-area: 1 / 1;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.92) 0%, rgba(248, 251, 255, 0.72) 34%, rgba(248, 251, 255, 0.18) 58%, rgba(248, 251, 255, 0) 72%);
  pointer-events: none;
}

.jq-review-page .hero-inner {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-self: center;
  padding: 72px 0 64px;
}

.jq-review-page .hero-copy {
  /* max-width: 460px;
  padding-left: 8px; */
  animation: jq-review-rise 0.8s ease both;
}

.jq-review-page .hero-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 22px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.jq-review-page .hero-title .brand {
  color: rgba(56, 56, 56, 1);
}

.jq-review-page .hero-title .product {
  color: rgba(6, 105, 255, 1);
}

.jq-review-page .hero-desc {
  margin: 0;
  font-size: 16px;
  color: #5d6880;
  line-height: 1.9;
}

/* ========== Overview ========== */
.jq-review-page .overview {
  padding: 72px 0 40px;
  background: #fff;
}

.jq-review-page .overview-desc {
  max-width: 1200px;
  margin: 28px auto 42px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.95;
}

.jq-review-page .overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.jq-review-page .overview-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 88px;
  padding: 18px 10px 18px 16px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(20, 50, 100, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jq-review-page .overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20, 50, 100, 0.08);
}

.jq-review-page .overview-card-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* 第 2 张四宫格图：用定位展示四个图标，不切割 */
.jq-review-page .overview-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background-image: url("/upload/images/2026/8/2f57396ee3af0f6d.png");
  background-repeat: no-repeat;
  /* 放大裁掉宫格白边，避免图标右侧虚空导致左右间距不均 */
  background-size: 260% 260%;
}

.jq-review-page .overview-icon--folder { background-position: -11px -12px; }
.jq-review-page .overview-icon--people { background-position: -72px -13px; }
.jq-review-page .overview-icon--shield { background-position: -11px -70px; }
.jq-review-page .overview-icon--doc { background-position: -72px -70px; }

.jq-review-page .overview-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.jq-review-page .overview-label {
  font-size: 16px;
  font-weight: 600;
  color: #2a3344;
  white-space: nowrap;
  line-height: 1.2;
}

.jq-review-page .overview-note {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #2a3344;
  line-height: 1.45;
}

/* ========== Functions ========== */
.jq-review-page .functions {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.jq-review-page .func-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.jq-review-page .func-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px 24px;
  min-height: 300px;
  box-shadow: 0 4px 18px rgba(20, 60, 120, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.jq-review-page .func-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #cfe2f8;
}

.jq-review-page .func-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.jq-review-page .func-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, #1a7fe0, #0b56b8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(16, 90, 180, 0.28);
}

.jq-review-page .func-illust {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin: 10px 0 12px;
}

.jq-review-page .func-illust-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 0;
}

.jq-review-page .func-title {
  margin: 0;
  font-size: 18px;
  color: var(--blue-deep);
  font-weight: 700;
  line-height: 1.3;
}

.jq-review-page .func-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========== Showcase ========== */
.jq-review-page .showcase {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, rgba(2, 43, 115, 1) 0%, rgba(0, 80, 199, 1) 100%);
  overflow: hidden;
}

.jq-review-page .showcase::before,
.jq-review-page .showcase::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
}

.jq-review-page .showcase::before {
  left: -160px;
  top: -120px;
  background: radial-gradient(circle, rgba(70, 160, 255, 0.22), transparent 68%);
}

.jq-review-page .showcase::after {
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(40, 130, 240, 0.2), transparent 68%);
}

.jq-review-page .showcase-title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 42px;
  font-weight: 400;
}

.jq-review-page .showcase-title .title-strong {
  font-weight: 700;
}

.jq-review-page .showcase-title .title-light {
  font-weight: 300;
  opacity: 0.95;
}

.jq-review-page .showcase-title .title-sep {
  opacity: 0.85;
  margin: 0 12px;
  font-weight: 400;
}

.jq-review-page .showcase-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 0;
}

.jq-review-page .shot {
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  background: transparent;
  flex-shrink: 0;
}

.jq-review-page .shot-main {
  width: min(52%, 680px);
  z-index: 3;
}

.jq-review-page .shot-left,
.jq-review-page .shot-right {
  width: min(26%, 320px);
  opacity: 0.96;
  z-index: 1;
}

.jq-review-page .shot-left {
  transform: translateX(30%);
}

.jq-review-page .shot-right {
  transform: translateX(-30%);
}

.jq-review-page .shot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ========== Value ========== */
.jq-review-page .value {
  position: relative;
  padding: 80px 0 100px;
  background:
    url("./assets/bg-footer.png") center bottom / cover no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  overflow: hidden;
}

.jq-review-page .value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.jq-review-page .value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  animation: jq-review-rise 0.7s ease both;
}

.jq-review-page .value-item:nth-child(2) { animation-delay: 0.08s; }
.jq-review-page .value-item:nth-child(3) { animation-delay: 0.16s; }
.jq-review-page .value-item:nth-child(4) { animation-delay: 0.24s; }

.jq-review-page .value-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  transition: transform 0.25s ease;
}

.jq-review-page .value-item:hover .value-icon {
  transform: translateY(-4px) scale(1.04);
}

.jq-review-page .value-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 0;
}

.jq-review-page .value-label {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #243247;
  line-height: 1.4;
}

@keyframes jq-review-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .jq-review-page .overview-grid,
  .jq-review-page .func-grid,
  .jq-review-page .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jq-review-page .hero::after {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.94) 0%, rgba(248, 251, 255, 0.78) 42%, rgba(248, 251, 255, 0.2) 100%);
  }

  .jq-review-page .hero-inner {
    padding: 56px 0 40px;
  }

  .jq-review-page .hero-copy {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 22px 20px;
  }

  .jq-review-page .showcase-stage { gap: 12px; }
}

/* 覆盖站内全局 h3 { font-size: 40px !important }（≤768px） */
@media (max-width: 768px) {
  .jq-review-page .func-title {
    font-size: 18px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 640px) {
  .jq-review-page .section-title { font-size: 20px; }

  .jq-review-page .overview-grid,
  .jq-review-page .func-grid,
  .jq-review-page .value-grid {
    grid-template-columns: 1fr;
  }

  .jq-review-page .overview-card { justify-content: flex-start; }

  .jq-review-page .hero-title { font-size: 32px; }

  .jq-review-page .showcase-title { font-size: 20px; padding: 0 12px; }
  .jq-review-page .shot-left,
  .jq-review-page .shot-right { display: none; }
  .jq-review-page .shot-main { width: 92%; }

  .jq-review-page .func-card { min-height: auto; }
}

/* ========== Overview img icons (不改动原 overview-icon CSS) ========== */
.jq-review-page .overview-icon-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

/* ========== Overview 3/4 列自适应居中（不改动原 overview-grid） ========== */
.jq-review-page .overview-grid-fit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.jq-review-page .overview-grid-fit .overview-card {
  width: calc((100% - 150px) / 4);
  flex: 0 0 calc((100% - 150px) / 4);
}

@media (max-width: 1024px) {
  .jq-review-page .overview-grid-fit .overview-card {
    width: calc((100% - 50px) / 2);
    flex: 0 0 calc((100% - 50px) / 2);
  }
}

@media (max-width: 640px) {
  .jq-review-page .overview-grid-fit .overview-card {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* ========== Functions 三列布局（不改动原 func-grid） ========== */
.jq-review-page .func-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

@media (max-width: 1024px) {
  .jq-review-page .func-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .jq-review-page .func-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ========== Functions 无描述卡片（不改动原 func-card） ========== */
.jq-review-page .func-card-simple {
  min-height: 0;
  padding-bottom: 18px;
}

.jq-review-page .func-card-simple .func-illust {
  margin-bottom: 0;
}

/* ========== 核心硬件（不改动原 value-grid） ========== */
.jq-review-page .hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.jq-review-page .hw-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 168px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jq-review-page .hw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.jq-review-page .hw-visual {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jq-review-page .hw-visual-img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  display: block;
}

.jq-review-page .hw-copy {
  min-width: 0;
}

.jq-review-page .hw-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1a2333;
  line-height: 1.3;
}

.jq-review-page .hw-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .jq-review-page .hw-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jq-review-page .hw-title {
    font-size: 18px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 640px) {
  .jq-review-page .hw-card {
    min-height: 0;
    padding: 24px 20px;
  }
}
