/* honor / cf / case 图片点击放大 */
.honor-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.honor-lightbox.is-open {
    display: block;
}

.honor-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
}

.honor-lightbox-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 72px 40px;
    box-sizing: border-box;
}

.honor-lightbox-stage {
    max-width: min(92vw, 1100px);
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-lightbox-stage img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
    background: #fff;
}

.honor-lightbox-caption {
    margin: 16px 0 0;
    max-width: min(92vw, 900px);
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.honor-lightbox-close,
.honor-lightbox-prev,
.honor-lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.honor-lightbox-close:hover,
.honor-lightbox-prev:hover,
.honor-lightbox-next:hover {
    background: rgba(255, 255, 255, .28);
}

.honor-lightbox-close {
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 38px;
}

.honor-lightbox-prev,
.honor-lightbox-next {
    top: 50%;
    width: 46px;
    height: 64px;
    margin-top: -32px;
    border-radius: 6px;
    font-size: 34px;
    line-height: 60px;
}

.honor-lightbox-prev {
    left: 18px;
}

.honor-lightbox-next {
    right: 18px;
}

body.honor-lightbox-open {
    overflow: hidden;
}

.zu11,
.zu112,
.zu114 {
    position: relative;
}

.zu11 a,
.zu112 a,
.zu114 a {
    position: relative;
    display: block;
    cursor: zoom-in;
}

.zu11 a::after,
.zu112 a::after,
.zu114 a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(71, 129, 179, .88) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 18px no-repeat;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.zu11 a:hover::after,
.zu112 a:hover::after,
.zu114 a:hover::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .honor-lightbox-panel {
        padding: 48px 16px 24px;
    }

    .honor-lightbox-prev,
    .honor-lightbox-next {
        width: 38px;
        height: 52px;
        margin-top: -26px;
        font-size: 28px;
        line-height: 48px;
    }

    .honor-lightbox-prev {
        left: 8px;
    }

    .honor-lightbox-next {
        right: 8px;
    }
}
