#pictureViewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999999;
    transition: opacity 0.4s ease;
    opacity: 0;
}

#pictureViewer .layui-layer-setwin .layui-layer-close2{
    transition: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
}

#pictureViewer .layui-layer-setwin .layui-layer-close2:hover {
    background: url(/js/layer/skin/default/icon2.png) no-repeat;
    background-position: -118px -32px;
}

.navigation_animation {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0s;
    -webkit-timing-function: ease;
}


#pictureViewer .darken_screen {
    background-color: #111211;
    width: 100%;;
    height: 100%;;
    position: fixed;
    z-index: 999;
    opacity: .7;
}

#pictureViewer > .content {
    position: absolute;
    margin: auto;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    aspect-ratio: 1 / 1;
    z-index: 9999;
    max-width: 90%;
    max-height: 90%;
    padding: 54px;
}

#pictureViewer .picture-content {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url(../images/gaming_pcs_category_bg.png) !important;
    background-size: cover;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 21%);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pictureViewer .picture-content .cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#pictureViewer .handel-prev, #pictureViewer .handel-next {
    color: #B3B3B3;
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 5px 20px 0 rgb(0 0 0 / 15%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    position: absolute;
}

#pictureViewer .left, #pictureViewer .right {
    bottom: 0px;
    font-size: 18px;
    font-weight: 600;
}

#pictureViewer .right {
    right: 54px;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    #pictureViewer .left {
        left: 0px;
    }

    #pictureViewer .right {
        right: 0px;
    }

    #pictureViewer .left, #pictureViewer .right {
        bottom: calc(50% - 22px);
    }

    #pictureViewer > .content {
        top: 0;
        padding: 86px;
    }
}

