/* 网站解决方案：独立作用域，不影响 header.html */
.qy-web-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0, rgba(18, 99, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fbff 100%);
}

.qy-web-hero {
  padding: 0 0 58px;
}

.qy-web-hero__banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 350px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 99, 255, 0.12), transparent 34%),
    #ffffff;
  isolation: isolate;
}

.qy-web-hero__banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 31%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.qy-web-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.qy-web-hero__empty,
.qy-web-image-empty {
  display: none;
  place-items: center;
  padding: 24px;
  color: var(--qy-muted);
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
}

.qy-web-hero__empty {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.qy-web-hero__banner.is-empty .qy-web-hero__empty,
.qy-web-split__media.is-empty .qy-web-image-empty,
.qy-web-select-media.is-empty .qy-web-image-empty {
  display: grid;
}

.qy-web-hero__empty strong,
.qy-web-image-empty strong {
  color: var(--qy-title);
  font-size: 20px;
  font-weight: 900;
}

.qy-web-hero__empty span,
.qy-web-image-empty span {
  display: block;
  max-width: 100%;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  word-break: break-all;
}

.qy-web-hero__content {
  position: absolute;
  top: 50%;
  left: max(28px, calc((100vw - 1200px) / 2 + 18px));
  z-index: 2;
  width: min(570px, 44vw);
  transform: translateY(-50%);
  text-align: left;
  writing-mode: horizontal-tb;
}

.qy-web-hero .qy-section-label {
  justify-content: flex-start;
}

.qy-web-hero h1 {
  display: block;
  margin: 14px 0 0;
  color: var(--qy-title);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
  word-break: keep-all;
}

.qy-web-hero p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--qy-text);
  font-size: 16px;
  line-height: 1.9;
}

.qy-web-hero__actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.qy-web-section {
  padding: 50px 0;
}

.qy-web-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.qy-web-split__media,
.qy-web-select-media {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 34px;
  background: #f8fbff;
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.08);
}

.qy-web-split__media::after,
.qy-web-select-media::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  pointer-events: none;
}

.qy-web-split__media img,
.qy-web-select-media img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.qy-web-split__content h2,
.qy-web-section-head h2,
.qy-web-select-content h2 {
  margin: 14px 0 0;
  color: var(--qy-title);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.qy-web-split__content > p,
.qy-web-section-head p,
.qy-web-select-content > p {
  margin: 16px 0 0;
  color: var(--qy-text);
  font-size: 15px;
  line-height: 1.9;
}

.qy-web-pressure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.qy-web-pressure-grid article,
.qy-web-arch-node,
.qy-web-arch-side,
.qy-web-stage-list article {
  position: relative;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.qy-web-pressure-grid article {
  min-height: 178px;
  padding: 24px;
  border-radius: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qy-web-pressure-grid article:hover,
.qy-web-stage-list article:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 58px rgba(18, 99, 255, 0.13);
}

.qy-web-pressure-grid i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--qy-white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--qy-primary), var(--qy-sky));
  box-shadow: 0 14px 28px rgba(18, 99, 255, 0.22);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}

.qy-web-pressure-grid h3,
.qy-web-arch-node strong,
.qy-web-arch-side h3,
.qy-web-stage-list strong {
  margin: 0;
  color: var(--qy-title);
  font-weight: 900;
}

.qy-web-pressure-grid h3 {
  font-size: 20px;
  line-height: 1.35;
}

.qy-web-pressure-grid p,
.qy-web-arch-node p,
.qy-web-arch-side p,
.qy-web-stage-list span {
  margin: 10px 0 0;
  color: var(--qy-text);
  font-size: 14px;
  line-height: 1.8;
}

.qy-web-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.qy-web-section-head .qy-section-label {
  justify-content: center;
}

.qy-web-arch-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid #dbeafe;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 99, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
}

.qy-web-arch-card::before {
  position: absolute;
  top: -150px;
  right: -130px;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 50%;
  background: rgba(18, 99, 255, 0.08);
  pointer-events: none;
}

.qy-web-arch-main,
.qy-web-arch-side {
  position: relative;
  z-index: 1;
}

.qy-web-arch-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  align-items: center;
}

.qy-web-arch-node {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
}

.qy-web-arch-node::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  content: "";
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, var(--qy-primary), var(--qy-sky));
}

.qy-web-arch-node span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--qy-primary);
  border-radius: 999px;
  background: var(--qy-primary-light);
  font-size: 13px;
  font-weight: 900;
}

.qy-web-arch-node strong {
  display: block;
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.35;
}

.qy-web-arch-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 99, 255, 0.18), rgba(18, 99, 255, 0.8));
}

.qy-web-arch-line::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid var(--qy-primary);
  border-right: 2px solid var(--qy-primary);
  transform: translateY(-50%) rotate(45deg);
}

.qy-web-arch-side {
  padding: 30px;
  border-radius: 28px;
}

.qy-web-arch-side h3 {
  font-size: 24px;
  line-height: 1.3;
}

.qy-web-cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.qy-web-cap-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--qy-title);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 900;
}

.qy-web-selection {
  padding-bottom: 90px;
}

.qy-web-select-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid #dbeafe;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 99, 255, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
}

.qy-web-stage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.qy-web-stage-list article {
  padding: 20px;
  border-radius: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qy-web-stage-list strong {
  display: block;
  font-size: 18px;
}

.qy-web-stage-list span {
  display: block;
}

.qy-web-select-media img {
  min-height: 420px;
}

@media (max-width: 1120px) {
  .qy-web-split,
  .qy-web-select-card,
  .qy-web-arch-card {
    grid-template-columns: 1fr;
  }

  .qy-web-arch-main {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .qy-web-hero {
    padding-bottom: 40px;
  }

  .qy-web-hero__banner {
    min-height: 340px;
  }

  .qy-web-hero__content {
    left: 28px;
    width: min(520px, 54vw);
  }

  .qy-web-section {
    padding: 40px 0;
  }

  .qy-web-split__media img,
  .qy-web-select-media img {
    min-height: 320px;
  }

  .qy-web-select-card,
  .qy-web-arch-card {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .qy-web-hero__banner {
    aspect-ratio: auto;
    min-height: 430px;
  }

  .qy-web-hero__banner::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.16) 100%);
  }

  .qy-web-hero__bg {
    object-position: center right;
  }

  .qy-web-hero__content {
    top: 34px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 420px;
    transform: none;
  }

  .qy-web-hero h1 {
    font-size: 32px;
  }

  .qy-web-hero p {
    font-size: 14px;
  }

  .qy-web-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin-left: 0;
    margin-right: auto;
  }

  .qy-web-split,
  .qy-web-pressure-grid,
  .qy-web-stage-list {
    grid-template-columns: 1fr;
  }

  .qy-web-split__media,
  .qy-web-select-media,
  .qy-web-split__media::after,
  .qy-web-select-media::after {
    border-radius: 24px;
  }

  .qy-web-split__media img,
  .qy-web-select-media img,
  .qy-web-image-empty {
    min-height: 220px;
  }

  .qy-web-pressure-grid article,
  .qy-web-stage-list article {
    min-height: auto;
    padding: 22px;
  }

  .qy-web-arch-card,
  .qy-web-select-card {
    padding: 22px;
    border-radius: 24px;
  }

  .qy-web-arch-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qy-web-arch-line {
    width: 2px;
    height: 26px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(18, 99, 255, 0.18), rgba(18, 99, 255, 0.8));
  }

  .qy-web-arch-line::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .qy-web-arch-node {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .qy-web-arch-side {
    padding: 24px;
    border-radius: 24px;
  }

  .qy-web-selection {
    padding-bottom: 66px;
  }
}

@media (max-width: 520px) {
  .qy-web-hero__banner {
    min-height: 400px;
  }

  .qy-web-hero__content {
    top: 28px;
  }

  .qy-web-split__content h2,
  .qy-web-section-head h2,
  .qy-web-select-content h2 {
    font-size: 27px;
  }

  .qy-web-pressure-grid h3,
  .qy-web-arch-node strong {
    font-size: 19px;
  }
}
