body.qun-home {
  --qun-green: #07c160;
  --qun-green-deep: #05a851;
  --qun-green-dark: #048a45;
  --qun-green-soft: #e8fff3;
  --qun-cyan: #07c160;
  --qun-cyan-soft: #f2fff8;
  --qun-yellow: #ffffff;
  --qun-ink: #161515;
  --qun-text: #595959;
  --qun-muted: #8a8a8a;
  --qun-bg: #f4fbf7;
  --qun-line: #edf0f4;
  --qun-blue: #07c160;
  --qun-orange: #07c160;
  min-width: 1180px;
  overflow-x: hidden;
  background: #fff;
  color: var(--qun-ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

.qun-home .site-shell {
  min-height: 100vh;
  padding: 0;
}

.qun-home .site-header {
  position: relative;
  top: auto;
  z-index: 10;
  width: 1132px;
  height: 60px;
  max-width: 1132px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.qun-home .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.qun-home .site-footer,
.qun-home .site-header__side,
.qun-home .brand-mark__subtitle {
  display: none;
}

.qun-home .brand-mark {
  gap: 12px;
  height: 60px;
  font-family: inherit;
}

.qun-home .brand-mark__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: none;
}

.qun-home .brand-mark__title {
  color: var(--qun-ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.qun-hero {
  min-width: 1180px;
  padding: 0 0 46px;
  background:
    linear-gradient(180deg, #ffffff 0%, #effff6 100%);
}

.qun-hero__inner {
  --qun-hero-copy-gutter: max(66px, calc((100% - 1132px) / 2 + 66px));
  --qun-hero-visual-gutter: max(28px, calc((100% - 1132px) / 2 + 28px));
  position: relative;
  display: flex;
  width: 100%;
  height: 548px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 150px),
    linear-gradient(152deg, transparent 0%, rgba(255, 255, 255, 0.14) 44%, transparent 45%, transparent 68%, rgba(255, 255, 255, 0.1) 69%, transparent 70%),
    linear-gradient(135deg, #058f49 0%, #06b85d 52%, #07c160 100%);
  box-shadow: 0 28px 70px rgba(7, 193, 96, 0.18);
}

.qun-hero__inner::before,
.qun-hero__inner::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.qun-hero__inner::before {
  top: -92px;
  left: -64px;
  width: 275px;
  height: 275px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 46px;
  transform: rotate(42deg);
}

.qun-hero__inner::after {
  right: 310px;
  bottom: -142px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 54px;
  transform: rotate(45deg);
}

.qun-hero__content {
  position: relative;
  z-index: 1;
  width: 660px;
  margin-left: var(--qun-hero-copy-gutter);
  padding-top: 78px;
  padding-left: 0;
}

.qun-hero__eyebrow {
  margin: 0;
  color: #ffe68a;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(5, 168, 81, 0.26);
}

.qun-hero h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: 0 3px 20px rgba(4, 138, 69, 0.28);
}

.qun-hero__desc {
  margin: 18px 0 0;
  max-width: 620px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.qun-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.qun-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.qun-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.qun-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 204px;
  height: 58px;
  padding: 0 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--qun-green-deep);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.qun-btn:first-child {
  background: #fff;
  color: var(--qun-green-deep);
}

.qun-btn + .qun-btn {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.qun-btn span:not(.qun-btn__icon) {
  white-space: nowrap;
}

.qun-btn i {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.qun-btn__icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.qun-btn__icon--miniapp {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
  place-content: center;
}

.qun-btn__icon--miniapp::before,
.qun-btn__icon--miniapp::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.qun-btn__icon--miniapp::before {
  left: 2px;
  top: 2px;
  box-shadow:
    13px 0 0 currentColor,
    0 13px 0 currentColor;
}

.qun-btn__icon--miniapp::after {
  right: 2px;
  bottom: 2px;
  background: transparent;
  box-shadow:
    inset 0 0 0 2px currentColor,
    -5px -5px 0 -2px currentColor;
}

.qun-btn__icon--desktop::before {
  position: absolute;
  inset: 3px 1px 7px;
  border: 2px solid currentColor;
  content: "";
}

.qun-btn__icon--desktop::after {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 7px -3px 0 currentColor;
  content: "";
}

.qun-hero__visual {
  position: absolute;
  top: 58px;
  right: var(--qun-hero-visual-gutter);
  width: 360px;
  height: 452px;
}

.qun-flow-stage {
  position: relative;
  width: 360px;
  height: 452px;
  isolation: isolate;
}

.qun-flow-grid {
  position: absolute;
  inset: 5px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(145deg, rgba(7, 193, 96, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.qun-flow-grid::before {
  position: absolute;
  inset: 34px 36px 126px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  content: "";
  transform: skewY(-9deg);
}

.qun-flow-grid::after {
  position: absolute;
  left: 58px;
  top: 66px;
  width: 190px;
  height: 210px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  content: "";
  transform: rotate(-18deg);
}

.qun-flow-orbit {
  --orbit-angle: 0deg;
  --orbit-angle-end: 4deg;
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.qun-flow-orbit--one {
  left: 12px;
  top: 82px;
  width: 250px;
  height: 150px;
  border-radius: 34px;
  --orbit-angle: -17deg;
  --orbit-angle-end: -13deg;
  transform: rotate(-17deg);
  animation: qunFlowOrbit 7.2s ease-in-out infinite;
}

.qun-flow-orbit--two {
  right: 18px;
  bottom: 92px;
  width: 235px;
  height: 132px;
  border-radius: 32px;
  --orbit-angle: 15deg;
  --orbit-angle-end: 19deg;
  transform: rotate(15deg);
  animation: qunFlowOrbit 7.2s ease-in-out -3.2s infinite;
}

.qun-flow-beam {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  opacity: 0;
  pointer-events: none;
  transform-origin: left center;
  animation: qunFlowBeam 2.6s ease-in-out infinite;
}

.qun-flow-beam--one {
  left: 44px;
  top: 170px;
  width: 240px;
  transform: rotate(23deg);
}

.qun-flow-beam--two {
  left: 78px;
  top: 300px;
  width: 210px;
  transform: rotate(-12deg);
  animation-delay: -1.3s;
}

.qun-flow-item {
  --from-x: 0px;
  --from-y: 0px;
  --mid-x: 128px;
  --mid-y: 165px;
  --to-x: 230px;
  --to-y: 306px;
  --angle: 0deg;
  --delay: 0s;
  --item-accent: var(--qun-green);
  --item-soft: #f2fff8;
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, var(--item-soft) 100%);
  box-shadow: 0 14px 28px rgba(2, 42, 22, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  box-sizing: border-box;
  color: #153b27;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transform: translate(var(--from-x), var(--from-y)) rotate(var(--angle));
  animation: qunFlowPack 6.8s cubic-bezier(0.42, 0.02, 0.18, 1) infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.qun-flow-item::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 2px;
  background: var(--item-accent);
  content: "";
  transform: rotate(45deg);
}

.qun-flow-item b {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qun-flow-item i {
  flex: 0 0 auto;
  color: rgba(21, 59, 39, 0.58);
  font-style: normal;
  font-weight: 700;
}

.qun-flow-item--name {
  --from-x: 8px;
  --from-y: 26px;
  --mid-x: 124px;
  --mid-y: 102px;
  --angle: -8deg;
  --delay: -0.4s;
}

.qun-flow-item--phone {
  --from-x: 198px;
  --from-y: 18px;
  --mid-x: 190px;
  --mid-y: 118px;
  --angle: 7deg;
  --delay: -4.3s;
  --item-accent: #18b6ff;
  --item-soft: #eef8ff;
}

.qun-flow-item--image {
  --from-x: 18px;
  --from-y: 112px;
  --mid-x: 130px;
  --mid-y: 158px;
  --angle: 5deg;
  --delay: -1.8s;
  --item-accent: #ffb020;
  --item-soft: #fff7e8;
}

.qun-flow-item--sign {
  --from-x: 228px;
  --from-y: 108px;
  --mid-x: 250px;
  --mid-y: 176px;
  --angle: -6deg;
  --delay: -5.6s;
  --item-accent: #7c5cff;
  --item-soft: #f3f0ff;
}

.qun-flow-item--file {
  --from-x: 42px;
  --from-y: 210px;
  --mid-x: 152px;
  --mid-y: 216px;
  --angle: -3deg;
  --delay: -3.1s;
  --item-accent: #ff6b6b;
  --item-soft: #fff1f1;
}

.qun-flow-item--roster {
  --from-x: 154px;
  --from-y: 238px;
  --mid-x: 202px;
  --mid-y: 240px;
  --angle: 6deg;
  --delay: -6.2s;
}

.qun-flow-item--money {
  --from-x: 2px;
  --from-y: 326px;
  --mid-x: 138px;
  --mid-y: 292px;
  --angle: 8deg;
  --delay: -2.4s;
  --item-accent: #f97316;
  --item-soft: #fff3e8;
}

.qun-flow-item--time {
  --from-x: 116px;
  --from-y: 360px;
  --mid-x: 202px;
  --mid-y: 314px;
  --angle: -7deg;
  --delay: -5s;
  --item-accent: #0ea5e9;
  --item-soft: #eff9ff;
}

.qun-flow-item--note {
  --from-x: 246px;
  --from-y: 256px;
  --mid-x: 270px;
  --mid-y: 282px;
  --angle: 4deg;
  --delay: -1.1s;
  --item-accent: #10b981;
  --item-soft: #edfff8;
}

.qun-info-box {
  position: absolute;
  right: 20px;
  bottom: 38px;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  width: 164px;
  height: 124px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px 18px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(227, 255, 239, 0.96) 100%);
  box-shadow:
    0 24px 48px rgba(2, 42, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--qun-green-dark);
  transform-origin: center bottom;
  animation: qunInfoBoxReceive 1.7s ease-in-out infinite;
}

.qun-info-box::before,
.qun-info-box::after {
  position: absolute;
  left: 14px;
  right: 14px;
  content: "";
}

.qun-info-box::before {
  top: 16px;
  height: 12px;
  border-radius: 999px;
  background: rgba(7, 193, 96, 0.12);
}

.qun-info-box::after {
  bottom: 0;
  height: 34px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(7, 193, 96, 0.1), rgba(7, 193, 96, 0.22));
}

.qun-info-box__lid {
  position: absolute;
  left: 16px;
  top: -19px;
  width: 132px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #d9ffe9 100%);
  box-shadow: 0 14px 28px rgba(2, 42, 22, 0.18);
  transform-origin: center bottom;
  animation: qunInfoLid 1.7s ease-in-out infinite;
}

.qun-info-box__slot {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(5, 168, 81, 0.5), rgba(7, 193, 96, 0.88), rgba(5, 168, 81, 0.5));
  box-shadow: 0 0 18px rgba(7, 193, 96, 0.56);
}

.qun-info-box__label,
.qun-info-box__count {
  position: relative;
  z-index: 1;
}

.qun-info-box__label {
  font-size: 14px;
  font-weight: 800;
}

.qun-info-box__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 30px;
  border-radius: 999px;
  background: var(--qun-green);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(7, 193, 96, 0.26);
}

.qun-flow-badge {
  position: absolute;
  right: 46px;
  bottom: 4px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(2, 42, 22, 0.18);
  color: #345142;
  font-size: 12px;
  font-weight: 700;
  animation: qunFlowBadge 4.2s ease-in-out infinite;
}

.qun-flow-badge strong {
  color: var(--qun-green-deep);
  font-size: 18px;
}

.qun-flow-spark {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: rotate(45deg);
  animation: qunFlowSpark 2.1s ease-in-out infinite;
}

.qun-flow-spark--one {
  right: 168px;
  top: 162px;
}

.qun-flow-spark--two {
  right: 112px;
  top: 232px;
  animation-delay: -0.7s;
}

.qun-flow-spark--three {
  right: 86px;
  top: 318px;
  animation-delay: -1.4s;
}

@keyframes qunFlowPack {
  0%,
  7% {
    opacity: 0;
    filter: blur(1px);
    transform: translate(var(--from-x), var(--from-y)) rotate(var(--angle)) scale(0.9);
  }

  15% {
    opacity: 1;
    filter: blur(0);
  }

  50% {
    opacity: 1;
    transform: translate(var(--mid-x), var(--mid-y)) rotate(0deg) scale(1);
  }

  68% {
    opacity: 1;
    transform: translate(var(--to-x), var(--to-y)) rotate(0deg) scale(0.58);
  }

  76%,
  100% {
    opacity: 0;
    filter: blur(1px);
    transform: translate(var(--to-x), var(--to-y)) rotate(0deg) scale(0.32);
  }
}

@keyframes qunInfoBoxReceive {
  0%,
  54%,
  100% {
    transform: translateY(0) scale(1);
  }

  63% {
    transform: translateY(2px) scale(1.025);
  }
}

@keyframes qunInfoLid {
  0%,
  48%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  62% {
    transform: translateY(-5px) rotateX(22deg);
  }
}

@keyframes qunFlowBeam {
  0%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  42% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0);
  }

  70% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes qunFlowOrbit {
  0%,
  100% {
    opacity: 0.55;
    transform: rotate(var(--orbit-angle)) translateY(0);
  }

  50% {
    opacity: 0.95;
    transform: rotate(var(--orbit-angle-end)) translateY(7px);
  }
}

@keyframes qunFlowSpark {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) rotate(45deg) scale(0.8);
  }

  45% {
    opacity: 1;
    transform: translateY(-12px) rotate(45deg) scale(1);
  }
}

@keyframes qunFlowBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.qun-shot {
  position: absolute;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 3px solid var(--qun-green-dark);
  border-radius: 20px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    repeating-linear-gradient(0deg, #f8fafc 0 28px, #edf1f5 28px 29px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
  color: var(--qun-green-deep);
  font-size: 14px;
  font-weight: 700;
}

.qun-shot::before {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 42px;
  border-radius: 10px;
  background: #f4fbf7;
  box-shadow:
    0 64px 0 #f4fbf7,
    0 128px 0 #f4fbf7,
    0 192px 0 #f4fbf7;
  content: "";
}

.qun-shot span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.qun-shot--hero {
  top: 0;
  left: 0;
  width: 202px;
  height: 405px;
}

.qun-shot--float {
  top: 66px;
  right: 0;
  width: 185px;
  height: 372px;
}

.qun-scenes {
  min-width: 1180px;
  padding: 82px 0 68px;
  background:
    linear-gradient(180deg, #f8fffb 0%, #edfff5 100%);
}

.qun-wrapper {
  width: 1144px;
  margin: 0 auto;
}

.qun-scenes__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.qun-scenes h2 {
  max-width: 690px;
  margin: 0;
  color: var(--qun-ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.28;
  text-align: left;
}

.qun-scenes__head p {
  max-width: 350px;
  margin: 0 0 6px;
  color: #587466;
  font-size: 15px;
  line-height: 1.8;
}

.qun-scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.qun-scene-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border: 1px solid rgba(7, 193, 96, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 193, 96, 0.07);
}

.qun-scene-card__image {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 174px;
  background:
    radial-gradient(circle at 70% 28%, rgba(7, 193, 96, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(232, 255, 243, 0.92), rgba(255, 248, 232, 0.68)),
    repeating-linear-gradient(135deg, rgba(7, 193, 96, 0.08) 0 1px, transparent 1px 16px);
}

.qun-scene-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.qun-scene-card__body {
  padding: 24px 24px 18px;
}

.qun-scene-card h3 {
  margin: 0 0 22px;
  color: var(--qun-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.qun-scene-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin: 0;
  padding: 0;
  color: var(--qun-muted);
  font-size: 14px;
  line-height: 1.4;
  list-style: none;
}

.qun-scene-card li {
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
}

.qun-scene-card li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--qun-green);
  border-bottom: 2px solid var(--qun-green);
  content: "";
  transform: rotate(-45deg);
}

.qun-scene-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
  height: 54px;
  padding: 0 24px;
  border-top: 1px solid var(--qun-line);
  background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
  color: var(--qun-green-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}

.qun-scene-card a::after {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.qun-scene-card a:hover {
  background: var(--qun-green-soft);
  color: var(--qun-green-dark);
}

.qun-more {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 44px auto 0;
  color: var(--qun-green-deep);
  font-size: 14px;
}

.qun-more::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.qun-feature {
  min-width: 1180px;
}

.qun-feature--white {
  background: #ffffff;
}

.qun-feature--gray {
  background: #effff6;
}

.qun-feature__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 1132px;
  min-height: 540px;
  margin: 0 auto;
}

.qun-feature__copy {
  position: relative;
  z-index: 2;
}

.qun-feature__copy h2 {
  margin: 0;
  color: #080808;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.qun-feature__copy h2 span {
  color: var(--qun-green-deep);
}

.qun-feature__copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--qun-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}

.qun-feature__art {
  position: relative;
  display: grid;
  place-items: center;
  height: 430px;
}

.qun-feature__art--edit {
  margin-left: 4px;
}

.qun-feature-illust {
  display: block;
  width: min(520px, 100%);
  height: auto;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(31, 41, 55, 0.1));
}

.qun-art-card,
.qun-mini-card,
.qun-phone-frame,
.qun-phone-panel,
.qun-chat-frame,
.qun-export-stack div {
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    repeating-linear-gradient(0deg, #f9fbfc 0 31px, #e9eef3 31px 32px);
  box-shadow: 0 14px 36px rgba(91, 105, 123, 0.16);
  color: var(--qun-green-deep);
  font-size: 14px;
  font-weight: 700;
}

.qun-art-card--large {
  position: absolute;
  left: 78px;
  top: 20px;
  width: 200px;
  height: 330px;
}

.qun-art-card--front {
  position: absolute;
  left: 235px;
  top: 210px;
  width: 255px;
  height: 150px;
}

.qun-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(91, 105, 123, 0.2);
}

.qun-bubble--orange {
  left: 16px;
  top: 170px;
  background: linear-gradient(180deg, #23d979 0%, var(--qun-green) 100%);
}

.qun-bubble--green {
  left: 460px;
  top: 60px;
  background: linear-gradient(180deg, #2bdd82 0%, #05a851 100%);
}

.qun-bubble--blue {
  left: 450px;
  top: 330px;
  background: linear-gradient(180deg, #07c160 0%, #05a851 100%);
}

.qun-feature__art--roster {
  height: 390px;
}

.qun-mini-card--top {
  position: absolute;
  left: 18px;
  top: 38px;
  width: 245px;
  height: 92px;
}

.qun-mini-card--middle {
  position: absolute;
  left: 56px;
  top: 178px;
  width: 292px;
  height: 185px;
}

.qun-phone-frame {
  position: absolute;
  top: 30px;
  right: 5px;
  width: 184px;
  height: 350px;
  border: 9px solid #fff;
  border-radius: 24px;
  background-color: #f4f5f7;
}

.qun-arrow {
  position: absolute;
  left: 344px;
  top: 204px;
  width: 104px;
  height: 44px;
  background: linear-gradient(90deg, rgba(7, 193, 96, 0.24), rgba(7, 193, 96, 0.78));
  clip-path: polygon(0 36%, 72% 36%, 72% 0, 100% 50%, 72% 100%, 72% 64%, 0 64%);
}

.qun-feature__art--export {
  height: 370px;
}

.qun-phone-panel {
  position: absolute;
  left: 18px;
  top: 76px;
  width: 212px;
  height: 280px;
}

.qun-export-stack {
  position: absolute;
  left: 294px;
  top: 18px;
  display: grid;
  gap: 12px;
  width: 295px;
}

.qun-export-stack div {
  height: 112px;
  border: 2px solid rgba(7, 193, 96, 0.78);
  box-shadow: 0 14px 28px rgba(7, 193, 96, 0.12);
}

.qun-feature__art--share {
  height: 430px;
}

.qun-chat-frame {
  position: absolute;
  top: 14px;
  left: 214px;
  width: 230px;
  height: 370px;
  border: 8px solid #fff;
  border-radius: 28px;
  background-color: #f2f3f5;
}

.qun-share-dot {
  position: absolute;
  top: 178px;
  right: 52px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 44px rgba(7, 193, 96, 0.08),
    0 0 0 88px rgba(7, 193, 96, 0.06),
    0 16px 34px rgba(91, 105, 123, 0.16);
}

.qun-share-dot::before {
  width: 28px;
  height: 28px;
  background: var(--qun-green);
  clip-path: polygon(0 32%, 58% 32%, 58% 0, 100% 50%, 58% 100%, 58% 68%, 0 68%);
  content: "";
}

.qun-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.qun-qr-modal:target {
  display: flex;
}

.qun-qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 24, 12, 0.54);
  backdrop-filter: blur(8px);
}

.qun-qr-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(390px, calc(100vw - 40px));
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fff8 100%);
  box-shadow: 0 28px 72px rgba(2, 42, 22, 0.28);
  box-sizing: border-box;
  animation: qunQrModalIn 0.22s ease-out both;
}

.qun-qr-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 193, 96, 0.1);
}

.qun-qr-modal__close::before,
.qun-qr-modal__close::after {
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--qun-green-deep);
  content: "";
}

.qun-qr-modal__close::before {
  transform: rotate(45deg);
}

.qun-qr-modal__close::after {
  transform: rotate(-45deg);
}

.qun-qr-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 193, 96, 0.1);
  color: var(--qun-green-deep);
  font-size: 13px;
  font-weight: 700;
}

.qun-qr-modal h2 {
  margin: 16px 0 0;
  color: var(--qun-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.qun-qr-modal p {
  max-width: 270px;
  margin: 10px 0 22px;
  color: var(--qun-text);
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.qun-qr-modal__code {
  display: grid;
  width: 236px;
  height: 236px;
  place-items: center;
  border: 10px solid #fff;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px #d7e2db,
    0 18px 34px rgba(7, 193, 96, 0.14);
}

.qun-qr-modal__code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes qunQrModalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.qun-qrcodes {
  display: flex;
  justify-content: center;
  gap: 0;
  min-width: 1180px;
  height: 286px;
  padding-top: 38px;
  box-sizing: border-box;
  background: #ffffff;
}

.qun-qrcode {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #312f2c;
  font-size: 14px;
}

.qun-qrcode__image {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 8px solid #fff;
  overflow: hidden;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px #d8d8d8,
    0 16px 34px rgba(7, 193, 96, 0.12);
}

.qun-qrcode__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qun-footer {
  display: grid;
  place-items: center;
  gap: 16px;
  min-width: 1180px;
  height: 120px;
  padding: 0;
  background: var(--qun-green-dark);
  color: #fff;
  font-size: 14px;
}

.qun-footer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .qun-flow-item,
  .qun-flow-orbit,
  .qun-flow-beam,
  .qun-flow-spark,
  .qun-info-box,
  .qun-info-box__lid,
  .qun-flow-badge,
  .qun-qr-modal__panel {
    animation: none;
  }

  .qun-flow-item {
    opacity: 1;
    transform: translate(var(--from-x), var(--from-y)) rotate(var(--angle)) scale(0.92);
  }

  .qun-flow-beam,
  .qun-flow-spark {
    opacity: 0.55;
  }
}

@media (max-width: 1180px) {
  body.qun-home,
  .qun-hero,
  .qun-scenes,
  .qun-feature,
  .qun-qrcodes,
  .qun-footer {
    min-width: 0;
  }

  .qun-home .site-header,
  .qun-wrapper,
  .qun-feature__inner {
    width: calc(100% - 48px);
  }

  .qun-hero__inner {
    width: 100%;
  }

  .qun-scene-grid {
    gap: 24px;
  }

  .qun-hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 920px) {
  .qun-home .site-header {
    width: calc(100% - 32px);
  }

  .qun-hero__inner,
  .qun-feature__inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .qun-hero__inner {
    width: 100%;
  }

  .qun-hero__inner {
    display: grid;
    padding: 58px 40px;
    box-sizing: border-box;
  }

  .qun-hero__content {
    width: auto;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .qun-hero h1 {
    font-size: 52px;
  }

  .qun-hero__eyebrow {
    font-size: 28px;
  }

  .qun-hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 360px;
    max-width: 100%;
    margin-top: 48px;
  }

  .qun-scenes {
    padding: 72px 0 52px;
  }

  .qun-scenes h2 {
    margin-bottom: 48px;
    font-size: 34px;
  }

  .qun-scenes__head {
    display: grid;
    gap: 14px;
    margin-bottom: 38px;
  }

  .qun-scenes__head h2 {
    margin-bottom: 0;
  }

  .qun-scenes__head p {
    max-width: none;
  }

  .qun-scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qun-scene-card {
    grid-template-columns: 1fr;
  }

  .qun-scene-card__image {
    min-height: 120px;
  }

  .qun-scene-card a {
    grid-column: auto;
  }

  .qun-feature__inner {
    gap: 24px;
    padding: 64px 0;
  }

  .qun-feature--reverse .qun-feature__copy {
    order: 2;
  }

  .qun-feature--reverse .qun-feature__art {
    order: 1;
  }

  .qun-feature__art {
    width: 100%;
    max-width: 590px;
  }

  .qun-feature-illust {
    width: min(520px, 100%);
  }

  .qun-qrcodes {
    gap: 56px;
  }
}

@media (max-width: 640px) {
  .qun-home .site-shell {
    overflow-x: hidden;
  }

  .qun-home .site-header {
    height: 56px;
  }

  .qun-home .brand-mark {
    height: 56px;
  }

  .qun-wrapper,
  .qun-feature__inner {
    width: calc(100% - 28px);
  }

  .qun-hero {
    padding: 0 0 28px;
  }

  .qun-hero__inner {
    width: 100%;
    padding: 30px 14px 34px;
    border-radius: 0;
  }

  .qun-hero__eyebrow {
    font-size: 25px;
    line-height: 1.28;
  }

  .qun-hero h1 {
    margin-top: 12px;
    font-size: 39px;
    line-height: 1.14;
  }

  .qun-hero__desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
  }

  .qun-hero__tags {
    gap: 8px;
    margin-top: 18px;
  }

  .qun-hero__tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .qun-hero__actions {
    gap: 12px;
    margin-top: 22px;
  }

  .qun-hero__actions,
  .qun-scene-grid,
  .qun-qrcodes {
    grid-template-columns: 1fr;
  }

  .qun-hero__actions {
    display: grid;
  }

  .qun-btn {
    height: 52px;
    padding: 0 18px;
    width: 100%;
    font-size: 18px;
  }

  .qun-hero__visual {
    width: min(315px, 100%);
    height: 340px;
    margin: 28px auto 0;
  }

  .qun-flow-stage {
    left: 50%;
    transform: translateX(-50%) scale(0.74);
    transform-origin: top center;
  }

  .qun-shot {
    border-width: 3px;
    border-radius: 18px;
    font-size: 12px;
  }

  .qun-shot::before {
    top: 14px;
    left: 14px;
    right: 14px;
    height: 36px;
    box-shadow:
      0 56px 0 #f4fbf7,
      0 112px 0 #f4fbf7,
      0 168px 0 #f4fbf7;
  }

  .qun-shot span {
    min-height: 28px;
    padding: 0 10px;
  }

  .qun-shot--hero {
    width: 165px;
    height: 305px;
  }

  .qun-shot--float {
    top: 62px;
    width: 158px;
    height: 285px;
  }

  .qun-scenes {
    padding: 50px 0 48px;
  }

  .qun-scenes__head {
    margin-bottom: 26px;
  }

  .qun-scenes h2 {
    font-size: 30px;
    line-height: 1.22;
  }

  .qun-scenes__head p {
    font-size: 14px;
    line-height: 1.75;
  }

  .qun-scene-grid {
    display: grid;
    gap: 18px;
  }

  .qun-scene-card {
    border-radius: 14px;
  }

  .qun-scene-card__image {
    min-height: 106px;
  }

  .qun-scene-card__body {
    padding: 20px 22px 18px;
  }

  .qun-scene-card h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .qun-scene-card ul {
    gap: 14px 10px;
  }

  .qun-scene-card a {
    padding: 0 22px 16px;
  }

  .qun-more {
    margin-top: 30px;
  }

  .qun-feature__inner {
    gap: 22px;
    padding: 48px 0;
  }

  .qun-feature__copy {
    min-width: 0;
  }

  .qun-feature__copy h2 {
    font-size: 29px;
    line-height: 1.26;
  }

  .qun-feature__copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.78;
  }

  .qun-feature__art {
    overflow: hidden;
    height: 270px;
    max-width: none;
    margin-bottom: 0;
    transform: none;
  }

  .qun-feature-illust {
    width: min(340px, 100%);
    max-height: 250px;
  }

  .qun-art-card--large {
    left: 60px;
    top: 12px;
    width: 150px;
    height: 220px;
  }

  .qun-art-card--front {
    left: 145px;
    top: 128px;
    width: 190px;
    height: 112px;
  }

  .qun-bubble {
    width: 58px;
    height: 58px;
    font-size: 13px;
  }

  .qun-bubble--orange {
    left: 18px;
    top: 126px;
  }

  .qun-bubble--green {
    left: auto;
    right: 10px;
    top: 42px;
  }

  .qun-bubble--blue {
    left: auto;
    right: 6px;
    top: 202px;
  }

  .qun-mini-card--top {
    left: 12px;
    top: 24px;
    width: 178px;
    height: 72px;
  }

  .qun-mini-card--middle {
    left: 28px;
    top: 132px;
    width: 205px;
    height: 122px;
  }

  .qun-phone-frame {
    top: 20px;
    right: 6px;
    width: 136px;
    height: 238px;
    border-width: 7px;
  }

  .qun-arrow {
    left: 210px;
    top: 142px;
    width: 70px;
    height: 34px;
  }

  .qun-phone-panel {
    left: 16px;
    top: 54px;
    width: 140px;
    height: 190px;
  }

  .qun-export-stack {
    left: auto;
    right: 8px;
    top: 18px;
    width: 146px;
    gap: 10px;
  }

  .qun-export-stack div {
    height: 76px;
  }

  .qun-chat-frame {
    left: auto;
    right: 22px;
    top: 14px;
    width: 154px;
    height: 236px;
    border-width: 7px;
  }

  .qun-share-dot {
    right: 40px;
    top: 100px;
    width: 68px;
    height: 68px;
    box-shadow:
      0 0 0 34px rgba(7, 193, 96, 0.08),
      0 0 0 68px rgba(7, 193, 96, 0.05),
      0 16px 34px rgba(91, 105, 123, 0.16);
  }

  .qun-qrcodes {
    display: grid;
    gap: 30px;
    height: auto;
    padding: 38px 0;
  }

  .qun-footer {
    gap: 12px;
    min-height: 108px;
    height: auto;
    padding: 24px 16px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .qun-hero h1 {
    font-size: 36px;
  }

  .qun-hero__eyebrow {
    font-size: 23px;
  }

  .qun-hero__desc {
    font-size: 14px;
  }

  .qun-hero__visual {
    height: 318px;
  }

  .qun-flow-stage {
    transform: translateX(-50%) scale(0.69);
  }

  .qun-shot--hero {
    width: 155px;
    height: 288px;
  }

  .qun-shot--float {
    top: 58px;
    width: 150px;
    height: 268px;
  }

  .qun-feature__copy h2 {
    font-size: 27px;
  }
}
