@charset "UTF-8";

:root {
    /* 官网品牌色统一从这里派生，保留旧变量名兼容现有样式。 */
    --qcyy-brand: #007EC6;
    --qcyy-brand-rgb: 0, 126, 198;
    --qcyy-brand-soft: #2AA3D6;
    --qcyy-brand-dark: #006BA8;
    --qcyy-red: var(--qcyy-brand);
    --qcyy-red-soft: var(--qcyy-brand-soft);
    --qcyy-ink: #222;
    --qcyy-title: #777;
    --qcyy-muted: #777;
    --qcyy-light: #f7f7f7;
    --qcyy-line: #e6e6e6;
}

html.qcyy-portal-html,
html.qcyy-portal-html body {
    background: #fff;
}

.qcyy-portal {
    min-height: 100vh;
    background: #fff;
    color: var(--qcyy-ink);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.qcyy-portal picture {
    display: contents;
}

.qcyy-page-loading {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
}

.qcyy-page-loading::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(255, 255, 255, 0.04);
    transition: opacity 0.18s ease;
}

.qcyy-page-loading--slow::before {
    opacity: 1;
}

.qcyy-page-loading-scanline {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--qcyy-brand-rgb), 0.34), transparent);
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
}

.qcyy-page-loading--slow .qcyy-page-loading-scanline {
    opacity: 1;
    animation: qcyyLoadingScan 1.6s ease-in-out infinite;
}

.qcyy-page-loading-status {
    position: absolute;
    bottom: max(30px, env(safe-area-inset-bottom));
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 18px;
    color: rgba(34, 34, 34, 0.72);
    font-size: 13px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    transform: translateX(-50%) translateY(0);
    backdrop-filter: blur(12px);
}

.qcyy-page-loading-dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.88);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(var(--qcyy-brand-rgb), 0.28);
    animation: qcyyLoadingPulse 1.2s ease-in-out infinite;
}

.qcyy-page-loading-status em {
    font-style: normal;
    white-space: nowrap;
}

.qcyy-page-loading-status i {
    position: relative;
    display: block;
    width: 92px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(var(--qcyy-brand-rgb), 0.10);
}

.qcyy-page-loading-status i::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 38%;
    border-radius: inherit;
    background: var(--qcyy-red);
    animation: qcyyBottomProgress 1.35s ease-in-out infinite;
}

.qcyy-page-loading-fade-enter-active,
.qcyy-page-loading-fade-leave-active {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.qcyy-page-loading-fade-enter,
.qcyy-page-loading-fade-leave-to {
    opacity: 0;
}

@media (max-width: 768px) {
    .qcyy-page-loading-status {
        bottom: max(18px, env(safe-area-inset-bottom));
        max-width: calc(100vw - 30px);
        padding: 0 13px;
        font-size: 12px;
    }

    .qcyy-page-loading-status i {
        width: 58px;
    }
}

.qcyy-portal a,
.qcyy-portal a:hover,
.qcyy-portal a:focus {
    text-decoration: none;
}

.qcyy-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 104px;
    padding: 30px 4vw 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: transparent;
    border: 0;
}

.qcyy-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: 220px;
}

.qcyy-brand:hover,
.qcyy-brand:focus {
    color: #fff;
}

.qcyy-brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.qcyy-brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.qcyy-brand strong {
    display: block;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 1.1;
}

.qcyy-brand em {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    letter-spacing: 0.08em;
    font-style: normal;
}

.qcyy-nav-toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.qcyy-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.qcyy-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 34px;
    min-width: 0;
}

.qcyy-nav-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 34px;
    min-width: 0;
}

.qcyy-nav-hero,
.qcyy-nav-service,
.qcyy-nav-index,
.qcyy-nav-arrow {
    display: none;
}

.qcyy-nav a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    padding: 20px 0 12px;
    overflow: hidden;
}

.qcyy-nav a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background: var(--qcyy-red);
    transform: translateX(-110%);
    transition: transform 0.3s ease-out;
}

.qcyy-nav a:hover::after,
.qcyy-nav a.active::after {
    transform: translateX(0);
}

.qcyy-hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-blend-mode: luminosity;
}

.qcyy-hero-slides,
.qcyy-hero-bg {
    position: absolute;
    inset: 0;
}

.qcyy-hero-bg {
    z-index: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transform: translateX(0) scale(1.03);
}

.qcyy-hero-bg.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.qcyy-hero-bg.active.next {
    animation: qcyyHeroBgInNext 0.9s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-hero-bg.active.prev {
    animation: qcyyHeroBgInPrev 0.9s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-hero-bg.leaving {
    z-index: 0;
    opacity: 1;
}

.qcyy-hero-bg.leaving.next {
    animation: qcyyHeroBgOutNext 0.9s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-hero-bg.leaving.prev {
    animation: qcyyHeroBgOutPrev 0.9s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.52) 46%, rgba(0, 0, 0, 0.72)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.72));
}

.qcyy-hero-inner {
    position: relative;
    z-index: 3;
    width: min(900px, 86vw);
    margin: 0 auto;
    padding-top: 70px;
    text-align: center;
}

.qcyy-hero-inner.is-next {
    animation: qcyyHeroTextInNext 0.72s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-hero-inner.is-prev {
    animation: qcyyHeroTextInPrev 0.72s cubic-bezier(0.42, 0, 0.18, 1) both;
}

.qcyy-eyebrow {
    margin: 0 0 16px;
    color: var(--qcyy-red-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Hero 遵循原模板，只保留主标题和简介层级，避免首屏变成营销按钮区。 */
.qcyy-hero .qcyy-eyebrow,
.qcyy-hero-actions {
    display: none;
}

.qcyy-page-contact .qcyy-hero .qcyy-eyebrow {
    display: block;
}

.qcyy-page-contact .qcyy-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.qcyy-hero h1 {
    margin: 0 auto;
    max-width: 900px;
    color: #fff;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.qcyy-hero-subtitle {
    margin: 30px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.qcyy-hero-summary {
    margin: 10px auto 0;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 2;
}

.qcyy-hero-dash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 58px;
}

.qcyy-hero-dash button {
    width: 50px;
    height: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.qcyy-hero-dash button:focus {
    outline: none;
}

.qcyy-hero-dash span {
    position: relative;
    display: block;
    width: 50px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.qcyy-hero-dash span::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--qcyy-red);
}

.qcyy-hero-dash button.active span {
    background: rgba(255, 255, 255, 0.72);
}

.qcyy-hero-dash button.active span::after {
    width: 100%;
    animation: qcyyDashProgress 5s linear both;
}

.qcyy-hero-dash button:hover span::after,
.qcyy-hero-dash button:focus span::after {
    width: 100%;
    animation: none;
}

.qcyy-hero-dash button:hover span,
.qcyy-hero-dash button:focus span {
    background: var(--qcyy-red);
}

@keyframes qcyyHeroBgInNext {
    from {
        opacity: 0.25;
        transform: translateX(9%) scale(1.04);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes qcyyHeroBgOutNext {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0.25;
        transform: translateX(-9%) scale(1.02);
    }
}

@keyframes qcyyHeroBgInPrev {
    from {
        opacity: 0.25;
        transform: translateX(-9%) scale(1.04);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes qcyyHeroBgOutPrev {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0.25;
        transform: translateX(9%) scale(1.02);
    }
}

@keyframes qcyyHeroTextInNext {
    from {
        opacity: 0;
        transform: translateX(54px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes qcyyHeroTextInPrev {
    from {
        opacity: 0;
        transform: translateX(-54px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes qcyyDashProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes qcyyLoadingScan {
    0% {
        opacity: 0;
        transform: translateY(-26px);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(26px);
    }
}

@keyframes qcyyLoadingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--qcyy-brand-rgb), 0.30);
        transform: scale(0.96);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(var(--qcyy-brand-rgb), 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--qcyy-brand-rgb), 0);
        transform: scale(0.96);
    }
}

@keyframes qcyyBottomProgress {
    0% {
        transform: translateX(-110%);
    }
    52% {
        transform: translateX(82%);
    }
    100% {
        transform: translateX(210%);
    }
}

@keyframes qcyySkeletonShimmer {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(120%);
    }
}

.qcyy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.qcyy-button.primary {
    background: var(--qcyy-red);
    color: #fff;
}

.qcyy-button.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.46);
}

.qcyy-button:hover,
.qcyy-button:focus {
    color: #fff;
}

.qcyy-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--qcyy-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.qcyy-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.qcyy-section {
    padding: 96px 0;
    background: #fff;
}

.qcyy-section,
.qcyy-contact-channel-card {
    scroll-margin-top: 96px;
}

.qcyy-section-compact {
    padding-top: 58px;
}

.qcyy-section-compact .qcyy-section-head {
    margin-bottom: 46px;
}

/* 首个内容区对齐原模板，只展示主标题，避免首屏下沿出现额外红色说明。 */
.qcyy-section-compact .qcyy-section-head .qcyy-eyebrow {
    display: none;
}

.qcyy-section-soft {
    background: var(--qcyy-light);
}

.qcyy-section-contact {
    padding: 78px 0 94px;
    background:
        linear-gradient(180deg, #f4f4f4 0%, #fff 100%);
}

.qcyy-section-contact.qcyy-section-compact .qcyy-section-head {
    margin-bottom: 42px;
}

.qcyy-section-contact.qcyy-section-compact .qcyy-section-head .qcyy-eyebrow {
    display: block;
}

.qcyy-section-contact .qcyy-section-head h2 {
    color: #5d5d5d;
}

.qcyy-section-dark {
    background: #fff;
    color: var(--qcyy-ink);
}

.qcyy-section-inner {
    width: min(1160px, 90vw);
    margin: 0 auto;
}

.qcyy-section-head {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.qcyy-section-head h2 {
    margin: 0;
    color: var(--qcyy-title);
    font-size: 36px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: 0;
}

.qcyy-section-head p:last-child {
    margin: 24px auto 0;
    max-width: 820px;
    color: var(--qcyy-muted);
    font-size: 15px;
    line-height: 1.9;
}

.qcyy-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.qcyy-stat {
    min-height: 128px;
    padding: 26px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    border-top: 2px solid var(--qcyy-red);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.qcyy-stat strong {
    display: block;
    color: var(--qcyy-red-soft);
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.qcyy-stat span {
    display: block;
    margin-top: 16px;
    color: var(--qcyy-muted);
    line-height: 1.6;
}

.qcyy-section-business {
    padding: 92px 0 108px;
    background: #fff;
    text-align: center;
}

.qcyy-section-business.qcyy-section-compact {
    padding-top: 88px;
}

.qcyy-section-business .qcyy-section-inner {
    width: min(1180px, 90vw);
}

.qcyy-section-business .qcyy-section-head {
    max-width: 880px;
    margin-bottom: 92px;
}

.qcyy-section-business .qcyy-section-head h2 {
    color: #777;
    font-size: 45px;
    line-height: 1.12;
}

.qcyy-section-business .qcyy-section-head p:last-child {
    margin-top: 34px;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.qcyy-business-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.qcyy-business-card {
    min-width: 0;
    text-align: center;
}

.qcyy-business-icon {
    width: 175px;
    height: 175px;
    position: relative;
    display: block;
    margin: 0 auto;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    background: #eaeaea;
    box-shadow: 0 0 0 30px transparent;
    transition: box-shadow 0.4s ease-in-out;
}

.qcyy-business-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--qcyy-red);
    opacity: 0;
    z-index: 1;
}

.qcyy-business-symbol {
    position: absolute;
    top: 38px;
    left: 50%;
    z-index: 2;
    height: 79px;
    display: block;
    background: url("/images/icon_list1.png") no-repeat;
    transition: background-image 0.4s ease-in-out;
}

.qcyy-business-symbol.icon-1 {
    width: 80px;
    margin-left: -40px;
    background-position: 0 0;
}

.qcyy-business-symbol.icon-2 {
    width: 68px;
    margin-left: -34px;
    background-position: -375px 0;
}

.qcyy-business-symbol.icon-3 {
    width: 54px;
    margin-left: -27px;
    background-position: -730px 0;
}

.qcyy-business-symbol.icon-4 {
    width: 105px;
    margin-left: -52px;
    background-position: -1064px 0;
}

.qcyy-business-text {
    width: min(100%, 230px);
    margin: 0 auto;
}

.qcyy-business-text h3 {
    margin: 24px 0 12px;
    color: #666;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    transition: color 0.45s ease;
}

.qcyy-business-text p {
    margin: 0;
    color: #7c7c7c;
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
}

@keyframes qcyyBusinessFlipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-5deg);
    }
    70% {
        transform: perspective(400px) rotateY(5deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

.qcyy-business-card:hover .qcyy-business-icon {
    box-shadow: 0 0 0 0 #f3f3f3;
}

.qcyy-business-card:hover .qcyy-business-icon::before {
    animation: qcyyBusinessFlipIn 1s 0.12s ease both;
}

.qcyy-business-card:hover .qcyy-business-symbol {
    background-image: url("/images/icon_list2.png");
}

.qcyy-business-card:hover .qcyy-business-text h3 {
    color: var(--qcyy-red);
}

.qcyy-counter-band {
    height: 650px;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #050505;
    color: #fff;
}

.qcyy-counter-band::before,
.qcyy-counter-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

.qcyy-counter-band::before {
    background-image: var(--qcyy-counter-bg);
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
    filter: saturate(0.78) brightness(0.78);
}

.qcyy-counter-band::after {
    z-index: 1;
    background: #000;
    opacity: 0.8;
}

.qcyy-counter-band .qcyy-section-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(1320px, 90vw);
}

.qcyy-counter-content {
    height: 100%;
    position: relative;
}

.qcyy-counter-head {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    width: min(860px, calc(100% - 120px));
    margin: 0 auto;
    text-align: center;
}

.qcyy-counter-head h2 {
    margin: 0;
    color: #fff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
}

.qcyy-counter-head p {
    width: min(100%, 860px);
    margin: 40px auto 0;
    color: #858585;
    font-size: 17px;
    line-height: 1.9;
}

.qcyy-counter-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 92px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.qcyy-counter-item {
    min-width: 0;
    text-align: center;
}

.qcyy-counter-value {
    display: flex;
    min-height: 60px;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.qcyy-counter-item strong {
    display: inline-block;
    min-width: var(--qcyy-counter-width, 1ch);
    color: var(--qcyy-red);
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    text-align: right;
}

.qcyy-counter-item span {
    display: inline-block;
    margin-left: 8px;
    color: #858585;
    font-size: 20px;
    line-height: 1;
}

.qcyy-counter-item p {
    margin: 18px 0 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
}

.qcyy-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.qcyy-service-card,
.qcyy-equipment-card,
.qcyy-case-card,
.qcyy-contact-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qcyy-service-card:hover,
.qcyy-equipment-card:hover,
.qcyy-case-card:hover,
.qcyy-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.qcyy-image-zoom {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: #f4f5f6;
    overflow: hidden;
}

.qcyy-image-zoom::before,
.qcyy-visual-text figure::before,
.qcyy-process-wrap figure::before,
.qcyy-image-feature::before,
.qcyy-card-grid-image::before,
.qcyy-contact-channel-card figure::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(105deg, #f1f3f4 0%, #f8f9fa 44%, #eceff1 100%);
}

.qcyy-image-zoom::after,
.qcyy-visual-text figure::after,
.qcyy-process-wrap figure::after,
.qcyy-image-feature::after,
.qcyy-card-grid-image::after,
.qcyy-contact-channel-card figure::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: translateX(-120%);
    animation: qcyySkeletonShimmer 1.45s ease-in-out infinite;
}

/* 内容型图片统一提供悬浮放大反馈；Hero 轮播为背景层，不纳入这组规则。 */
.qcyy-image-zoom img,
.qcyy-visual-text figure img,
.qcyy-process-wrap figure img,
.qcyy-image-feature img,
.qcyy-card-grid-image img,
.qcyy-capability-icon img {
    transition:
        transform 0.56s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.56s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.qcyy-service-card:hover .qcyy-image-zoom img,
.qcyy-equipment-card:hover .qcyy-image-zoom img,
.qcyy-case-card:hover .qcyy-image-zoom img,
.qcyy-contact-card:hover .qcyy-image-zoom img,
.qcyy-visual-text figure:hover img,
.qcyy-process-wrap figure:hover img,
.qcyy-image-feature:hover img,
.qcyy-card-grid-image:hover img,
.qcyy-capability-card:hover .qcyy-capability-icon img {
    transform: scale(1.06);
}

.qcyy-image-zoom img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.qcyy-service-card > div,
.qcyy-equipment-card > div,
.qcyy-case-card > div,
.qcyy-contact-card > div {
    padding: 26px;
}

.qcyy-service-card h3,
.qcyy-info-card h3,
.qcyy-equipment-card h3,
.qcyy-case-card h3,
.qcyy-contact-card h3,
.qcyy-contact-main h3 {
    margin: 0;
    color: #555;
    font-size: 21px;
    line-height: 1.36;
    font-weight: 700;
}

.qcyy-service-card p:not(.qcyy-eyebrow),
.qcyy-info-card p,
.qcyy-equipment-card p,
.qcyy-case-card p,
.qcyy-contact-card p,
.qcyy-contact-main p {
    margin: 14px 0 0;
    color: var(--qcyy-muted);
    line-height: 1.8;
}

/* CMS 案例存在公开视频时才渲染此按钮，避免无视频案例出现无效入口。 */
.qcyy-case-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 9px 13px;
    border: 1px solid #0057B7;
    border-radius: 4px;
    color: #fff;
    background: #0057B7;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.qcyy-case-video-trigger:hover,
.qcyy-case-video-trigger:focus-visible {
    border-color: #00458f;
    background: #00458f;
    outline: none;
    transform: translateY(-1px);
}

.qcyy-service-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--qcyy-red);
    font-weight: 700;
}

.qcyy-service-detail {
    padding-top: 76px;
    background: #fff;
}

.qcyy-service-detail-hero {
    width: min(1180px, 90vw);
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 48px;
    align-items: center;
}

.qcyy-service-detail-hero figure {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f4f5f6;
}

.qcyy-service-detail-hero figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qcyy-service-detail-hero h1 {
    margin: 10px 0 22px;
    color: var(--qcyy-title);
    font-size: 46px;
    line-height: 1.18;
    letter-spacing: 0;
}

.qcyy-service-detail-hero p:not(.qcyy-eyebrow) {
    margin: 0 0 28px;
    color: var(--qcyy-muted);
    font-size: 16px;
    line-height: 1.9;
}

.qcyy-service-detail-body {
    width: min(1180px, 90vw);
    margin: 0 auto;
    padding: 12px 0 98px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}

.qcyy-service-detail-content {
    min-width: 0;
    padding-top: 10px;
}

.qcyy-rich-content {
    color: var(--qcyy-ink);
    font-size: 16px;
    line-height: 1.92;
}

.qcyy-rich-content h2,
.qcyy-rich-content h3,
.qcyy-rich-content h4 {
    margin: 34px 0 16px;
    color: var(--qcyy-title);
    line-height: 1.36;
}

.qcyy-rich-content h2:first-child,
.qcyy-rich-content h3:first-child {
    margin-top: 0;
}

.qcyy-rich-content p,
.qcyy-rich-content ul,
.qcyy-rich-content ol,
.qcyy-rich-content blockquote,
.qcyy-rich-content table,
.qcyy-rich-content figure {
    margin: 0 0 18px;
}

.qcyy-rich-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
}

.qcyy-rich-content blockquote {
    padding: 18px 22px;
    border-left: 3px solid var(--qcyy-red);
    background: var(--qcyy-light);
    color: var(--qcyy-muted);
}

.qcyy-rich-content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.qcyy-rich-content th,
.qcyy-rich-content td {
    min-width: 120px;
    padding: 12px 14px;
    border: 1px solid var(--qcyy-line);
    text-align: left;
}

.qcyy-service-detail-aside {
    position: sticky;
    top: 104px;
    padding: 26px;
    border: 1px solid var(--qcyy-line);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.qcyy-service-detail-aside > span {
    color: var(--qcyy-red);
    font-size: 13px;
    font-weight: 700;
}

.qcyy-service-detail-aside dl {
    margin: 18px 0 24px;
}

.qcyy-service-detail-aside div {
    padding: 16px 0;
    border-top: 1px solid var(--qcyy-line);
}

.qcyy-service-detail-aside dt {
    color: var(--qcyy-title);
    font-weight: 700;
}

.qcyy-service-detail-aside dd {
    margin: 8px 0 0;
    color: var(--qcyy-muted);
    line-height: 1.72;
}

.qcyy-service-detail-aside button {
    width: 100%;
    height: 44px;
    border: 0;
    background: var(--qcyy-red);
    color: #fff;
    font-weight: 700;
}

.qcyy-service-detail-empty {
    min-height: 560px;
    display: grid;
    place-items: center;
    text-align: center;
}

.qcyy-service-detail-empty section {
    width: min(680px, 90vw);
}

.qcyy-service-detail-empty h1 {
    margin: 12px 0 16px;
    color: var(--qcyy-title);
    font-size: 40px;
}

.qcyy-visual-text,
.qcyy-process-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.qcyy-visual-text figure,
.qcyy-process-wrap figure,
.qcyy-image-feature,
.qcyy-card-grid-image {
    position: relative;
    margin: 0;
    background: #f4f5f6;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.qcyy-visual-text img,
.qcyy-process-wrap img,
.qcyy-image-feature img,
.qcyy-card-grid-image img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.qcyy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qcyy-points span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 16px;
    color: #555;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    border-left: 3px solid var(--qcyy-red);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

/* 首页 AI 全案模块采用左文案/能力网格 + 右侧技术图像的版式，提升单段信息的视觉层级。 */
.qcyy-section-ai-suite {
    padding: 108px 0 116px;
    background:
        linear-gradient(135deg, rgba(237, 0, 17, 0.06) 0%, rgba(237, 0, 17, 0) 30%),
        linear-gradient(180deg, #fff 0%, #f5f6f7 100%);
}

.qcyy-section-ai-suite .qcyy-section-inner {
    width: min(1180px, 90vw);
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 48px 64px;
    align-items: center;
}

.qcyy-section-ai-suite .qcyy-section-head {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin: 0;
    text-align: left;
}

.qcyy-section-ai-suite .qcyy-section-head .qcyy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.qcyy-section-ai-suite .qcyy-section-head .qcyy-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--qcyy-red);
}

.qcyy-section-ai-suite .qcyy-section-head h2 {
    margin-top: 18px;
    color: #555;
    font-size: 48px;
    line-height: 1.14;
}

.qcyy-section-ai-suite .qcyy-section-head p:last-child {
    margin: 28px 0 0;
    max-width: 520px;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.95;
}

.qcyy-section-ai-suite .qcyy-visual-text {
    display: contents;
}

.qcyy-section-ai-suite .qcyy-visual-text figure {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: min(480px, 42vw);
    min-height: 420px;
    position: relative;
    border: 0;
    border-radius: 6px;
    background: #070b10;
    box-shadow: 0 24px 60px rgba(8, 12, 18, 0.24);
}

.qcyy-section-ai-suite .qcyy-visual-text figure::before,
.qcyy-section-ai-suite .qcyy-visual-text figure::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.qcyy-section-ai-suite .qcyy-visual-text figure::before {
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(120deg, rgba(237, 0, 17, 0.2), rgba(237, 0, 17, 0) 34%);
}

.qcyy-section-ai-suite .qcyy-visual-text figure::after {
    inset: 16px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.qcyy-section-ai-suite .qcyy-visual-text img {
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.08) brightness(0.9);
    transform: scale(1.02);
}

.qcyy-visual-caption {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 3;
    max-width: calc(100% - 56px);
    padding: 11px 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.58);
    border-left: 3px solid var(--qcyy-red);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0;
}

.qcyy-section-ai-suite .qcyy-points {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    counter-reset: qcyy-ai-point;
}

.qcyy-section-ai-suite .qcyy-points span {
    min-height: 76px;
    position: relative;
    align-items: flex-end;
    padding: 18px 16px 16px 52px;
    color: #555;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 34px rgba(18, 24, 31, 0.07);
}

.qcyy-section-ai-suite .qcyy-points span::before {
    counter-increment: qcyy-ai-point;
    content: "0" counter(qcyy-ai-point);
    position: absolute;
    top: 18px;
    left: 16px;
    color: var(--qcyy-red);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.qcyy-section-ai-suite .qcyy-points span::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 17px;
    width: 22px;
    height: 2px;
    background: var(--qcyy-red);
}

/* 关于页技术驱动区使用圆形图标能力项，贴近参考站的留白和信息密度。 */
.qcyy-capability-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
}

.qcyy-capability-card {
    min-width: 0;
    text-align: center;
}

.qcyy-capability-icon {
    width: 160px;
    height: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #ececec;
    border: 10px solid #f7f7f7;
    box-shadow: 0 0 0 1px #eeeeee;
    overflow: hidden;
}

.qcyy-capability-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    opacity: 0.48;
    filter: grayscale(1) saturate(0) brightness(1.3) contrast(0.75);
}

.qcyy-capability-card h3 {
    margin: 0;
    color: #666;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.qcyy-capability-card p {
    margin: 16px auto 0;
    max-width: 230px;
    color: var(--qcyy-muted);
    font-size: 14px;
    line-height: 1.85;
}

.qcyy-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.qcyy-values article {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.qcyy-values span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    background: var(--qcyy-red);
    border-radius: 50%;
}

.qcyy-values strong {
    margin-top: 20px;
    color: #555;
    font-size: 21px;
}

/* 企业文化按选中图稿采用连续章节结构，建筑线稿沿用项目内已有真实素材。 */
.qcyy-section-culture-story {
    padding: 94px 0 0;
    overflow: hidden;
    background-color: #f7fbff;
    background-image: url('/images/qcyy-brand/project-registration-blueprint.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 470px;
}

.qcyy-section-culture-story .qcyy-section-inner {
    width: 100%;
}

.qcyy-section-culture-story .qcyy-section-head {
    width: min(1160px, 90vw);
    max-width: none;
    margin-bottom: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qcyy-section-culture-story .qcyy-section-head .qcyy-eyebrow {
    order: 2;
    margin: 12px 0 0;
    color: #667889;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.16em;
}

.qcyy-section-culture-story .qcyy-section-head h2 {
    order: 1;
    color: #183754;
    font-size: 48px;
    letter-spacing: 0.08em;
}

.qcyy-culture-story {
    width: 100%;
    border-top: 1px solid rgba(0, 87, 183, 0.14);
}

.qcyy-culture-story-row {
    position: relative;
    min-height: 184px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 87, 183, 0.14);
}

.qcyy-culture-story-row-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    width: min(1160px, 90vw);
    min-height: 184px;
    padding: 34px 0;
    margin: 0 auto;
}

.qcyy-culture-story-index,
.qcyy-culture-story-copy {
    min-width: 0;
}

.qcyy-culture-story-index {
    display: flex;
    align-items: center;
    color: #0057B7;
    font-size: clamp(56px, 5vw, 78px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;
    border-right: 1px solid rgba(0, 87, 183, 0.2);
}

.qcyy-culture-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-left: 48px;
}

.qcyy-culture-story-label {
    margin: 0 0 12px;
    color: #0057B7;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.22em;
}

.qcyy-culture-story-copy h3 {
    max-width: 1000px;
    margin: 0;
    color: #183754;
    font-size: clamp(30px, 3.1vw, 46px);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0.035em;
}

.qcyy-culture-story-row--vision {
    color: #fff;
    background: #0057B7;
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.qcyy-culture-story-row--vision::before {
    position: absolute;
    inset: 0 0 0 51%;
    content: "";
    opacity: 0.3;
    background: url('/images/qcyy-brand/project-registration-blueprint.jpg') center / cover no-repeat;
    mix-blend-mode: multiply;
}

.qcyy-culture-story-row--vision .qcyy-culture-story-index {
    color: rgba(255, 255, 255, 0.84);
    border-right-color: rgba(255, 255, 255, 0.34);
}

.qcyy-culture-story-row--vision .qcyy-culture-story-label,
.qcyy-culture-story-row--vision .qcyy-culture-story-copy h3 {
    color: #fff;
}

.qcyy-culture-story-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 980px;
}

.qcyy-culture-story-value {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    min-height: 70px;
    padding: 10px 20px;
    border-left: 1px solid rgba(0, 87, 183, 0.16);
}

.qcyy-culture-story-value:first-child {
    padding-left: 0;
    border-left: 0;
}

.qcyy-culture-story-value .glyphicon {
    flex: 0 0 auto;
    color: #0057B7;
    font-size: 28px;
}

.qcyy-culture-story-value strong {
    min-width: 0;
    color: #183754;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 960px) {
    .qcyy-section-culture-story {
        padding-top: 76px;
        background-size: auto 420px;
    }

    .qcyy-section-culture-story .qcyy-section-head {
        margin-bottom: 54px;
    }

    .qcyy-culture-story-row {
        min-height: 166px;
    }

    .qcyy-culture-story-row-inner {
        grid-template-columns: 108px minmax(0, 1fr);
        min-height: 166px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .qcyy-culture-story-copy {
        padding-left: 34px;
    }

    .qcyy-culture-story-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qcyy-culture-story-value:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .qcyy-culture-story-value:nth-child(even) {
        border-left: 1px solid rgba(0, 87, 183, 0.16);
    }
}

@media (max-width: 640px) {
    .qcyy-section-culture-story {
        padding-top: 62px;
        background-size: auto 350px;
    }

    .qcyy-section-culture-story .qcyy-section-head {
        width: min(100% - 48px, 1160px);
        margin-bottom: 42px;
    }

    .qcyy-section-culture-story .qcyy-section-head h2 {
        font-size: 36px;
        line-height: 1.35;
    }

    .qcyy-section-culture-story .qcyy-section-head .qcyy-eyebrow {
        margin-top: 9px;
        font-size: 14px;
    }

    .qcyy-culture-story-row {
        min-height: 148px;
    }

    .qcyy-culture-story-row-inner {
        grid-template-columns: 58px minmax(0, 1fr);
        min-height: 148px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .qcyy-culture-story-index {
        align-items: flex-start;
        padding-top: 5px;
        font-size: 42px;
    }

    .qcyy-culture-story-copy {
        padding-left: 20px;
    }

    .qcyy-culture-story-label {
        margin-bottom: 9px;
        font-size: 13px;
    }

    .qcyy-culture-story-copy h3 {
        font-size: 25px;
        line-height: 1.42;
        letter-spacing: 0.02em;
    }

    .qcyy-culture-story-row--vision::before {
        inset: 0 0 0 34%;
        opacity: 0.14;
    }

    .qcyy-culture-story-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qcyy-culture-story-value {
        gap: 9px;
        min-height: 58px;
        padding: 10px 8px;
    }

    .qcyy-culture-story-value .glyphicon {
        font-size: 21px;
    }

    .qcyy-culture-story-value strong {
        font-size: 15px;
        letter-spacing: 0;
    }
}

.qcyy-image-feature {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.qcyy-qualification-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.qcyy-qualification-card {
    background: #fff;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qcyy-qualification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.qcyy-qualification-card figure {
    margin: 0;
    padding: 18px;
    background: linear-gradient(135deg, #f7f9fb, #fff);
    border-bottom: 1px solid var(--qcyy-line);
}

.qcyy-qualification-card img {
    display: block;
    width: 100%;
    height: auto;
    filter: contrast(1.03) saturate(1.02);
    transition: transform 0.56s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.qcyy-qualification-card:hover img {
    transform: scale(1.025);
}

.qcyy-qualification-copy {
    padding: 24px 26px 26px;
}

.qcyy-qualification-level {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    color: var(--qcyy-red);
    font-size: 12px;
    font-weight: 700;
    background: rgba(var(--qcyy-brand-rgb), 0.08);
}

.qcyy-qualification-copy h3 {
    margin: 14px 0 0;
    color: #555;
    font-size: 20px;
    line-height: 1.35;
}

.qcyy-qualification-copy p {
    margin: 12px 0 0;
    color: var(--qcyy-muted);
    line-height: 1.8;
}

.qcyy-qualification-copy dl {
    margin: 20px 0 0;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    border-top: 1px solid var(--qcyy-line);
}

.qcyy-qualification-copy dl div:first-child {
    grid-column: span 2;
}

.qcyy-qualification-copy dt {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
}

.qcyy-qualification-copy dd {
    margin: 6px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
}

.qcyy-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.qcyy-info-card {
    min-height: 206px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.qcyy-card-grid-image {
    grid-column: span 3;
}

.qcyy-customer-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.qcyy-customer-logo-card {
    min-width: 0;
    min-height: 162px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    border-top: 2px solid var(--qcyy-red);
    box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.qcyy-customer-logo {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 18px 18px;
    overflow: hidden;
}

.qcyy-customer-logo span {
    min-width: 0;
}

.qcyy-customer-logo strong,
.qcyy-customer-logo em {
    display: block;
    letter-spacing: 0;
    font-style: normal;
    white-space: nowrap;
}

.qcyy-customer-logo em {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1;
}

.qcyy-customer-logo-card p {
    margin: 0;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qcyy-muted);
    background: #f7f8fa;
    border-top: 1px solid var(--qcyy-line);
    font-size: 13px;
    line-height: 1;
}

.qcyy-customer-logo-shimao {
    color: #b79a49;
}

.qcyy-shimao-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: #c3a755;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    transform: rotate(30deg);
}

.qcyy-shimao-mark::first-letter {
    transform: rotate(-30deg);
}

.qcyy-customer-logo-shimao strong {
    color: #ad9345;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.qcyy-customer-logo-shimao em {
    color: #8f8a80;
}

.qcyy-customer-logo-fyrgreen {
    color: #1c8f6e;
}

.qcyy-fyrgreen-mark {
    width: 56px;
    height: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    flex: 0 0 auto;
}

.qcyy-fyrgreen-mark i {
    display: block;
    background:
        linear-gradient(135deg, transparent 0 34%, #5ab05f 35% 60%, transparent 61%),
        linear-gradient(45deg, #1e8f86 0 52%, transparent 53%);
}

.qcyy-customer-logo-fyrgreen strong {
    color: #188970;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
}

.qcyy-customer-logo-fyrgreen em {
    color: #6aa860;
    font-size: 10px;
    font-weight: 800;
}

.qcyy-customer-logo-yuyuan {
    min-height: 104px;
    color: #0d141f;
    background: #0b1220;
}

.qcyy-customer-logo-yuyuan strong {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.qcyy-customer-logo-yuyuan em {
    color: rgba(255, 255, 255, 0.62);
}

.qcyy-yuyuan-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #231713;
    background: #d9a04b;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
}

.qcyy-customer-logo-excellence {
    gap: 13px;
}

.qcyy-excellence-mark {
    width: 46px;
    height: 34px;
    display: grid;
    gap: 4px;
    flex: 0 0 auto;
}

.qcyy-excellence-mark i {
    display: block;
    transform: skewX(-26deg);
}

.qcyy-excellence-mark i:first-child {
    background: #d92332;
}

.qcyy-excellence-mark i:last-child {
    background: #111a2c;
}

.qcyy-customer-logo-excellence strong {
    color: #222;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.qcyy-customer-logo-excellence em {
    color: #111;
    font-size: 10px;
}

.qcyy-customer-logo-henderson {
    gap: 12px;
    background: linear-gradient(180deg, #f6fbfb 0%, #ecf4f3 100%);
}

.qcyy-henderson-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #0d4f43;
    background: #b7d8ca;
    border: 2px solid #277462;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
}

.qcyy-customer-logo-henderson strong {
    color: #244b44;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.qcyy-customer-logo-henderson em {
    color: #4f7169;
    font-size: 8px;
    font-weight: 800;
}

.qcyy-customer-logo-jinmao strong {
    color: #0f4d86;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.qcyy-customer-logo-jinmao em {
    color: #a57c45;
    font-size: 20px;
    font-weight: 800;
}

.qcyy-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.qcyy-partner-card {
    min-width: 0;
    min-height: 336px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    border-top: 2px solid var(--qcyy-red);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.07);
}

.qcyy-partner-logo {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px 22px;
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
    border-bottom: 1px solid var(--qcyy-line);
    overflow: hidden;
}

.qcyy-partner-logo strong,
.qcyy-partner-logo em {
    display: inline-block;
    letter-spacing: 0;
    font-style: normal;
}

.qcyy-partner-logo-soler strong {
    position: relative;
    color: #2d3136;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
}

.qcyy-partner-logo-soler strong::before,
.qcyy-partner-logo-soler strong::after {
    content: "";
    position: absolute;
    left: 3px;
    width: 26px;
    height: 4px;
    background: var(--qcyy-red);
}

.qcyy-partner-logo-soler strong::before {
    top: -7px;
}

.qcyy-partner-logo-soler strong::after {
    bottom: -7px;
}

.qcyy-partner-logo-soler em {
    color: var(--qcyy-red);
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.qcyy-partner-logo-sinan {
    color: #0c6395;
}

.qcyy-sinan-mark {
    width: 38px;
    height: 38px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #0b6ea3;
}

.qcyy-sinan-mark::before,
.qcyy-sinan-mark::after,
.qcyy-sinan-mark i {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.qcyy-sinan-mark::before {
    width: 24px;
    height: 24px;
    border: 2px solid #ffd03a;
}

.qcyy-sinan-mark::after {
    width: 6px;
    height: 6px;
    right: 9px;
    top: 9px;
    background: #ffd03a;
}

.qcyy-sinan-mark i {
    width: 30px;
    height: 2px;
    background: #ffd03a;
    transform: rotate(42deg);
}

.qcyy-partner-logo-sinan strong {
    color: #0b5f8f;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.qcyy-partner-logo-macjoy {
    gap: 12px;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.qcyy-macjoy-mark {
    width: 58px;
    display: grid;
    gap: 4px;
    flex: 0 0 auto;
}

.qcyy-macjoy-mark i {
    height: 5px;
    display: block;
    background: #0aa7d8;
    transform: skewX(-24deg);
}

.qcyy-macjoy-word strong {
    color: #2b3035;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.qcyy-macjoy-word em {
    margin-top: 6px;
    color: #5f6972;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
}

.qcyy-partner-copy {
    flex: 1;
    padding: 24px 24px 28px;
}

.qcyy-partner-copy span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    color: var(--qcyy-red);
    background: rgba(237, 0, 17, 0.06);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.qcyy-partner-copy h3 {
    margin: 16px 0 0;
    height: 54px;
    display: -webkit-box;
    overflow: hidden;
    color: #555;
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.qcyy-partner-copy p {
    margin: 14px 0 0;
    color: var(--qcyy-muted);
    font-size: 14px;
    line-height: 1.78;
}

.qcyy-equipment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
}

/* 装备与平台场景卡片用居中换行，保证任意数量都不会在最后一行靠左。 */
.qcyy-equipment-card {
    flex: 0 1 calc((100% - 66px) / 4);
    min-width: 252px;
}

.qcyy-process {
    margin: 0;
    padding: 0;
    counter-reset: qcyy-process;
}

.qcyy-process li {
    position: relative;
    min-height: 72px;
    margin-bottom: 14px;
    padding: 18px 20px 18px 72px;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    color: var(--qcyy-muted);
    line-height: 1.7;
    list-style: none;
}

.qcyy-process li::before {
    counter-increment: qcyy-process;
    content: counter(qcyy-process, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 18px;
    color: var(--qcyy-red);
    font-weight: 700;
}

.qcyy-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.qcyy-case-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.qcyy-case-strip article {
    min-height: 168px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--qcyy-line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.qcyy-case-strip h3 {
    margin: 0;
    color: #555;
    font-size: 20px;
    font-weight: 700;
}

.qcyy-case-strip p {
    margin: 14px 0 0;
    color: var(--qcyy-muted);
    line-height: 1.8;
}

.qcyy-contact-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.1fr) repeat(3, minmax(0, 0.85fr));
    gap: 24px;
    align-items: start;
}

.qcyy-contact-main {
    display: flex;
    flex-direction: column;
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(var(--qcyy-brand-rgb), 0.24), transparent 42%),
        #202020;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.qcyy-contact-main .qcyy-eyebrow,
.qcyy-contact-main h3,
.qcyy-contact-main p {
    color: #fff;
}

.qcyy-contact-card > div {
    padding: 24px 22px 26px;
}

.qcyy-contact-card h3 {
    font-size: 19px;
    line-height: 1.42;
}

.qcyy-contact-routes {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.qcyy-contact-route {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 2px solid var(--qcyy-red);
}

.qcyy-contact-route span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
}

.qcyy-contact-route strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

.qcyy-contact-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.qcyy-contact-values span {
    padding: 8px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.qcyy-contact-tag {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--qcyy-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.qcyy-contact-action {
    display: inline-flex;
    margin-top: 18px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

/* 联系页转化版按选中的视觉稿单独收敛样式，避免影响其它门户页面。 */
.qcyy-page-contact .qcyy-hero {
    height: 690px;
    min-height: 650px;
    background-color: #050607;
}

.qcyy-page-contact .qcyy-hero-bg {
    filter: grayscale(0.15) brightness(0.82);
    background-size: 172% auto;
    background-position: center right;
}

.qcyy-page-contact .qcyy-hero-shade {
    background:
        radial-gradient(circle at 78% 28%, rgba(var(--qcyy-brand-rgb), 0.22), transparent 18%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.36)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.86));
}

.qcyy-contact-hero-inner {
    width: min(1240px, calc(100% - 112px));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 390px);
    gap: 72px;
    align-items: center;
    text-align: left;
}

.qcyy-contact-hero-copy {
    max-width: 620px;
}

.qcyy-contact-hero-copy .qcyy-eyebrow {
    margin-bottom: 26px;
    color: var(--qcyy-red);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.qcyy-contact-hero-copy h1 {
    margin: 0;
    max-width: none;
    font-size: 58px;
    line-height: 1.08;
}

.qcyy-contact-hero-copy .qcyy-hero-subtitle {
    margin: 34px 0 0;
    max-width: none;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.qcyy-contact-hero-copy .qcyy-hero-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.qcyy-contact-hero-copy .qcyy-hero-summary .glyphicon {
    color: var(--qcyy-red);
}

.qcyy-contact-hero-copy .qcyy-hero-phone {
    margin-top: 14px;
}

.qcyy-contact-hero-copy .qcyy-hero-phone a {
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}

.qcyy-contact-hero-copy .qcyy-hero-actions {
    justify-content: flex-start;
    margin-top: 34px;
}

.qcyy-contact-hero-copy .qcyy-button {
    height: 52px;
    min-width: 176px;
    font-size: 15px;
}

.qcyy-contact-hero-copy .qcyy-button::after {
    content: "→";
    margin-left: 12px;
    font-weight: 400;
}

.qcyy-consult-panel {
    position: relative;
    min-height: 458px;
    padding: 42px 34px 38px;
    color: #fff;
    background: rgba(16, 17, 18, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(2px);
}

.qcyy-consult-panel h2 {
    margin: 0 0 34px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
}

.qcyy-consult-panel h2::after {
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    margin-top: 18px;
    background: var(--qcyy-red);
}

.qcyy-consult-panel ol {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qcyy-consult-panel ol::before {
    content: "";
    position: absolute;
    top: 34px;
    right: 30px;
    bottom: 42px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(var(--qcyy-brand-rgb), 0.9), transparent);
}

.qcyy-consult-panel li {
    position: relative;
    min-height: 118px;
    padding: 0 86px 22px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qcyy-consult-panel li + li {
    padding-top: 22px;
}

.qcyy-consult-panel li:last-child {
    min-height: 94px;
    padding-bottom: 0;
    border-bottom: 0;
}

.qcyy-consult-copy {
    display: flex;
    gap: 18px;
}

.qcyy-consult-copy > span {
    color: var(--qcyy-red-soft);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.qcyy-consult-copy h3 {
    margin: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
}

.qcyy-consult-copy p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.qcyy-consult-icon {
    position: absolute;
    right: 6px;
    top: 0;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(var(--qcyy-brand-rgb), 0.88);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(var(--qcyy-brand-rgb), 0.14);
}

.qcyy-consult-panel li + li .qcyy-consult-icon {
    top: 22px;
}

.qcyy-consult-lead-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 18px;
    border: 0;
    color: #fff;
    background: var(--qcyy-red);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-consult-lead-button i {
    font-style: normal;
}

.qcyy-section-contact-channels {
    padding: 62px 0 74px;
    background: #fff;
}

.qcyy-section-contact-channels.qcyy-section-compact {
    padding-top: 60px;
}

.qcyy-section-contact-channels.qcyy-section-compact .qcyy-section-head .qcyy-eyebrow {
    display: block;
}

.qcyy-section-contact-channels .qcyy-section-head {
    margin-bottom: 58px;
}

.qcyy-section-contact-channels .qcyy-section-head h2 {
    color: #111;
    font-size: 37px;
}

.qcyy-contact-channel-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 78px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.qcyy-contact-channel-card {
    position: relative;
    min-height: 418px;
    padding: 58px 32px 32px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.qcyy-channel-icon {
    position: absolute;
    top: -34px;
    left: 50%;
    width: 68px;
    height: 68px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--qcyy-red);
    background: #fff;
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.45);
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 10px 24px rgba(var(--qcyy-brand-rgb), 0.08);
}

.qcyy-channel-label {
    display: block;
    color: var(--qcyy-red);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.qcyy-contact-channel-card h3 {
    margin: 15px 0 20px;
    color: #191919;
    font-size: 21px;
    line-height: 1.35;
}

.qcyy-contact-channel-card figure {
    position: relative;
    width: 176px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    padding: 12px;
    background: #f4f5f6;
    border: 1px solid #e9e9e9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.qcyy-contact-channel-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.qcyy-contact-channel-card p {
    margin: 24px auto 0;
    max-width: 220px;
    color: #666;
    font-size: 14px;
    line-height: 1.78;
}

.qcyy-channel-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 0;
    border: 0;
    color: var(--qcyy-red);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-channel-action i {
    font-style: normal;
}

.qcyy-channel-arrow {
    position: absolute;
    top: 92px;
    right: -52px;
    color: #a6a6a6;
    font-size: 30px;
    font-family: Arial, sans-serif;
}

.qcyy-section-contact-scenarios {
    padding: 70px 0 82px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.qcyy-section-contact-scenarios .qcyy-section-head {
    margin-bottom: 48px;
}

.qcyy-section-contact-scenarios .qcyy-section-head h2 {
    color: #111;
    font-size: 36px;
}

.qcyy-contact-scenario-strip {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qcyy-contact-scenario-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 116px;
    padding: 0 34px;
    border-right: 1px solid #e7e7e7;
}

.qcyy-contact-scenario-item.is-clickable {
    width: 100%;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.qcyy-contact-scenario-item.is-clickable:hover,
.qcyy-contact-scenario-item.is-clickable:focus {
    background: #fafafa;
}

.qcyy-contact-scenario-item:last-child {
    border-right: 0;
}

.qcyy-scenario-icon {
    color: var(--qcyy-red);
    font-size: 48px;
}

.qcyy-contact-scenario-item h3 {
    margin: 0;
    color: #181818;
    font-size: 21px;
    line-height: 1.35;
}

.qcyy-contact-scenario-item p {
    margin: 10px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.qcyy-page-inspection {
    overflow-x: hidden;
}

.qcyy-page-inspection .qcyy-hero {
    min-height: 548px;
    height: 548px;
    padding-top: 64px;
    color: #111;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.96) 52%, rgba(247, 248, 249, 0.92)),
        repeating-linear-gradient(90deg, rgba(18, 24, 32, 0.035) 0, rgba(18, 24, 32, 0.035) 1px, transparent 1px, transparent 86px),
        repeating-linear-gradient(180deg, rgba(18, 24, 32, 0.03) 0, rgba(18, 24, 32, 0.03) 1px, transparent 1px, transparent 72px),
        #f6f7f8;
}

.qcyy-page-inspection .qcyy-hero-bg {
    opacity: 0;
    filter: grayscale(0.9) brightness(1.15);
    background-size: cover;
    background-position: center;
}

.qcyy-page-inspection .qcyy-hero-bg.active {
    opacity: 0.025;
}

.qcyy-page-inspection .qcyy-hero-shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.62)),
        repeating-linear-gradient(90deg, rgba(12, 18, 28, 0.04) 0, rgba(12, 18, 28, 0.04) 1px, transparent 1px, transparent 86px),
        repeating-linear-gradient(180deg, rgba(12, 18, 28, 0.035) 0, rgba(12, 18, 28, 0.035) 1px, transparent 1px, transparent 72px);
}

.qcyy-inspection-hero-inner {
    width: min(1380px, calc(100% - 92px));
    display: grid;
    grid-template-columns: minmax(360px, 0.34fr) minmax(0, 0.66fr);
    gap: 36px;
    align-items: center;
    padding-top: 0;
    text-align: left;
}

.qcyy-inspection-hero-copy .qcyy-eyebrow {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--qcyy-red);
    font-size: 13px;
}

.qcyy-inspection-hero-copy h1 {
    margin: 0;
    max-width: none;
    color: #111;
    font-size: 54px;
    line-height: 1.08;
    text-shadow: none;
}

.qcyy-inspection-hero-copy h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 20px;
    background: var(--qcyy-red);
}

.qcyy-inspection-hero-copy .qcyy-hero-subtitle {
    margin: 18px 0 0;
    max-width: 520px;
    color: #333;
    font-size: 22px;
    line-height: 1.5;
}

.qcyy-inspection-hero-copy .qcyy-hero-summary {
    margin: 18px 0 0;
    max-width: 540px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.qcyy-inspection-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.qcyy-inspection-metrics article {
    min-width: 0;
}

.qcyy-inspection-metrics .glyphicon {
    display: block;
    color: #252525;
    font-size: 30px;
}

.qcyy-inspection-metrics strong {
    display: block;
    margin-top: 14px;
    color: var(--qcyy-red);
    font-size: 19px;
    line-height: 1.2;
    white-space: nowrap;
}

.qcyy-inspection-metrics small {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.qcyy-health-record-panel {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 428px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 24, 32, 0.08);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
    overflow: hidden;
}

.qcyy-health-sidebar {
    padding: 18px 0;
    background: #fbfbfb;
    border-right: 1px solid #ececec;
}

.qcyy-health-sidebar strong {
    display: block;
    padding: 0 16px 14px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.qcyy-health-sidebar span {
    display: block;
    position: relative;
    padding: 9px 16px 9px 22px;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.qcyy-health-sidebar span.active {
    color: var(--qcyy-red);
    background: rgba(var(--qcyy-brand-rgb), 0.06);
    font-weight: 700;
}

.qcyy-health-sidebar span.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--qcyy-red);
}

.qcyy-health-board {
    padding: 20px 22px 16px;
}

.qcyy-health-board-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.qcyy-health-board-head span,
.qcyy-health-board-head p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.qcyy-health-board-head h2 {
    margin: 6px 0 0;
    color: #222;
    font-size: 20px;
    line-height: 1.35;
}

.qcyy-health-board-main {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 174px;
    gap: 14px;
    align-items: stretch;
}

.qcyy-health-score,
.qcyy-health-side article {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
}

.qcyy-health-score {
    padding: 16px 16px;
}

.qcyy-health-score > span {
    display: block;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.qcyy-health-score strong {
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px auto 10px;
    color: #151515;
    font-size: 38px;
    line-height: 1;
    border: 8px solid var(--qcyy-red);
    border-left-color: #e9e9e9;
    border-radius: 50%;
}

.qcyy-health-score small {
    display: block;
    color: #555;
    text-align: center;
    font-size: 13px;
}

.qcyy-health-score p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 13px 0 0;
    color: #777;
    font-size: 12px;
    line-height: 1.4;
}

.qcyy-health-score em {
    font-style: normal;
}

.qcyy-health-score b {
    color: #333;
    font-weight: 700;
}

.qcyy-health-facade {
    position: relative;
    min-height: 246px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #edf1f4;
}

.qcyy-health-facade img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.04) brightness(1.05);
}

.qcyy-health-facade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.14));
    pointer-events: none;
}

.qcyy-health-facade i {
    position: absolute;
    z-index: 2;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--qcyy-red);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(var(--qcyy-brand-rgb), 0.32);
}

.qcyy-health-side {
    display: grid;
    gap: 12px;
}

.qcyy-health-side article {
    padding: 16px;
}

.qcyy-health-side h3 {
    margin: 0 0 12px;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
}

.qcyy-health-side p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

.qcyy-health-side strong {
    color: #222;
    font-weight: 700;
}

.qcyy-health-side p:last-child span,
.qcyy-health-side p:last-child strong {
    color: var(--qcyy-red);
}

.qcyy-health-report {
    display: flex;
    gap: 12px;
    align-items: center;
}

.qcyy-health-report .glyphicon {
    width: 38px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--qcyy-red);
    background: #f6f6f6;
    border: 1px solid #e7e7e7;
    font-size: 19px;
}

.qcyy-health-thumbs {
    display: grid;
    grid-template-columns: 92px repeat(5, minmax(0, 1fr)) 22px;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eeeeee;
}

.qcyy-health-thumbs strong {
    color: #333;
    font-size: 13px;
    line-height: 1.4;
}

.qcyy-health-thumbs figure {
    height: 44px;
    margin: 0;
    border-radius: 3px;
    overflow: hidden;
    background: #f3f3f3;
}

.qcyy-health-thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.02);
}

.qcyy-health-thumbs span {
    color: #777;
    font-size: 24px;
    line-height: 1;
}

.qcyy-health-report strong,
.qcyy-health-report small {
    display: block;
}

.qcyy-health-report strong {
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

.qcyy-health-report small {
    margin-top: 4px;
    color: #777;
    font-size: 12px;
}

.qcyy-section-inspection-timeline {
    padding: 22px 0 24px;
    background: linear-gradient(180deg, #fff, #f5f6f7);
}

.qcyy-section-inspection-timeline .qcyy-section-inner {
    width: min(1380px, 92vw);
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.qcyy-section-inspection-timeline .qcyy-section-head {
    margin: 0;
    text-align: left;
}

.qcyy-section-inspection-timeline .qcyy-section-head h2 {
    color: #222;
    font-size: 30px;
}

.qcyy-section-inspection-timeline .qcyy-section-head p:last-child {
    margin-top: 14px;
    max-width: 300px;
}

.qcyy-inspection-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
}

.qcyy-inspection-timeline article {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.qcyy-inspection-timeline article:not(:last-child)::after {
    content: "›";
    position: absolute;
    top: 32px;
    right: -19px;
    width: auto;
    height: auto;
    color: var(--qcyy-red);
    background: transparent;
    font-size: 34px;
    line-height: 1;
}

.qcyy-inspection-timeline article > span {
    position: absolute;
    top: 0;
    left: 48px;
    z-index: 2;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--qcyy-red);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(var(--qcyy-brand-rgb), 0.28);
}

.qcyy-inspection-timeline article > i {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3f3f3f;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    font-size: 25px;
    font-style: normal;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.qcyy-inspection-timeline h3 {
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.45;
}

.qcyy-inspection-timeline p {
    margin: 6px 0 0;
    color: #777;
    font-size: 12px;
    line-height: 1.55;
}

.qcyy-section-inspection-modules {
    padding: 42px 0 76px;
    background: #fff;
}

.qcyy-section-inspection-modules .qcyy-section-head {
    display: none;
}

.qcyy-inspection-module-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.qcyy-inspection-module-copy {
    position: relative;
    min-height: 330px;
    padding-top: 12px;
}

.qcyy-inspection-module-copy::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 16px;
    bottom: 0;
    height: 150px;
    background: image-set(url("/images/qcyy-generated/qcyy-optimized/inspection-lifecycle.webp") type("image/webp"), url("/images/qcyy-optimized/inspection-lifecycle.jpg") type("image/jpeg")) center / cover no-repeat;
    opacity: 0.08;
    filter: grayscale(1);
}

.qcyy-inspection-module-copy .qcyy-eyebrow {
    color: var(--qcyy-red);
}

.qcyy-inspection-module-copy h3 {
    margin: 18px 0 0;
    color: #222;
    font-size: 30px;
    line-height: 1.35;
}

.qcyy-inspection-module-copy h3::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 20px;
    background: var(--qcyy-red);
}

.qcyy-inspection-module-copy p {
    margin: 24px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.qcyy-inspection-module-table {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.qcyy-inspection-module-table article {
    display: grid;
    grid-template-columns: 64px 52px 240px minmax(0, 1fr);
    gap: 0;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid #ececec;
}

.qcyy-inspection-module-table article:last-child {
    border-bottom: 0;
}

.qcyy-inspection-module-table span {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qcyy-red);
    background: #fafafa;
    border-right: 1px solid #ececec;
    font-size: 17px;
    font-weight: 700;
}

.qcyy-inspection-module-table i {
    color: #555;
    font-size: 21px;
    text-align: center;
    font-style: normal;
}

.qcyy-inspection-module-table h3 {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.45;
}

.qcyy-inspection-module-table p {
    margin: 0;
    padding: 14px 22px 14px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.65;
}

.qcyy-inspection-cta {
    grid-column: 1 / -1;
    min-height: 78px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: -10px;
    padding: 20px 34px;
    background: linear-gradient(90deg, #f4f5f6, #fff);
    border: 1px solid #e8e8e8;
    border-radius: 6px;
}

.qcyy-inspection-cta > .glyphicon {
    color: #333;
    font-size: 32px;
}

.qcyy-inspection-cta strong {
    display: block;
    color: #222;
    font-size: 19px;
    line-height: 1.35;
}

.qcyy-inspection-cta p {
    margin: 6px 0 0;
    color: #777;
    font-size: 13px;
}

.qcyy-inspection-cta a,
.qcyy-inspection-cta button {
    min-width: 136px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 0;
    color: #fff;
    background: var(--qcyy-red);
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-inspection-cta i {
    font-style: normal;
}

/* 智慧检查第 3 版：AI 巡检指挥中心。 */
.qcyy-page-inspection .qcyy-hero {
    height: min(760px, calc(100vh - 24px));
    min-height: 660px;
    padding-top: 64px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(8, 10, 13, 0.94) 42%, rgba(22, 22, 20, 0.7) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 88px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 72px),
        #07080a;
}

.qcyy-page-inspection .qcyy-hero-bg {
    filter: saturate(0.72) contrast(1.08) brightness(0.68);
    background-size: cover;
    background-position: center;
}

.qcyy-page-inspection .qcyy-hero-bg.active {
    opacity: 0.42;
}

.qcyy-page-inspection .qcyy-hero-shade {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.88) 40%, rgba(5, 6, 8, 0.44) 100%),
        linear-gradient(180deg, rgba(5, 6, 8, 0.26), rgba(5, 6, 8, 0.86));
}

.qcyy-inspection-command-inner {
    width: min(1360px, calc(100% - 96px));
    display: grid;
    grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
    gap: 46px;
    align-items: center;
    padding-top: 0;
    text-align: left;
}

.qcyy-inspection-command-copy .qcyy-eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--qcyy-red-soft);
    font-size: 13px;
}

.qcyy-inspection-command-copy h1 {
    margin: 0;
    max-width: none;
    color: #fff;
    font-size: 62px;
    line-height: 1.04;
    text-shadow: none;
}

.qcyy-inspection-command-copy h1::after {
    content: "";
    display: block;
    width: 74px;
    height: 3px;
    margin-top: 22px;
    background: var(--qcyy-red);
}

.qcyy-inspection-command-copy .qcyy-hero-subtitle {
    margin: 22px 0 0;
    max-width: 560px;
    color: #fff;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
}

.qcyy-inspection-command-copy .qcyy-hero-summary {
    margin: 18px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.9;
}

.qcyy-inspection-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.qcyy-inspection-command-actions .qcyy-button {
    height: 46px;
    min-width: 144px;
    padding: 0 22px;
    border-radius: 2px;
}

.qcyy-inspection-command-actions .qcyy-button.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.qcyy-inspection-command-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 34px;
}

.qcyy-inspection-command-metrics article {
    flex: 0 1 calc((100% - 14px) / 2);
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 16px 16px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.qcyy-inspection-command-metrics .glyphicon {
    grid-row: span 2;
    color: var(--qcyy-red-soft);
    font-size: 24px;
}

.qcyy-inspection-command-metrics strong {
    display: block;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
    white-space: nowrap;
}

.qcyy-inspection-command-metrics small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.qcyy-inspection-command-panel {
    min-width: 0;
    padding: 18px;
    color: #fff;
    background: rgba(12, 14, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.qcyy-command-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.qcyy-command-panel-head span,
.qcyy-command-panel-head strong {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.5;
}

.qcyy-command-panel-head strong {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: #fff;
    background: var(--qcyy-red);
    border-radius: 999px;
    font-weight: 700;
}

.qcyy-command-panel-head h2 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
}

.qcyy-command-panel-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 174px;
    gap: 14px;
}

.qcyy-command-panel-main figure {
    position: relative;
    min-height: 312px;
    margin: 0;
    overflow: hidden;
    background: #0e1417;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.qcyy-command-panel-main figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.26;
    pointer-events: none;
}

.qcyy-command-panel-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
}

.qcyy-command-panel-main figure i {
    position: absolute;
    z-index: 2;
    display: grid;
    grid-template-columns: 34px auto;
    align-items: center;
    transform: translate(-50%, -50%);
    color: #fff;
    font-style: normal;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.38));
}

.qcyy-command-panel-main figure b {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--qcyy-red);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 12px;
}

.qcyy-command-panel-main figure em {
    min-width: 48px;
    margin-left: 8px;
    padding: 6px 9px;
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
}

.qcyy-command-readings {
    display: grid;
    gap: 12px;
}

.qcyy-command-readings article {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.qcyy-command-readings .glyphicon {
    color: var(--qcyy-red-soft);
    font-size: 23px;
}

.qcyy-command-readings strong,
.qcyy-command-readings small {
    display: block;
}

.qcyy-command-readings strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.qcyy-command-readings small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.qcyy-command-panel-foot {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 14px;
    margin-top: 14px;
}

.qcyy-command-panel-foot > div {
    min-width: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.qcyy-command-panel-foot strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

.qcyy-command-panel-foot p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.55;
}

.qcyy-command-panel-foot span {
    flex: 0 0 auto;
    color: var(--qcyy-red-soft);
}

.qcyy-command-panel-foot b {
    color: #fff;
    font-weight: 700;
}

.qcyy-section-inspection-command-flow {
    padding: 82px 0 88px;
    background: #fff;
}

.qcyy-section-inspection-command-flow .qcyy-section-head {
    max-width: 820px;
}

.qcyy-section-inspection-command-flow .qcyy-section-head h2,
.qcyy-section-inspection-evidence-suite .qcyy-section-head h2,
.qcyy-section-inspection-module-wall .qcyy-section-head h2 {
    color: #222;
}

.qcyy-inspection-command-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
}

.qcyy-inspection-command-flow article {
    position: relative;
    flex: 0 1 calc((100% - 72px) / 5);
    min-width: 190px;
    min-height: 236px;
    padding: 28px 22px 26px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
}

.qcyy-inspection-command-flow article::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 3px;
    background: var(--qcyy-red);
}

.qcyy-inspection-command-flow article > span {
    color: var(--qcyy-red);
    font-size: 14px;
    font-weight: 700;
}

.qcyy-inspection-command-flow i {
    display: block;
    margin-top: 22px;
    color: #333;
    font-size: 34px;
    font-style: normal;
}

.qcyy-inspection-command-flow h3 {
    margin: 24px 0 0;
    color: #222;
    font-size: 18px;
    line-height: 1.45;
}

.qcyy-inspection-command-flow p {
    margin: 14px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.qcyy-section-inspection-evidence-suite {
    padding: 90px 0 96px;
    background: #f5f6f7;
}

.qcyy-section-inspection-evidence-suite .qcyy-section-head {
    margin-bottom: 54px;
}

.qcyy-inspection-evidence-suite {
    display: grid;
    grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr);
    gap: 48px;
    align-items: center;
}

.qcyy-inspection-evidence-suite figure {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    background: #dfe3e7;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.16);
}

.qcyy-inspection-evidence-suite figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.qcyy-inspection-evidence-suite img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04);
}

.qcyy-inspection-evidence-suite figure i {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
    padding: 7px 10px;
    color: #fff;
    background: var(--qcyy-red);
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(var(--qcyy-brand-rgb), 0.28);
}

.qcyy-inspection-evidence-copy {
    min-width: 0;
}

.qcyy-inspection-evidence-copy .qcyy-eyebrow {
    color: var(--qcyy-red);
}

.qcyy-inspection-evidence-copy h3 {
    margin: 18px 0 0;
    color: #222;
    font-size: 34px;
    line-height: 1.32;
}

.qcyy-inspection-evidence-copy > p {
    margin: 22px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.qcyy-inspection-evidence-copy > div {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.qcyy-inspection-evidence-copy article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
}

.qcyy-inspection-evidence-copy article > span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--qcyy-red);
    background: rgba(var(--qcyy-brand-rgb), 0.06);
    border-radius: 50%;
    font-size: 22px;
}

.qcyy-inspection-evidence-copy h4 {
    margin: 0;
    color: #222;
    font-size: 17px;
    line-height: 1.45;
}

.qcyy-inspection-evidence-copy article p {
    margin: 8px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.qcyy-section-inspection-module-wall {
    padding: 90px 0 104px;
    background:
        linear-gradient(180deg, #fff 0%, #f5f6f7 100%);
}

.qcyy-section-inspection-module-wall .qcyy-section-head {
    max-width: 860px;
}

.qcyy-inspection-module-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
}

.qcyy-inspection-module-wall article {
    position: relative;
    flex: 0 1 calc((100% - 36px) / 3);
    min-width: 260px;
    min-height: 224px;
    padding: 24px 24px 26px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
}

.qcyy-inspection-module-wall article > span {
    color: var(--qcyy-red);
    font-size: 14px;
    font-weight: 700;
}

.qcyy-inspection-module-wall i {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(34, 34, 34, 0.22);
    font-size: 30px;
    font-style: normal;
}

.qcyy-inspection-module-wall h3 {
    margin: 48px 0 0;
    color: #222;
    font-size: 19px;
    line-height: 1.45;
}

.qcyy-inspection-module-wall p {
    margin: 14px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.qcyy-inspection-command-cta {
    flex: 0 0 100%;
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 10px;
    padding: 26px 34px;
    color: #fff;
    background: #111;
    border-radius: 6px;
}

.qcyy-inspection-command-cta strong {
    display: block;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
}

.qcyy-inspection-command-cta p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

.qcyy-inspection-command-cta a,
.qcyy-inspection-command-cta button {
    min-width: 154px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    color: #fff;
    background: var(--qcyy-red);
    border-radius: 2px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-inspection-command-cta i {
    font-style: normal;
}

/* 等宽 item 列表统一居中换行，避免数量不足一整行时靠左。 */
.qcyy-stats,
.qcyy-business-icons,
.qcyy-counter-list,
.qcyy-service-grid,
.qcyy-capability-icons,
.qcyy-values,
.qcyy-qualification-grid,
.qcyy-card-grid,
.qcyy-customer-logo-grid,
.qcyy-partner-grid,
.qcyy-equipment-grid,
.qcyy-case-grid,
.qcyy-case-strip,
.qcyy-contact-channel-flow,
.qcyy-contact-scenario-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.qcyy-counter-item {
    flex: 0 1 calc((100% - 96px) / 5);
}

.qcyy-stat {
    flex: 0 1 calc((100% - 54px) / 4);
}

.qcyy-business-card {
    flex: 0 1 calc((100% - 120px) / 4);
}

.qcyy-capability-card {
    flex: 0 1 calc((100% - 168px) / 4);
}

.qcyy-values article {
    flex: 0 1 calc((100% - 66px) / 4);
}

.qcyy-qualification-card {
    flex: 0 1 calc((100% - 26px) / 2);
}

.qcyy-service-card {
    flex: 0 1 calc((100% - 52px) / 3);
}

.qcyy-info-card,
.qcyy-customer-logo-card {
    flex: 0 1 calc((100% - 44px) / 3);
}

.qcyy-partner-card {
    flex: 0 1 calc((100% - 48px) / 3);
}

.qcyy-case-card {
    flex: 0 1 calc((100% - 56px) / 3);
}

.qcyy-case-strip article {
    flex: 0 1 calc((100% - 36px) / 3);
}

.qcyy-contact-channel-card {
    flex: 0 1 calc((100% - 156px) / 3);
}

.qcyy-contact-scenario-item {
    flex: 0 1 calc(100% / 3);
}

.qcyy-card-grid-image {
    flex: 0 0 100%;
}

.qcyy-float {
    position: fixed;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qcyy-float a,
.qcyy-float button {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: var(--qcyy-red);
    border-radius: 50%;
    font-family: inherit;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 24px rgba(var(--qcyy-brand-rgb), 0.24);
    cursor: pointer;
}

.qcyy-lead-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(12, 15, 20, 0.58);
}

.qcyy-lead-dialog {
    position: relative;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    padding: 34px 34px 32px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
    box-sizing: border-box;
}

.qcyy-lead-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    color: #444;
    background: #f4f5f7;
    border-radius: 50%;
    font-family: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.qcyy-lead-head {
    padding-right: 34px;
}

.qcyy-lead-head p {
    margin: 0 0 10px;
    color: var(--qcyy-red);
    font-size: 13px;
    font-weight: 700;
}

.qcyy-lead-head h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    line-height: 1.25;
}

.qcyy-lead-head span {
    display: block;
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.qcyy-lead-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.qcyy-lead-form label {
    display: block;
}

.qcyy-lead-form label > span {
    display: block;
    margin-bottom: 9px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

/* 必填星号仅提示现有校验字段，不改变官网留资提交逻辑。 */
.qcyy-lead-form .qcyy-required-mark {
    display: inline;
    margin-right: 4px;
    color: #e5484d;
}

.qcyy-lead-form input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d7dbe2;
    border-radius: 4px;
    color: #111;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.qcyy-lead-form input:focus {
    border-color: var(--qcyy-red);
    box-shadow: 0 0 0 3px rgba(var(--qcyy-brand-rgb), 0.08);
}

.qcyy-lead-location-status {
    display: block;
    margin-top: 7px;
    color: #7a8394;
    font-size: 12px;
    line-height: 1.5;
}

.qcyy-lead-demand {
    display: block;
}

.qcyy-lead-demand-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.qcyy-lead-demand-head span {
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.qcyy-lead-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.qcyy-lead-choice {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d7dbe2;
    border-radius: 4px;
    color: #1f2937;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-lead-choice:hover,
.qcyy-lead-choice:focus {
    border-color: var(--qcyy-red);
    outline: none;
}

.qcyy-lead-choice.is-active {
    border-color: var(--qcyy-red);
    color: var(--qcyy-red);
    background: rgba(var(--qcyy-brand-rgb), 0.08);
}

.qcyy-lead-form em {
    display: block;
    margin-top: 7px;
    color: var(--qcyy-red);
    font-style: normal;
    font-size: 13px;
}

.qcyy-lead-message {
    margin: 0;
    color: var(--qcyy-red);
    font-size: 13px;
    line-height: 1.6;
}

.qcyy-lead-privacy {
    margin: -4px 0 0;
    color: #7a8394;
    font-size: 12px;
    line-height: 1.65;
}

.qcyy-lead-submit {
    height: 48px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: var(--qcyy-red);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.qcyy-lead-form > .qcyy-lead-submit {
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.qcyy-lead-submit:hover:not(:disabled),
.qcyy-lead-submit:focus:not(:disabled) {
    background: var(--qcyy-brand-dark);
    box-shadow: 0 12px 24px rgba(var(--qcyy-brand-rgb), 0.22);
    outline: none;
}

.qcyy-lead-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.qcyy-lead-success {
    padding: 6px 0 2px;
    text-align: center;
}

.qcyy-lead-success-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1b9a67;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(27, 154, 103, 0.24);
}

.qcyy-lead-success p {
    margin: 0 0 10px;
    color: var(--qcyy-red);
    font-size: 13px;
    font-weight: 700;
}

.qcyy-lead-success h2 {
    margin: 0;
    color: #111;
    font-size: 29px;
    line-height: 1.25;
}

.qcyy-lead-success span {
    display: block;
    margin-top: 13px;
    color: #555;
    font-size: 14px;
    line-height: 1.75;
}

.qcyy-lead-success ul {
    margin: 24px 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
    text-align: left;
}

.qcyy-lead-success li {
    position: relative;
    min-height: 42px;
    padding: 11px 14px 11px 42px;
    display: flex;
    align-items: center;
    color: #30343b;
    background: #f6f7f9;
    border: 1px solid #eceff3;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.qcyy-lead-success li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1b9a67;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.qcyy-lead-success-action {
    width: 100%;
}

/* 留资弹窗采用柔和动效，避免遮罩和表单突然出现打断浏览体验。 */
.qcyy-lead-fade-enter-active {
    transition: opacity 0.26s ease-out;
}

.qcyy-lead-fade-leave-active {
    transition: opacity 0.18s ease-in;
}

.qcyy-lead-fade-enter,
.qcyy-lead-fade-leave-to {
    opacity: 0;
}

.qcyy-lead-fade-enter-active .qcyy-lead-dialog {
    animation: qcyy-lead-dialog-in 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.qcyy-lead-fade-leave-active .qcyy-lead-dialog {
    animation: qcyy-lead-dialog-out 0.18s ease-in both;
}

@keyframes qcyy-lead-dialog-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
        filter: blur(2px);
    }

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

@keyframes qcyy-lead-dialog-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
}

@keyframes qcyy-lead-sheet-in {
    from {
        opacity: 0;
        transform: translateY(42px);
    }

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

@keyframes qcyy-lead-sheet-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(28px);
    }
}

/* 第三版蓝白 Banner 视觉：仅作用首页，避免影响联系页和智慧检查页的专项首屏。 */
.qcyy-page-home .qcyy-header {
    min-height: 86px;
    padding: 18px 4vw;
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(var(--qcyy-brand-rgb), 0.10);
    box-shadow: 0 14px 38px rgba(14, 57, 96, 0.08);
    backdrop-filter: blur(18px);
}

.qcyy-page-home .qcyy-brand,
.qcyy-page-home .qcyy-brand:hover,
.qcyy-page-home .qcyy-brand:focus,
.qcyy-page-home .qcyy-nav a,
.qcyy-page-home .qcyy-nav a:hover,
.qcyy-page-home .qcyy-nav a:focus {
    color: #14345f;
}

.qcyy-page-home .qcyy-brand-mark {
    box-shadow: 0 0 0 1px rgba(var(--qcyy-brand-rgb), 0.10), 0 10px 24px rgba(var(--qcyy-brand-rgb), 0.10);
}

.qcyy-page-home .qcyy-brand strong {
    color: #103b73;
}

.qcyy-page-home .qcyy-brand em {
    color: rgba(17, 56, 98, 0.72);
}

.qcyy-page-home .qcyy-nav a {
    font-weight: 700;
}

.qcyy-page-home .qcyy-nav a::after {
    height: 2px;
    border-radius: 999px;
    background: var(--qcyy-brand);
}

.qcyy-page-home .qcyy-nav-toggle span {
    background: var(--qcyy-brand);
}

.qcyy-page-home .qcyy-hero {
    height: clamp(620px, 72vh, 720px);
    min-height: 660px;
    color: #14345f;
    background:
        linear-gradient(180deg, #f3fbff 0%, #eaf6ff 100%);
    background-blend-mode: normal;
}

.qcyy-page-home .qcyy-hero::after {
    content: "";
    position: absolute;
    left: -8vw;
    right: -8vw;
    bottom: -92px;
    z-index: 2;
    height: 220px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(var(--qcyy-brand-rgb), 0.28), rgba(255, 255, 255, 0.28));
    border-top: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
    transform: rotate(-2.5deg);
}

.qcyy-page-home .qcyy-hero-bg {
    filter: saturate(1.08) contrast(1.02) brightness(1.08);
    background-position: right center;
}

.qcyy-page-home .qcyy-hero-bg.active {
    opacity: 0.9;
}

.qcyy-page-home .qcyy-hero-shade {
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 252, 255, 0.92) 34%, rgba(224, 243, 255, 0.64) 58%, rgba(255, 255, 255, 0.10) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(218, 239, 253, 0.20) 74%, rgba(var(--qcyy-brand-rgb), 0.12) 100%),
        linear-gradient(165deg, transparent 0 66%, rgba(var(--qcyy-brand-rgb), 0.15) 66.2% 74%, transparent 74.3% 100%);
}

.qcyy-page-home .qcyy-hero-inner {
    width: min(1160px, calc(100% - 112px));
    margin: 0 auto;
    padding-top: 96px;
    text-align: left;
}

.qcyy-page-home .qcyy-hero .qcyy-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--qcyy-brand);
    letter-spacing: 0.22em;
}

.qcyy-page-home .qcyy-hero h1 {
    margin: 0;
    max-width: 900px;
    color: #0e4384;
    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.12;
    text-shadow: none;
}

.qcyy-page-home .qcyy-hero-subtitle {
    margin: 26px 0 0;
    max-width: 660px;
    color: #15345a;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 700;
}

.qcyy-page-home .qcyy-hero-summary {
    margin: 16px 0 0;
    max-width: 680px;
    color: rgba(21, 52, 90, 0.72);
    font-size: 16px;
    line-height: 1.9;
}

.qcyy-page-home .qcyy-hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.qcyy-page-home .qcyy-hero-quick-links a {
    min-width: 178px;
    min-height: 66px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 14px 18px;
    color: #113862;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(20, 76, 120, 0.10);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.qcyy-page-home .qcyy-hero-quick-links a:hover,
.qcyy-page-home .qcyy-hero-quick-links a:focus {
    color: #0e4384;
    border-color: rgba(var(--qcyy-brand-rgb), 0.38);
    box-shadow: 0 20px 48px rgba(var(--qcyy-brand-rgb), 0.16);
    transform: translateY(-2px);
}

.qcyy-page-home .qcyy-hero-quick-links .glyphicon {
    grid-row: span 2;
    color: var(--qcyy-brand);
    font-size: 26px;
}

.qcyy-page-home .qcyy-hero-quick-links strong,
.qcyy-page-home .qcyy-hero-quick-links small {
    display: block;
    min-width: 0;
}

.qcyy-page-home .qcyy-hero-quick-links strong {
    color: #103b73;
    font-size: 17px;
    line-height: 1.25;
}

.qcyy-page-home .qcyy-hero-quick-links small {
    color: rgba(21, 52, 90, 0.58);
    font-size: 12px;
    line-height: 1.4;
}

.qcyy-page-home .qcyy-hero-actions {
    justify-content: flex-start;
}

.qcyy-page-home .qcyy-hero .qcyy-button.ghost {
    color: var(--qcyy-brand);
    border-color: rgba(var(--qcyy-brand-rgb), 0.30);
    background: rgba(255, 255, 255, 0.62);
}

.qcyy-page-home .qcyy-hero-dash {
    justify-content: flex-start;
    margin-top: 54px;
}

.qcyy-page-home .qcyy-hero-dash span,
.qcyy-page-home .qcyy-hero-dash button.active span {
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 126, 198, 0.20);
}

.qcyy-page-home .qcyy-hero-dash span::after,
.qcyy-page-home .qcyy-hero-dash button:hover span,
.qcyy-page-home .qcyy-hero-dash button:focus span {
    background: var(--qcyy-brand);
}

.qcyy-page-home .qcyy-section-business.qcyy-section-compact {
    padding: 58px 0 86px;
    background:
        linear-gradient(180deg, #fff 0%, #f6fbff 100%);
    text-align: left;
}

.qcyy-page-home .qcyy-section-business .qcyy-section-inner {
    width: min(1240px, calc(100% - 112px));
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: center;
}

.qcyy-page-home .qcyy-section-business .qcyy-section-head {
    max-width: none;
    margin: 0;
    text-align: left;
}

.qcyy-page-home .qcyy-section-business .qcyy-section-head .qcyy-eyebrow {
    color: var(--qcyy-brand);
    letter-spacing: 0.22em;
}

.qcyy-page-home .qcyy-section-business .qcyy-section-head h2 {
    color: #0e4384;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.22;
}

.qcyy-page-home .qcyy-section-business .qcyy-section-head p:last-child {
    max-width: 520px;
    margin: 22px 0 0;
    color: rgba(21, 52, 90, 0.68);
}

.qcyy-page-home .qcyy-business-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.qcyy-page-home .qcyy-business-card {
    min-height: 156px;
    padding: 24px 18px 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(14, 57, 96, 0.08);
}

.qcyy-page-home .qcyy-business-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    border-radius: 16px;
    background: rgba(var(--qcyy-brand-rgb), 0.07);
    box-shadow: none;
}

.qcyy-page-home .qcyy-business-icon::before {
    display: none;
}

.qcyy-page-home .qcyy-business-symbol {
    top: 50%;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, -50%) scale(0.34);
    transform-origin: center;
}

.qcyy-page-home .qcyy-business-text {
    width: 100%;
    margin: 0;
}

.qcyy-page-home .qcyy-business-text h3 {
    margin: 0;
    color: #103b73;
    font-size: 18px;
}

.qcyy-page-home .qcyy-business-text p {
    margin: 10px auto 0;
    color: rgba(21, 52, 90, 0.58);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 1180px) {
    .qcyy-page-home .qcyy-header {
        padding: 16px 3vw;
    }

    .qcyy-page-home .qcyy-hero-inner {
        padding-top: 112px;
    }
}

@media (max-width: 920px) {
    .qcyy-page-home .qcyy-hero {
        height: auto;
        min-height: 0;
        padding: 144px 0 72px;
    }

    .qcyy-page-home .qcyy-hero-inner {
        width: min(720px, calc(100% - 52px));
        display: block;
        padding-top: 0;
    }

    .qcyy-page-home .qcyy-hero h1 {
        font-size: 42px;
    }

    .qcyy-page-home .qcyy-hero-quick-links {
        max-width: 560px;
    }

    .qcyy-page-home .qcyy-section-business .qcyy-section-inner {
        width: min(720px, calc(100% - 52px));
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qcyy-page-home .qcyy-business-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .qcyy-page-home .qcyy-header {
        min-height: 70px;
        padding: 12px 18px;
    }

    .qcyy-page-home .qcyy-nav {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        color: #1f1f1f;
        background:
            linear-gradient(180deg, #eef8ff 0%, #f8fcff 34%, #fff 34.1%, #fff 100%);
    }

    .qcyy-page-home .qcyy-nav-hero,
    .qcyy-page-home .qcyy-nav-hero h2 {
        color: #103b73;
    }

    .qcyy-page-home .qcyy-nav-hero span,
    .qcyy-page-home .qcyy-nav-hero p {
        color: rgba(21, 52, 90, 0.68);
    }

    .qcyy-page-home .qcyy-hero {
        padding: 124px 0 58px;
    }

    .qcyy-page-home .qcyy-hero-inner {
        width: calc(100vw - 36px);
    }

    .qcyy-page-home .qcyy-hero h1 {
        font-size: 34px;
        line-height: 1.18;
    }

    .qcyy-page-home .qcyy-hero-subtitle {
        font-size: 18px;
    }

    .qcyy-page-home .qcyy-hero-quick-links {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .qcyy-page-home .qcyy-hero-quick-links a {
        width: 100%;
        min-height: 62px;
    }

    .qcyy-page-home .qcyy-hero-dash {
        margin-top: 34px;
    }

    .qcyy-page-home .qcyy-section-business.qcyy-section-compact {
        padding: 48px 0 64px;
    }

    .qcyy-page-home .qcyy-section-business .qcyy-section-inner {
        width: calc(100vw - 36px);
    }

    .qcyy-page-home .qcyy-section-business .qcyy-section-head h2 {
        font-size: 28px;
    }

    .qcyy-page-home .qcyy-business-icons {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .qcyy-page-home .qcyy-business-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        text-align: left;
    }

    .qcyy-page-home .qcyy-business-icon {
        margin: 0;
    }

    .qcyy-page-home .qcyy-business-text p {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qcyy-lead-fade-enter-active,
    .qcyy-lead-fade-leave-active {
        transition: none;
    }

    .qcyy-lead-fade-enter-active .qcyy-lead-dialog,
    .qcyy-lead-fade-leave-active .qcyy-lead-dialog {
        animation: none;
    }
}

.qcyy-footer {
    padding: 34px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.72);
    background: #111;
}

.qcyy-footer strong {
    display: block;
    color: #fff;
    font-size: 20px;
}

.qcyy-footer span,
.qcyy-footer p {
    margin: 5px 0 0;
}

.qcyy-footer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 14px;
    text-align: right;
}

.qcyy-footer-meta span {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.qcyy-footer-meta span + span::before {
    content: "";
    width: 1px;
    height: 14px;
    margin-right: 14px;
    background: rgba(255, 255, 255, 0.24);
}

.qcyy-footer-brand small {
    display: block;
    max-width: 330px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}

.qcyy-contact-footer {
    position: relative;
    min-height: 260px;
    padding: 54px 5vw 40px;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.45fr);
    align-items: start;
    overflow: hidden;
    background:
        linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
}

.qcyy-contact-footer::after {
    content: "";
    position: absolute;
    right: 5vw;
    bottom: 46px;
    width: 170px;
    height: 170px;
    background: url("/images/qcyy-brand/logo-avatar.png") center / contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.qcyy-contact-footer .qcyy-footer-brand,
.qcyy-contact-footer .qcyy-footer-links,
.qcyy-contact-footer .qcyy-footer-meta {
    position: relative;
    z-index: 1;
}

.qcyy-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.qcyy-footer-links h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
}

.qcyy-footer-link {
    display: block;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    font-family: inherit;
    font-size: 14px;
    line-height: 2;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* 热线作为完整识别信息，任何断点均不可拆分展示。 */
.qcyy-footer-link--phone {
    white-space: nowrap;
    word-break: keep-all;
}

.qcyy-footer-link:hover,
.qcyy-footer-link:focus {
    color: #fff;
    text-decoration: none;
    transform: translateX(2px);
}

.qcyy-footer-link:focus-visible {
    outline: 2px solid rgba(0, 138, 219, 0.9);
    outline-offset: 3px;
    border-radius: 4px;
}

.qcyy-footer-link-static {
    cursor: default;
}

.qcyy-footer-link-static:hover,
.qcyy-footer-link-static:focus {
    color: rgba(255, 255, 255, 0.58);
    transform: none;
}

.qcyy-contact-footer .qcyy-footer-meta {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    margin: 42px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@media (max-width: 1180px) {
    /* 中等窄屏先压缩品牌区和导航间距，避免菜单在平板/窄桌面下突然换成两行。 */
    .qcyy-header {
        min-height: 96px;
        flex-wrap: nowrap;
        gap: clamp(18px, 3vw, 34px);
        padding: 22px 3vw 0;
    }

    .qcyy-brand {
        flex: 0 0 auto;
        min-width: 188px;
        gap: 10px;
    }

    .qcyy-brand-mark {
        width: 46px;
        height: 46px;
    }

    .qcyy-brand strong {
        font-size: 20px;
    }

    .qcyy-nav {
        flex: 1 1 auto;
        justify-content: flex-end;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .qcyy-nav-list {
        gap: clamp(13px, 1.8vw, 22px);
    }

    .qcyy-nav::-webkit-scrollbar {
        display: none;
    }

    .qcyy-nav a {
        padding: 16px 0 8px;
        font-size: 14px;
    }

    .qcyy-hero-inner {
        padding-top: 96px;
    }

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

    .qcyy-equipment-card {
        flex-basis: calc((100% - 22px) / 2);
        max-width: 420px;
    }

    .qcyy-contact-main {
        grid-column: span 2;
    }

    .qcyy-contact-hero-inner {
        width: min(1080px, calc(100% - 72px));
        grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
        gap: 44px;
    }

    .qcyy-contact-hero-copy h1 {
        font-size: 50px;
    }

    .qcyy-inspection-hero-inner {
        width: min(1180px, calc(100% - 72px));
        grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
        gap: 34px;
    }

    .qcyy-inspection-hero-copy h1 {
        font-size: 48px;
    }

    .qcyy-inspection-hero-copy .qcyy-hero-subtitle {
        font-size: 20px;
    }

    .qcyy-inspection-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 22px;
    }

    .qcyy-health-record-panel {
        grid-template-columns: 126px minmax(0, 1fr);
    }

    .qcyy-health-board-main {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .qcyy-health-side {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qcyy-health-thumbs {
        grid-template-columns: 86px repeat(5, minmax(70px, 1fr)) 18px;
    }

    .qcyy-contact-channel-flow {
        gap: 46px;
    }

    .qcyy-channel-arrow {
        right: -34px;
    }

    .qcyy-contact-footer {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 920px) {
    .qcyy-hero {
        height: calc(100vh - 100px);
        min-height: 540px;
    }

    .qcyy-hero h1 {
        font-size: 38px;
    }

    .qcyy-hero-subtitle {
        font-size: 17px;
    }

    .qcyy-page-contact .qcyy-hero {
        height: auto;
        min-height: 0;
        padding: 156px 0 72px;
    }

    .qcyy-contact-hero-inner {
        width: min(720px, calc(100% - 56px));
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 0;
    }

    .qcyy-contact-hero-copy h1 {
        font-size: 44px;
    }

    .qcyy-contact-hero-copy .qcyy-hero-subtitle {
        font-size: 18px;
    }

    .qcyy-consult-panel {
        min-height: 0;
    }

    .qcyy-contact-channel-flow,
    .qcyy-contact-scenario-strip {
        width: min(560px, 100%);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qcyy-channel-arrow {
        display: none;
    }

    .qcyy-contact-scenario-item {
        min-height: 0;
        padding: 0 0 28px;
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .qcyy-contact-scenario-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .qcyy-stats,
    .qcyy-business-icons,
    .qcyy-service-grid,
    .qcyy-capability-icons,
    .qcyy-values,
    .qcyy-card-grid,
    .qcyy-case-grid,
    .qcyy-case-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qcyy-qualification-grid {
        grid-template-columns: 1fr;
    }

    .qcyy-customer-logo-grid {
        gap: 16px;
    }

    .qcyy-customer-logo-card {
        min-height: 150px;
    }

    .qcyy-customer-logo {
        min-height: 94px;
        gap: 10px;
        padding: 20px 14px 16px;
    }

    .qcyy-customer-logo-shimao strong,
    .qcyy-customer-logo-fyrgreen strong,
    .qcyy-customer-logo-yuyuan strong {
        font-size: 21px;
    }

    .qcyy-customer-logo-excellence strong {
        font-size: 19px;
    }

    .qcyy-customer-logo-henderson strong {
        font-size: 15px;
    }

    .qcyy-customer-logo-jinmao strong {
        font-size: 24px;
    }

    .qcyy-partner-grid {
        gap: 16px;
    }

    .qcyy-partner-card {
        min-height: 316px;
    }

    .qcyy-partner-logo {
        min-height: 116px;
        padding: 22px 16px;
    }

    .qcyy-partner-logo-soler {
        gap: 10px;
    }

    .qcyy-partner-logo-soler strong {
        font-size: 24px;
    }

    .qcyy-partner-logo-soler em {
        font-size: 15px;
    }

    .qcyy-partner-logo-sinan strong {
        font-size: 22px;
    }

    .qcyy-macjoy-mark {
        width: 48px;
    }

    .qcyy-macjoy-word strong {
        font-size: 20px;
    }

    .qcyy-partner-copy {
        padding: 22px 18px 24px;
    }

    .qcyy-card-grid-image {
        grid-column: span 2;
    }

    .qcyy-section-business .qcyy-section-head {
        margin-bottom: 72px;
    }

    .qcyy-business-icons {
        gap: 62px 36px;
    }

    .qcyy-counter-band {
        height: 540px;
    }

    .qcyy-counter-band .qcyy-section-inner {
        width: calc(100vw - 48px);
    }

    .qcyy-counter-head {
        top: 12%;
        width: min(620px, calc(100% - 96px));
    }

    .qcyy-counter-head h2 {
        font-size: 30px;
    }

    .qcyy-counter-head p {
        margin-top: 28px;
        font-size: 14px;
        line-height: 1.85;
    }

    .qcyy-counter-list {
        bottom: 58px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
    }

    .qcyy-counter-item {
        flex-basis: calc((100% - 56px) / 5);
    }

    .qcyy-stat,
    .qcyy-values article,
    .qcyy-info-card,
    .qcyy-service-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .qcyy-business-card {
        flex-basis: calc((100% - 36px) / 2);
    }

    .qcyy-capability-card {
        flex-basis: calc((100% - 56px) / 2);
    }

    .qcyy-case-card {
        flex-basis: calc((100% - 28px) / 2);
    }

    .qcyy-case-strip article,
    .qcyy-partner-card,
    .qcyy-customer-logo-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .qcyy-qualification-card,
    .qcyy-contact-channel-card,
    .qcyy-contact-scenario-item {
        flex-basis: 100%;
    }

    .qcyy-counter-item strong {
        font-size: 42px;
    }

    .qcyy-counter-item span,
    .qcyy-counter-item p {
        font-size: 13px;
    }

    /* 中窄屏先收起悬浮入口，避免压住数据带标题和指标。 */
    .qcyy-float {
        display: none;
    }

    .qcyy-visual-text,
    .qcyy-process-wrap {
        grid-template-columns: 1fr;
    }

    .qcyy-section-ai-suite {
        padding: 86px 0 96px;
    }

    .qcyy-section-ai-suite .qcyy-section-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qcyy-section-ai-suite .qcyy-section-head,
    .qcyy-section-ai-suite .qcyy-points,
    .qcyy-section-ai-suite .qcyy-visual-text figure {
        grid-column: 1;
    }

    .qcyy-section-ai-suite .qcyy-section-head {
        grid-row: 1;
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .qcyy-section-ai-suite .qcyy-section-head .qcyy-eyebrow::before {
        display: none;
    }

    .qcyy-section-ai-suite .qcyy-section-head h2 {
        font-size: 38px;
    }

    .qcyy-section-ai-suite .qcyy-section-head p:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .qcyy-section-ai-suite .qcyy-points {
        grid-row: 2;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qcyy-section-ai-suite .qcyy-visual-text figure {
        grid-row: 3;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .qcyy-page-inspection .qcyy-hero {
        height: auto;
        min-height: 0;
        padding: 132px 0 66px;
    }

    .qcyy-inspection-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 0;
    }

    .qcyy-health-record-panel {
        grid-template-columns: 1fr;
    }

    .qcyy-health-sidebar {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid #ececec;
    }

    .qcyy-health-sidebar strong {
        display: none;
    }

    .qcyy-health-sidebar span {
        flex: 0 0 auto;
        padding: 8px 12px;
        border: 1px solid transparent;
        border-radius: 999px;
    }

    .qcyy-health-sidebar span.active {
        border-color: rgba(var(--qcyy-brand-rgb), 0.24);
    }

    .qcyy-health-sidebar span.active::before {
        display: none;
    }

    .qcyy-health-thumbs {
        grid-template-columns: 88px repeat(5, minmax(82px, 1fr)) 18px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .qcyy-section-inspection-timeline .qcyy-section-inner,
    .qcyy-inspection-module-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qcyy-section-inspection-timeline .qcyy-section-head {
        text-align: center;
    }

    .qcyy-section-inspection-timeline .qcyy-section-head p:last-child {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .qcyy-inspection-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 28px;
    }

    .qcyy-inspection-timeline article:not(:last-child)::after {
        display: none;
    }

    .qcyy-inspection-module-copy {
        min-height: 0;
        text-align: center;
    }

    .qcyy-inspection-module-copy::after {
        display: none;
    }

    .qcyy-inspection-module-copy h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .qcyy-inspection-cta {
        margin-top: 0;
    }

    /* 中窄屏改为两栏，确保热线在导航列中保留完整单行宽度。 */
    .qcyy-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 24px;
    }
}

@media (max-width: 640px) {
    /* 核心导航按内容密度紧凑排列，地址换行后仍与导航保留明确间距。 */
    .qcyy-footer-links {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 26px 24px;
    }

    .qcyy-contact-footer .qcyy-footer-links {
        margin-top: 16px;
    }

    .qcyy-footer-column--primary {
        flex: 0 0 112px;
    }

    .qcyy-footer-column--compact,
    .qcyy-footer-column--contact {
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .qcyy-footer-column--compact h3,
    .qcyy-footer-column--contact h3 {
        grid-column: 1 / -1;
        margin: 0;
    }

    .qcyy-footer-column--compact .qcyy-footer-link,
    .qcyy-footer-column--contact .qcyy-footer-link {
        width: auto;
        white-space: nowrap;
    }

    .qcyy-footer-column--contact .qcyy-footer-link--phone {
        grid-column: 1 / -1;
    }

    .qcyy-lead-overlay {
        align-items: end;
        place-items: end center;
        padding: 0;
    }

    .qcyy-lead-dialog {
        width: 100%;
        max-height: calc(100vh - 28px);
        padding: 26px 20px max(24px, env(safe-area-inset-bottom));
        border-radius: 8px 8px 0 0;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .qcyy-lead-fade-enter-active .qcyy-lead-dialog {
        animation-name: qcyy-lead-sheet-in;
        animation-duration: 0.32s;
    }

    .qcyy-lead-fade-leave-active .qcyy-lead-dialog {
        animation-name: qcyy-lead-sheet-out;
        animation-duration: 0.18s;
    }

    .qcyy-lead-head {
        padding-right: 42px;
    }

    .qcyy-lead-head h2 {
        font-size: 24px;
    }

    .qcyy-lead-form {
        gap: 16px;
        margin-top: 22px;
    }

    .qcyy-lead-choice-grid {
        grid-template-columns: 1fr;
    }

    .qcyy-lead-success-mark {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
        font-size: 32px;
    }

    .qcyy-lead-success h2 {
        font-size: 25px;
    }

    .qcyy-lead-success ul {
        margin: 20px 0;
    }

    .qcyy-header {
        min-height: 88px;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
        padding-top: 20px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .qcyy-nav-toggle {
        position: relative;
        z-index: 2;
        display: inline-flex;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 0;
    }

    .qcyy-nav-toggle:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.86);
        outline-offset: 3px;
    }

    .qcyy-nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .qcyy-nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .qcyy-nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* 小屏菜单改为全屏目录页，呼应首页“黑色首屏 + 白色内容区”的官网结构。 */
    .qcyy-nav {
        position: fixed;
        inset: 0;
        z-index: 1;
        display: none;
        width: 100vw;
        min-height: 100vh;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        color: #1f1f1f;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.92) 34%, #fff 34.1%, #fff 100%);
    }

    .qcyy-nav.is-open {
        display: flex;
        flex-direction: column;
    }

    .qcyy-nav-hero {
        display: flex;
        min-height: 0;
        flex: 0 0 31vh;
        box-sizing: border-box;
        padding: 112px 38px 24px;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        text-align: left;
    }

    .qcyy-nav-hero span {
        color: rgba(255, 255, 255, 0.54);
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .qcyy-nav-hero h2 {
        margin: 18px 0 12px;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .qcyy-nav-hero p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 16px;
        line-height: 1.7;
    }

    .qcyy-nav-list {
        display: flex;
        flex: 1 0 auto;
        width: 100%;
        box-sizing: border-box;
        padding: 24px 36px 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
    }

    .qcyy-nav a {
        display: grid;
        min-height: 58px;
        grid-template-columns: 48px minmax(0, 1fr) 20px;
        align-items: center;
        padding: 0;
        color: #1f1f1f;
        text-align: left;
        font-size: 22px;
        font-weight: 600;
        border-bottom: 1px solid #ececec;
        border-radius: 0;
        overflow: visible;
    }

    .qcyy-nav a::after {
        display: none;
    }

    .qcyy-nav a:hover,
    .qcyy-nav a:focus {
        color: #1f1f1f;
    }

    .qcyy-nav a.active {
        color: var(--qcyy-brand);
        background: transparent;
    }

    .qcyy-nav-index,
    .qcyy-nav-arrow {
        display: inline-block;
        color: #9c9c9c;
        font-weight: 400;
    }

    .qcyy-nav-index {
        font-size: 18px;
        letter-spacing: 0.02em;
    }

    .qcyy-nav-label {
        display: inline-block;
        min-width: 0;
    }

    .qcyy-nav-arrow {
        justify-self: end;
        font-size: 15px;
    }

    .qcyy-nav a.active .qcyy-nav-index,
    .qcyy-nav a.active .qcyy-nav-arrow {
        color: var(--qcyy-brand);
    }

    .qcyy-nav a.active .qcyy-nav-label::after {
        content: "";
        display: block;
        width: 64px;
        height: 2px;
        margin-top: 8px;
        background: var(--qcyy-brand);
    }

    .qcyy-nav-service {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 22px 34px max(26px, env(safe-area-inset-bottom));
        color: #7a7a7a;
        background: #f7f7f7;
        text-align: center;
    }

    .qcyy-nav-service strong {
        display: block;
        color: #2d2d2d;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.38;
        letter-spacing: 0.1em;
    }

    .qcyy-nav-service i {
        display: block;
        width: 42px;
        height: 2px;
        margin: 12px auto 12px;
        background: var(--qcyy-brand);
        font-style: normal;
    }

    .qcyy-nav-service p {
        margin: 0 auto;
        max-width: 290px;
        font-size: 12px;
        line-height: 1.72;
    }

    .qcyy-nav-service small {
        display: block;
        margin-top: 14px;
        color: #aaa;
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .qcyy-brand {
        position: relative;
        z-index: 2;
        min-width: 0;
        flex: 1 1 auto;
    }

    .qcyy-brand-mark {
        width: 44px;
        height: 44px;
    }

    .qcyy-brand strong {
        font-size: 18px;
    }

    .qcyy-brand em {
        font-size: 10px;
    }

    .qcyy-hero {
        height: auto;
        min-height: 620px;
    }

    .qcyy-hero-inner,
    .qcyy-section-inner {
        width: calc(100vw - 36px);
    }

    .qcyy-hero-inner {
        padding-top: 108px;
    }

    .qcyy-hero h1 {
        font-size: 25px;
    }

    .qcyy-page-contact .qcyy-hero-actions {
        gap: 10px;
        margin-top: 28px;
    }

    .qcyy-page-contact .qcyy-button {
        min-width: 144px;
        padding: 0 16px;
    }

    .qcyy-page-contact .qcyy-hero {
        padding: 166px 0 58px;
        background-position: right center;
    }

    .qcyy-contact-hero-inner {
        width: calc(100vw - 36px);
        gap: 30px;
    }

    .qcyy-contact-hero-copy h1 {
        font-size: 34px;
    }

    .qcyy-contact-hero-copy .qcyy-eyebrow {
        margin-bottom: 18px;
    }

    .qcyy-contact-hero-copy .qcyy-hero-subtitle {
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.85;
    }

    .qcyy-contact-hero-copy .qcyy-hero-summary {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.8;
    }

    .qcyy-contact-hero-copy .qcyy-hero-actions {
        flex-wrap: wrap;
    }

    .qcyy-consult-panel {
        padding: 28px 22px;
    }

    .qcyy-consult-panel h2 {
        margin-bottom: 26px;
        font-size: 22px;
    }

    .qcyy-consult-panel li,
    .qcyy-consult-panel li + li {
        min-height: 0;
        padding: 0 70px 22px 0;
    }

    .qcyy-consult-copy {
        gap: 12px;
    }

    .qcyy-consult-copy > span {
        font-size: 17px;
    }

    .qcyy-consult-copy h3 {
        font-size: 17px;
    }

    .qcyy-consult-copy p {
        font-size: 13px;
    }

    .qcyy-consult-icon {
        width: 46px;
        height: 46px;
        box-shadow: 0 0 0 7px rgba(var(--qcyy-brand-rgb), 0.13);
    }

    .qcyy-section-contact-channels {
        padding: 54px 0 60px;
    }

    .qcyy-section-contact-channels .qcyy-section-head h2,
    .qcyy-section-contact-scenarios .qcyy-section-head h2 {
        font-size: 27px;
    }

    .qcyy-contact-channel-card {
        min-height: 0;
        padding: 54px 24px 28px;
    }

    .qcyy-contact-channel-card figure {
        width: 150px;
    }

    .qcyy-contact-scenario-item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
    }

    .qcyy-scenario-icon {
        font-size: 38px;
    }

    .qcyy-contact-footer {
        padding: 42px 24px 32px;
    }

    .qcyy-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 24px;
    }

    .qcyy-contact-footer .qcyy-footer-meta {
        justify-content: flex-start;
        text-align: left;
    }

    .qcyy-qualification-card figure {
        padding: 12px;
    }

    .qcyy-qualification-copy {
        padding: 20px 18px 22px;
    }

    .qcyy-qualification-copy dl {
        grid-template-columns: 1fr;
    }

    .qcyy-qualification-copy dl div:first-child {
        grid-column: span 1;
    }

    .qcyy-hero-subtitle {
        margin-top: 22px;
        font-size: 16px;
    }

    .qcyy-hero-summary,
    .qcyy-section-head p:last-child {
        font-size: 14px;
    }

    .qcyy-hero-dash {
        margin-top: 34px;
    }

    .qcyy-hero-dash button,
    .qcyy-hero-dash span {
        width: 38px;
    }

    .qcyy-section {
        padding: 66px 0;
    }

    .qcyy-section-compact {
        padding-top: 52px;
    }

    .qcyy-section-business {
        padding: 74px 0 84px;
    }

    .qcyy-section-business.qcyy-section-compact {
        padding-top: 64px;
    }

    .qcyy-section-head {
        margin-bottom: 38px;
    }

    .qcyy-section-head h2 {
        font-size: 24px;
    }

    .qcyy-section-business .qcyy-section-head {
        margin-bottom: 56px;
    }

    .qcyy-section-business .qcyy-section-head h2 {
        font-size: 26px;
    }

    .qcyy-section-business .qcyy-section-head p:last-child {
        margin-top: 24px;
        font-size: 13px;
    }

    .qcyy-stats,
    .qcyy-business-icons,
    .qcyy-service-grid,
    .qcyy-capability-icons,
    .qcyy-partner-grid,
    .qcyy-values,
    .qcyy-card-grid,
    .qcyy-case-grid,
    .qcyy-case-strip,
    .qcyy-contact-grid {
        grid-template-columns: 1fr;
    }

    .qcyy-equipment-card {
        flex-basis: 100%;
        max-width: none;
        min-width: 0;
    }

    .qcyy-contact-main {
        grid-column: span 1;
        padding: 28px;
    }

    .qcyy-contact-routes {
        margin-top: 24px;
    }

    .qcyy-contact-values {
        margin-top: 0;
        padding-top: 22px;
    }

    .qcyy-business-icons {
        gap: 48px;
    }

    .qcyy-business-icon {
        width: 138px;
        height: 138px;
    }

    .qcyy-business-symbol {
        top: 25px;
        transform: scale(0.82);
        transform-origin: top center;
    }

    .qcyy-business-text {
        width: min(100%, 300px);
    }

    .qcyy-business-text h3 {
        margin-top: 20px;
        font-size: 20px;
    }

    .qcyy-business-text p {
        text-align: center;
    }

    .qcyy-customer-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .qcyy-customer-logo-card {
        min-height: 148px;
    }

    .qcyy-customer-logo {
        min-height: 102px;
        flex-direction: column;
        gap: 8px;
        padding: 18px 12px 14px;
        text-align: center;
    }

    .qcyy-customer-logo strong,
    .qcyy-customer-logo em {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .qcyy-customer-logo-shimao strong,
    .qcyy-customer-logo-fyrgreen strong,
    .qcyy-customer-logo-yuyuan strong {
        font-size: 19px;
    }

    .qcyy-customer-logo-excellence strong,
    .qcyy-customer-logo-henderson strong {
        font-size: 16px;
    }

    .qcyy-customer-logo-jinmao strong {
        font-size: 22px;
    }

    .qcyy-customer-logo-jinmao em {
        font-size: 17px;
    }

    .qcyy-shimao-mark,
    .qcyy-yuyuan-mark {
        width: 38px;
        height: 38px;
    }

    .qcyy-fyrgreen-mark {
        width: 46px;
        height: 34px;
    }

    .qcyy-partner-card {
        min-height: 0;
    }

    .qcyy-partner-logo {
        min-height: 112px;
    }

    .qcyy-partner-logo-soler strong {
        font-size: 30px;
    }

    .qcyy-partner-logo-soler em {
        font-size: 18px;
    }

    .qcyy-partner-logo-sinan strong {
        font-size: 25px;
    }

    .qcyy-macjoy-mark {
        width: 56px;
    }

    .qcyy-macjoy-word strong {
        font-size: 23px;
    }

    .qcyy-section-ai-suite {
        padding: 72px 0 82px;
    }

    .qcyy-section-ai-suite .qcyy-section-inner {
        gap: 28px;
    }

    .qcyy-section-ai-suite .qcyy-section-head h2 {
        font-size: 30px;
    }

    .qcyy-section-ai-suite .qcyy-section-head p:last-child {
        margin-top: 22px;
        font-size: 13px;
        line-height: 1.8;
    }

    .qcyy-section-ai-suite .qcyy-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .qcyy-section-ai-suite .qcyy-points span {
        min-height: 64px;
    }

    .qcyy-section-ai-suite .qcyy-visual-text figure {
        aspect-ratio: 4 / 3;
    }

    .qcyy-visual-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        font-size: 12px;
    }

    .qcyy-counter-band {
        height: auto;
        padding: 72px 0 76px;
    }

    .qcyy-counter-content {
        height: auto;
    }

    .qcyy-counter-head,
    .qcyy-counter-list {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }

    .qcyy-counter-head {
        top: auto;
        width: 100%;
    }

    .qcyy-counter-head h2 {
        font-size: 26px;
    }

    .qcyy-counter-head p {
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.8;
    }

    .qcyy-counter-list {
        margin-top: 54px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .qcyy-counter-item,
    .qcyy-customer-logo-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .qcyy-stat,
    .qcyy-business-card,
    .qcyy-service-card,
    .qcyy-capability-card,
    .qcyy-values article,
    .qcyy-qualification-card,
    .qcyy-info-card,
    .qcyy-partner-card,
    .qcyy-case-card,
    .qcyy-case-strip article,
    .qcyy-contact-channel-card,
    .qcyy-contact-scenario-item {
        flex-basis: 100%;
    }

    .qcyy-counter-item strong {
        font-size: 36px;
    }

    .qcyy-counter-item span,
    .qcyy-counter-item p {
        font-size: 12px;
    }

    .qcyy-counter-item p {
        margin-top: 10px;
    }

    .qcyy-page-inspection .qcyy-header {
        min-height: 88px;
    }

    .qcyy-page-inspection .qcyy-hero {
        padding: 118px 0 52px;
    }

    .qcyy-inspection-hero-inner {
        width: calc(100vw - 36px);
    }

    .qcyy-inspection-hero-copy h1 {
        font-size: 38px;
    }

    .qcyy-inspection-hero-copy .qcyy-hero-subtitle {
        font-size: 18px;
    }

    .qcyy-inspection-hero-copy .qcyy-hero-summary {
        font-size: 14px;
    }

    .qcyy-inspection-metrics {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .qcyy-inspection-metrics article {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 4px 12px;
        align-items: center;
    }

    .qcyy-inspection-metrics .glyphicon {
        grid-row: span 2;
        font-size: 24px;
    }

    .qcyy-inspection-metrics strong {
        margin-top: 0;
        font-size: 19px;
    }

    .qcyy-inspection-metrics small {
        margin-top: 0;
    }

    .qcyy-health-board {
        padding: 18px;
    }

    .qcyy-health-board-head,
    .qcyy-health-board-main,
    .qcyy-health-side {
        grid-template-columns: 1fr;
    }

    .qcyy-health-board-head {
        display: block;
    }

    .qcyy-health-board-head p {
        margin-top: 6px;
    }

    .qcyy-health-facade {
        min-height: 220px;
    }

    .qcyy-health-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .qcyy-health-thumbs strong {
        grid-column: 1 / -1;
    }

    .qcyy-health-thumbs span {
        display: none;
    }

    .qcyy-section-inspection-timeline,
    .qcyy-section-inspection-modules {
        padding: 56px 0 64px;
    }

    .qcyy-inspection-timeline {
        grid-template-columns: 1fr;
    }

    .qcyy-inspection-module-copy h3 {
        font-size: 25px;
    }

    .qcyy-inspection-module-table article {
        grid-template-columns: 48px 42px minmax(0, 1fr);
        min-height: 0;
        align-items: start;
        padding: 14px 0;
    }

    .qcyy-inspection-module-table span {
        min-height: 68px;
    }

    .qcyy-inspection-module-table i {
        padding-top: 4px;
        font-size: 18px;
    }

    .qcyy-inspection-module-table h3 {
        padding-right: 14px;
    }

    .qcyy-inspection-module-table p {
        grid-column: 3;
        padding: 7px 14px 0 0;
        font-size: 13px;
    }

    .qcyy-inspection-cta {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 24px;
    }

    .qcyy-capability-icon {
        width: 132px;
        height: 132px;
        margin-bottom: 20px;
    }

    .qcyy-capability-card p {
        max-width: 280px;
    }

    .qcyy-card-grid-image {
        grid-column: span 1;
    }

    /* 移动端不展示悬浮按钮，避免遮挡正文和图片主体。 */
    .qcyy-float {
        display: none;
    }

    .qcyy-footer {
        display: block;
        padding: 28px 18px;
    }

    .qcyy-footer-meta {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 1180px) {
    .qcyy-page-inspection .qcyy-hero {
        height: auto;
        min-height: 0;
        padding: 112px 0 76px;
    }

    .qcyy-inspection-command-inner {
        width: min(1080px, calc(100% - 72px));
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 0;
    }

    .qcyy-inspection-command-copy {
        max-width: 760px;
    }

    .qcyy-inspection-command-copy h1 {
        font-size: 52px;
    }

    .qcyy-inspection-command-metrics {
        max-width: 700px;
    }

    .qcyy-command-panel-main {
        grid-template-columns: minmax(0, 1fr) 210px;
    }

    .qcyy-inspection-command-flow article {
        flex-basis: calc((100% - 36px) / 3);
    }

    .qcyy-inspection-evidence-suite {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .qcyy-inspection-evidence-suite figure {
        min-height: 360px;
    }

    .qcyy-inspection-evidence-copy {
        max-width: 760px;
    }

    .qcyy-inspection-module-wall article {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 920px) {
    .qcyy-page-inspection .qcyy-hero {
        padding: 132px 0 68px;
    }

    .qcyy-inspection-command-inner {
        width: min(720px, calc(100% - 56px));
    }

    .qcyy-inspection-command-copy h1 {
        font-size: 46px;
    }

    .qcyy-inspection-command-copy .qcyy-hero-subtitle {
        font-size: 21px;
    }

    .qcyy-command-panel-main,
    .qcyy-command-panel-foot {
        grid-template-columns: 1fr;
    }

    .qcyy-command-panel-main figure {
        min-height: 310px;
    }

    .qcyy-command-readings {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qcyy-section-inspection-command-flow,
    .qcyy-section-inspection-evidence-suite,
    .qcyy-section-inspection-module-wall {
        padding: 70px 0 78px;
    }

    .qcyy-inspection-command-flow article {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 640px) {
    .qcyy-page-inspection .qcyy-hero {
        padding: 118px 0 56px;
    }

    .qcyy-inspection-command-inner {
        width: calc(100vw - 36px);
        gap: 28px;
    }

    .qcyy-inspection-command-copy h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    .qcyy-inspection-command-copy h1::after {
        margin-top: 18px;
    }

    .qcyy-inspection-command-copy .qcyy-hero-subtitle {
        margin-top: 18px;
        font-size: 18px;
    }

    .qcyy-inspection-command-copy .qcyy-hero-summary {
        font-size: 14px;
        line-height: 1.8;
    }

    .qcyy-inspection-command-actions {
        gap: 10px;
    }

    .qcyy-inspection-command-actions .qcyy-button {
        min-width: 0;
        flex: 1 1 150px;
        padding: 0 14px;
    }

    .qcyy-inspection-command-metrics article {
        flex-basis: 100%;
    }

    .qcyy-inspection-command-panel {
        padding: 14px;
    }

    .qcyy-command-panel-head {
        display: block;
    }

    .qcyy-command-panel-head strong {
        margin-top: 12px;
    }

    .qcyy-command-panel-head h2 {
        font-size: 18px;
    }

    .qcyy-command-panel-main figure {
        min-height: 242px;
    }

    .qcyy-command-panel-main figure i {
        grid-template-columns: 30px auto;
    }

    .qcyy-command-panel-main figure b {
        width: 30px;
        height: 30px;
    }

    .qcyy-command-panel-main figure em {
        min-width: 0;
        padding: 5px 7px;
    }

    .qcyy-command-readings {
        grid-template-columns: 1fr;
    }

    .qcyy-command-panel-foot p {
        display: block;
    }

    .qcyy-command-panel-foot p span {
        display: inline-block;
        margin-right: 8px;
    }

    .qcyy-inspection-command-flow article,
    .qcyy-inspection-module-wall article {
        flex-basis: 100%;
        min-width: 0;
    }

    .qcyy-inspection-command-flow article {
        min-height: 0;
    }

    .qcyy-inspection-evidence-suite {
        gap: 30px;
    }

    .qcyy-inspection-evidence-suite figure {
        min-height: 260px;
    }

    .qcyy-inspection-evidence-copy h3 {
        font-size: 26px;
    }

    .qcyy-inspection-evidence-copy article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .qcyy-inspection-evidence-copy article > span {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .qcyy-inspection-module-wall h3 {
        margin-top: 42px;
        font-size: 18px;
    }

    .qcyy-inspection-command-cta {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 24px;
    }
}

/* 全站浅色 Banner 扩展：除首页外统一去掉深色遮罩，保留各页面原有内容和交互结构。 */
.qcyy-page-light-banner .qcyy-header {
    min-height: 86px;
    padding: 18px 4vw;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(var(--qcyy-brand-rgb), 0.10);
    box-shadow: 0 14px 38px rgba(14, 57, 96, 0.08);
    backdrop-filter: blur(18px);
}

.qcyy-page-light-banner .qcyy-brand,
.qcyy-page-light-banner .qcyy-brand:hover,
.qcyy-page-light-banner .qcyy-brand:focus,
.qcyy-page-light-banner .qcyy-nav a,
.qcyy-page-light-banner .qcyy-nav a:hover,
.qcyy-page-light-banner .qcyy-nav a:focus {
    color: #14345f;
}

.qcyy-page-light-banner .qcyy-brand-mark {
    box-shadow: 0 0 0 1px rgba(var(--qcyy-brand-rgb), 0.10), 0 10px 24px rgba(var(--qcyy-brand-rgb), 0.10);
}

.qcyy-page-light-banner .qcyy-brand strong {
    color: #103b73;
}

.qcyy-page-light-banner .qcyy-brand em {
    color: rgba(17, 56, 98, 0.72);
}

.qcyy-page-light-banner .qcyy-nav a {
    font-weight: 700;
}

.qcyy-page-light-banner .qcyy-nav a::after {
    height: 2px;
    border-radius: 999px;
    background: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-nav-toggle span {
    background: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-hero {
    height: clamp(560px, 64vh, 700px);
    min-height: 600px;
    color: #14345f;
    background:
        linear-gradient(180deg, #f3fbff 0%, #eaf6ff 100%);
    background-blend-mode: normal;
}

.qcyy-page-light-banner.qcyy-page-contact .qcyy-hero,
.qcyy-page-light-banner.qcyy-page-inspection .qcyy-hero {
    height: clamp(620px, 70vh, 740px);
    min-height: 660px;
    padding-top: 64px;
}

.qcyy-page-light-banner .qcyy-hero::after {
    content: "";
    position: absolute;
    left: -8vw;
    right: -8vw;
    bottom: -96px;
    z-index: 2;
    height: 220px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.20), rgba(var(--qcyy-brand-rgb), 0.26), rgba(255, 255, 255, 0.30));
    border-top: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
    transform: rotate(-2.5deg);
}

.qcyy-page-light-banner .qcyy-hero-bg {
    filter: saturate(1.08) contrast(1.02) brightness(1.08);
    background-position: right center;
}

.qcyy-page-light-banner.qcyy-page-contact .qcyy-hero-bg {
    background-size: cover;
    background-position: center right;
}

.qcyy-page-light-banner .qcyy-hero-bg.active,
.qcyy-page-light-banner .qcyy-hero-bg.leaving {
    opacity: 0.84;
}

.qcyy-page-light-banner .qcyy-hero-shade {
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 252, 255, 0.92) 36%, rgba(224, 243, 255, 0.66) 60%, rgba(255, 255, 255, 0.14) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(218, 239, 253, 0.20) 74%, rgba(var(--qcyy-brand-rgb), 0.12) 100%),
        linear-gradient(165deg, transparent 0 66%, rgba(var(--qcyy-brand-rgb), 0.14) 66.2% 74%, transparent 74.3% 100%);
}

.qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-inner {
    width: min(1160px, calc(100% - 112px));
    margin: 0 auto;
    padding-top: 96px;
    text-align: left;
}

.qcyy-page-light-banner .qcyy-hero .qcyy-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--qcyy-brand);
    letter-spacing: 0.20em;
    text-shadow: none;
}

.qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-eyebrow,
.qcyy-page-light-banner .qcyy-inspection-command-copy .qcyy-eyebrow,
.qcyy-page-light-banner .qcyy-inspection-hero-copy .qcyy-eyebrow {
    display: inline-flex;
    color: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-hero h1,
.qcyy-page-light-banner .qcyy-contact-hero-copy h1,
.qcyy-page-light-banner .qcyy-inspection-command-copy h1,
.qcyy-page-light-banner .qcyy-inspection-hero-copy h1 {
    color: #0e4384;
    text-shadow: none;
}

.qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(40px, 4vw, 54px);
    line-height: 1.14;
}

.qcyy-page-light-banner .qcyy-inspection-command-copy h1::after,
.qcyy-page-light-banner .qcyy-inspection-hero-copy h1::after {
    background: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-hero-subtitle,
.qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-hero-subtitle,
.qcyy-page-light-banner .qcyy-inspection-command-copy .qcyy-hero-subtitle,
.qcyy-page-light-banner .qcyy-inspection-hero-copy .qcyy-hero-subtitle {
    color: #15345a;
    text-shadow: none;
}

.qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-subtitle {
    margin: 24px 0 0;
    max-width: 640px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 700;
}

.qcyy-page-light-banner .qcyy-hero-summary,
.qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-hero-summary,
.qcyy-page-light-banner .qcyy-inspection-command-copy .qcyy-hero-summary,
.qcyy-page-light-banner .qcyy-inspection-hero-copy .qcyy-hero-summary {
    color: rgba(21, 52, 90, 0.70);
    text-shadow: none;
}

.qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-summary {
    margin: 16px 0 0;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.9;
}

.qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-hero-summary .glyphicon {
    color: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-hero .qcyy-button.ghost,
.qcyy-page-light-banner .qcyy-inspection-command-actions .qcyy-button.ghost {
    color: var(--qcyy-brand);
    border-color: rgba(var(--qcyy-brand-rgb), 0.30);
    background: rgba(255, 255, 255, 0.62);
}

.qcyy-page-light-banner .qcyy-inspection-command-actions .qcyy-button,
.qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-button,
.qcyy-page-light-banner .qcyy-consult-lead-button {
    border-radius: 8px;
}

.qcyy-page-light-banner .qcyy-inspection-command-metrics article {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.14);
    box-shadow: 0 14px 34px rgba(14, 57, 96, 0.08);
    backdrop-filter: blur(12px);
}

.qcyy-page-light-banner .qcyy-inspection-command-metrics .glyphicon {
    color: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-inspection-command-metrics strong {
    color: #103b73;
}

.qcyy-page-light-banner .qcyy-inspection-command-metrics small {
    color: rgba(21, 52, 90, 0.62);
}

.qcyy-page-light-banner .qcyy-inspection-command-panel {
    color: #14345f;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    box-shadow: 0 28px 80px rgba(14, 57, 96, 0.16);
    backdrop-filter: blur(16px);
}

.qcyy-page-light-banner .qcyy-command-panel-head span {
    color: rgba(21, 52, 90, 0.62);
}

.qcyy-page-light-banner .qcyy-command-panel-head h2 {
    color: #103b73;
}

.qcyy-page-light-banner .qcyy-command-panel-main figure {
    background: #e7f4fb;
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.12);
}

.qcyy-page-light-banner .qcyy-command-panel-main figure::after {
    background:
        linear-gradient(90deg, rgba(var(--qcyy-brand-rgb), 0.10) 1px, transparent 1px),
        linear-gradient(180deg, rgba(var(--qcyy-brand-rgb), 0.10) 1px, transparent 1px);
}

.qcyy-page-light-banner .qcyy-command-readings article,
.qcyy-page-light-banner .qcyy-command-panel-foot > div {
    background: rgba(var(--qcyy-brand-rgb), 0.06);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.12);
}

.qcyy-page-light-banner .qcyy-command-readings .glyphicon,
.qcyy-page-light-banner .qcyy-command-panel-foot span {
    color: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-command-readings strong,
.qcyy-page-light-banner .qcyy-command-panel-foot strong,
.qcyy-page-light-banner .qcyy-command-panel-foot b {
    color: #103b73;
}

.qcyy-page-light-banner .qcyy-command-readings small,
.qcyy-page-light-banner .qcyy-command-panel-foot p {
    color: rgba(21, 52, 90, 0.66);
}

.qcyy-page-light-banner .qcyy-consult-panel {
    color: #14345f;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.16);
    box-shadow: 0 28px 78px rgba(14, 57, 96, 0.14);
    backdrop-filter: blur(16px);
}

.qcyy-page-light-banner .qcyy-consult-panel h2,
.qcyy-page-light-banner .qcyy-consult-copy h3 {
    color: #103b73;
}

.qcyy-page-light-banner .qcyy-consult-copy > span,
.qcyy-page-light-banner .qcyy-consult-icon {
    color: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-consult-panel h2::after {
    background: var(--qcyy-brand);
}

.qcyy-page-light-banner .qcyy-consult-panel li {
    border-bottom-color: rgba(var(--qcyy-brand-rgb), 0.14);
}

.qcyy-page-light-banner .qcyy-consult-copy p {
    color: rgba(21, 52, 90, 0.66);
}

.qcyy-page-light-banner .qcyy-consult-icon {
    background: rgba(var(--qcyy-brand-rgb), 0.09);
    border-color: rgba(var(--qcyy-brand-rgb), 0.20);
    box-shadow: 0 0 0 9px rgba(var(--qcyy-brand-rgb), 0.10);
}

@media (max-width: 1180px) {
    .qcyy-page-light-banner .qcyy-header {
        padding: 16px 3vw;
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-inner {
        padding-top: 112px;
    }
}

@media (max-width: 920px) {
    .qcyy-page-light-banner .qcyy-hero,
    .qcyy-page-light-banner.qcyy-page-contact .qcyy-hero,
    .qcyy-page-light-banner.qcyy-page-inspection .qcyy-hero {
        height: auto;
        min-height: 0;
        padding: 138px 0 68px;
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-inner,
    .qcyy-page-light-banner .qcyy-contact-hero-inner,
    .qcyy-page-light-banner .qcyy-inspection-command-inner,
    .qcyy-page-light-banner .qcyy-inspection-hero-inner {
        width: min(720px, calc(100% - 56px));
        padding-top: 0;
    }

    .qcyy-page-light-banner .qcyy-contact-hero-inner,
    .qcyy-page-light-banner .qcyy-inspection-command-inner,
    .qcyy-page-light-banner .qcyy-inspection-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero h1,
    .qcyy-page-light-banner .qcyy-contact-hero-copy h1,
    .qcyy-page-light-banner .qcyy-inspection-command-copy h1,
    .qcyy-page-light-banner .qcyy-inspection-hero-copy h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .qcyy-page-light-banner .qcyy-header {
        min-height: 70px;
        padding: 12px 18px;
    }

    .qcyy-page-light-banner .qcyy-nav {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        color: #1f1f1f;
        background:
            linear-gradient(180deg, #eef8ff 0%, #f8fcff 34%, #fff 34.1%, #fff 100%);
    }

    .qcyy-page-light-banner .qcyy-nav-hero,
    .qcyy-page-light-banner .qcyy-nav-hero h2 {
        color: #103b73;
    }

    .qcyy-page-light-banner .qcyy-nav-hero span,
    .qcyy-page-light-banner .qcyy-nav-hero p {
        color: rgba(21, 52, 90, 0.68);
    }

    .qcyy-page-light-banner .qcyy-hero,
    .qcyy-page-light-banner.qcyy-page-contact .qcyy-hero,
    .qcyy-page-light-banner.qcyy-page-inspection .qcyy-hero {
        padding: 124px 0 58px;
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-inner,
    .qcyy-page-light-banner .qcyy-contact-hero-inner,
    .qcyy-page-light-banner .qcyy-inspection-command-inner,
    .qcyy-page-light-banner .qcyy-inspection-hero-inner {
        width: calc(100vw - 36px);
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero h1,
    .qcyy-page-light-banner .qcyy-contact-hero-copy h1,
    .qcyy-page-light-banner .qcyy-inspection-command-copy h1,
    .qcyy-page-light-banner .qcyy-inspection-hero-copy h1 {
        font-size: 34px;
        line-height: 1.18;
    }

    .qcyy-page-light-banner:not(.qcyy-page-contact):not(.qcyy-page-inspection) .qcyy-hero-subtitle,
    .qcyy-page-light-banner .qcyy-contact-hero-copy .qcyy-hero-subtitle,
    .qcyy-page-light-banner .qcyy-inspection-command-copy .qcyy-hero-subtitle,
    .qcyy-page-light-banner .qcyy-inspection-hero-copy .qcyy-hero-subtitle {
        font-size: 18px;
    }

    .qcyy-page-light-banner .qcyy-inspection-command-metrics article {
        flex-basis: 100%;
    }

    .qcyy-page-light-banner .qcyy-command-readings,
    .qcyy-page-light-banner .qcyy-command-panel-foot {
        grid-template-columns: 1fr;
    }
}

/* 首页数据带随蓝白 Banner 统一为浅色品牌区，避免中段重新出现深色遮罩。 */
.qcyy-page-home .qcyy-counter-band {
    height: 620px;
    background:
        linear-gradient(180deg, #f7fcff 0%, #eef8ff 100%);
    color: #14345f;
}

.qcyy-page-home .qcyy-counter-band::before {
    filter: saturate(1.06) contrast(1.02) brightness(1.08);
    opacity: 0.58;
}

.qcyy-page-home .qcyy-counter-band::after {
    z-index: 1;
    opacity: 1;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 252, 255, 0.90) 40%, rgba(224, 243, 255, 0.58) 68%, rgba(255, 255, 255, 0.24) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(var(--qcyy-brand-rgb), 0.16) 100%);
}

.qcyy-page-home .qcyy-counter-head {
    top: 12%;
    width: min(940px, calc(100% - 120px));
}

.qcyy-page-home .qcyy-counter-head h2 {
    color: #0e4384;
    font-size: 54px;
    line-height: 1.16;
    text-shadow: none;
    word-break: keep-all;
}

.qcyy-page-home .qcyy-counter-head p {
    margin-top: 28px;
    color: rgba(21, 52, 90, 0.70);
    font-size: 16px;
}

.qcyy-page-home .qcyy-counter-list {
    bottom: 64px;
    gap: 18px;
}

.qcyy-page-home .qcyy-counter-item {
    min-height: 150px;
    padding: 24px 16px 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(var(--qcyy-brand-rgb), 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(14, 57, 96, 0.10);
    backdrop-filter: blur(14px);
}

.qcyy-page-home .qcyy-counter-value {
    min-height: 68px;
}

.qcyy-page-home .qcyy-counter-item strong {
    color: var(--qcyy-brand);
    font-size: 64px;
    font-weight: 500;
}

.qcyy-page-home .qcyy-counter-item span {
    color: rgba(21, 52, 90, 0.58);
}

.qcyy-page-home .qcyy-counter-item p {
    color: #103b73;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .qcyy-page-home .qcyy-counter-band {
        height: auto;
        padding: 76px 0 82px;
    }

    .qcyy-page-home .qcyy-counter-content {
        height: auto;
    }

    .qcyy-page-home .qcyy-counter-head,
    .qcyy-page-home .qcyy-counter-list {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }

    .qcyy-page-home .qcyy-counter-head {
        top: auto;
        width: min(760px, 100%);
    }

    .qcyy-page-home .qcyy-counter-head h2 {
        font-size: 42px;
    }

    .qcyy-page-home .qcyy-counter-list {
        margin-top: 44px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qcyy-page-home .qcyy-counter-item strong {
        font-size: 52px;
    }
}

@media (max-width: 640px) {
    .qcyy-page-home .qcyy-counter-band {
        padding: 64px 0 70px;
    }

    .qcyy-page-home .qcyy-counter-head h2 {
        font-size: 25px;
        line-height: 1.22;
    }

    .qcyy-page-home .qcyy-counter-head p {
        margin-top: 20px;
        font-size: 13px;
    }

    .qcyy-page-home .qcyy-counter-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .qcyy-page-home .qcyy-counter-item {
        min-height: 132px;
        padding: 20px 12px 18px;
    }

    .qcyy-page-home .qcyy-counter-item strong {
        font-size: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qcyy-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .qcyy-business-icon,
    .qcyy-business-symbol,
    .qcyy-business-text h3,
    .qcyy-image-zoom img,
    .qcyy-visual-text figure img,
    .qcyy-process-wrap figure img,
    .qcyy-image-feature img,
    .qcyy-qualification-card img,
    .qcyy-card-grid-image img,
    .qcyy-capability-icon img {
        transition: none;
        will-change: auto;
    }

    .qcyy-service-card:hover .qcyy-image-zoom img,
    .qcyy-equipment-card:hover .qcyy-image-zoom img,
    .qcyy-case-card:hover .qcyy-image-zoom img,
    .qcyy-contact-card:hover .qcyy-image-zoom img,
    .qcyy-visual-text figure:hover img,
    .qcyy-process-wrap figure:hover img,
    .qcyy-image-feature:hover img,
    .qcyy-qualification-card:hover img,
    .qcyy-card-grid-image:hover img,
    .qcyy-capability-card:hover .qcyy-capability-icon img {
        transform: none;
    }

    .qcyy-business-card:hover .qcyy-business-icon::before {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 920px) {
    .qcyy-service-detail-hero,
    .qcyy-service-detail-body {
        grid-template-columns: 1fr;
    }

    .qcyy-service-detail-hero {
        min-height: auto;
        padding: 54px 0 28px;
        gap: 28px;
    }

    .qcyy-service-detail-hero h1 {
        font-size: 36px;
    }

    .qcyy-service-detail-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .qcyy-service-detail {
        padding-top: 66px;
    }

    .qcyy-service-detail-hero h1 {
        font-size: 30px;
    }

    .qcyy-service-detail-body {
        padding-bottom: 68px;
    }

    .qcyy-rich-content {
        font-size: 15px;
    }
}
