/*main CSS*/
#pictureViewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1999101600;
}

    #pictureViewer > .content {
        /*background-color: #fff;*/
        position: absolute;
        width: 100%;
        height: calc(100% - 80px);
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    #pictureViewer .menu-bar {
        width: 100%;
        display: none;
    }

        #pictureViewer .menu-bar .handel {
            width: 40px;
            height: 40px;
            float: right;
            background-repeat: no-repeat;
            background-position: 50%;
            cursor: pointer;
        }

            #pictureViewer .menu-bar .handel:hover {
                background-color: #ff2e67;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

            #pictureViewer .menu-bar .handel.maximization {
                background-image: url(images/maximization_black.png);
                background-size: 14px;
            }

                #pictureViewer .menu-bar .handel.maximization:hover {
                    background-image: url(images/maximization_white.png);
                }

            #pictureViewer .menu-bar .handel.miniaturization {
                background-size: 16px;
                background-image: url(images/miniaturization_black.png);
            }

                #pictureViewer .menu-bar .handel.miniaturization:hover {
                    background-image: url(images/miniaturization_white.png);
                }

            #pictureViewer .menu-bar .handel.close-view {
                background-image: url(images/close_black.png);
                background-size: 15px;
            }

                #pictureViewer .menu-bar .handel.close-view:hover {
                    background-image: url(images/close_white.png);
                }

    #pictureViewer .handel-prev,
    #pictureViewer .handel-next {
        display: inline-block;
        width: 50px;
        height: 80px;
        position: relative;
        top: calc(50% - 40px);
        background-repeat: no-repeat;
        background-size: 25px;
        background-position: 50%;
        cursor: pointer;
        -webkit-transition: all .2s;
        -moz-transition: all .2s;
        -ms-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
        /* »ðºü */
        -moz-user-select: none;
        /* Safari ºÍ Å·Åó */
        -webkit-user-select: none;
        /* IE10+ and Edge */
        -ms-user-select: none;
        /* Standard syntax ±ê×¼Óï·¨(¹È¸è) */
        user-select: none;
    }

    #pictureViewer .handel-prev {
        /*background-image: url(images/prev_blank.png);*/
        background-image: url(images/prev_white.png);
    }

    #pictureViewer .handel-next {
        /*background-image: url(images/next_blank.png);*/
        background-image: url(images/next_white.png);
    }

        #pictureViewer .handel-prev:hover,
        #pictureViewer .handel-next:hover {
            /*background-color: #ff2e67;*/
            background-color: #fff;
            cursor: pointer;
        }

    #pictureViewer .handel-prev:hover {
        /*background-image: url(images/prev_white.png);*/
        background-image: url(images/prev_blank.png);
    }

    #pictureViewer .handel-next:hover {
        /*background-image: url(images/next_white.png);*/
        background-image: url(images/next_blank.png);
    }

    #pictureViewer .picture-content {
        display: inline-block;
        width: calc(100% - 100px);
        /*height: calc(100% - 80px);*/
        height: 100%;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

        #pictureViewer .picture-content .cover {
            position: absolute;
            margin: auto;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

    #pictureViewer .counter {
        position: absolute;
        bottom: 0;
        height: 40px;
        line-height: 40px;
        width: 100%;
        text-align: center;
        color: #808080;
        font-size: 13px;
        display: none;
    }

    #pictureViewer .hide {
        display: none;
    }

    #pictureViewer .left {
        float: left;
    }

    #pictureViewer .right {
        float: right;
    }

    #pictureViewer .clear-flex {
        clear: both;
    }

    #pictureViewer img {
        max-width: 100%;
        max-height: 100%;
        box-shadow: 0 8px 25px rgba(0,0,0,.15) !important;
    }
