/* 企业阿辅首页主视觉覆盖层：保留原首屏 HTML，当前展示完整 VI 效果图。 */
.hero {
    min-height: calc(100vh - 86px);
    height: calc(100vh - 86px);
    padding: 0;
    isolation: isolate;
    background: #0a2540;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: none;
    pointer-events: none;
}

.hero::before {
    z-index: 0;
    background:
        linear-gradient(rgba(10, 37, 64, .34), rgba(10, 37, 64, .34)),
        url("../images/afu-hero-vi.png") center / cover no-repeat;
    filter: blur(22px) saturate(.82);
    transform: scale(1.035);
}

.hero::after {
    z-index: 1;
    background: url("../images/afu-hero-vi.png") center / contain no-repeat;
}

.hero > .hero-container {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        min-height: 360px;
        height: min(100vh, 66.6667vw);
    }

    .hero::before {
        filter: blur(12px) saturate(.8);
    }
}
