




/*main CSS*/
#pictureViewer{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);backdrop-filter: blur(3px);
    z-index: 10000;
}
#pictureViewer > .content{
   /* background: #fff; */
    position: absolute;
    width:1235px;
    height:92vh;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#pictureViewer .menu-bar{
    width: 100%;
}
#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: #98be33;

    -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(../img/maximization_black.png);
    background-size: 14px;
}
#pictureViewer .menu-bar .handel.maximization:hover{
    background-image: url(../img/maximization_white.png);
}
#pictureViewer .menu-bar .handel.miniaturization{
    background-size: 16px;
    background-image: url(../img/miniaturization_black.png);
}
#pictureViewer .menu-bar .handel.miniaturization:hover{
    background-image: url(../img/miniaturization_white.png);
}
#pictureViewer .menu-bar .handel.close-view{
    background-image: url(../img/close_white.png);
    background-size: 15px;
}
#pictureViewer .menu-bar .handel.close-view:hover{
    background-image: url(../img/close_white.png);
}
#pictureViewer .handel-prev,
#pictureViewer .handel-next{
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative; z-index: 10;
    top: calc(50% - 25px);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 50%; border-radius: 50%;
    cursor: pointer;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#pictureViewer .handel-prev{ left: -20%;
    background-image: url(../img/prev_white.png);
}
#pictureViewer .handel-next{ right: -20%;
    background-image: url(../img/next_white.png);
}
#pictureViewer .handel-prev:hover,
#pictureViewer .handel-next:hover{
    background-color:#98be33;
}
#pictureViewer .handel-prev:hover{
    background-image: url(../img/prev_white.png);
}
#pictureViewer .handel-next:hover{
    background-image: url(../img/next_white.png);
}
#pictureViewer .picture-content{
    display:flex; align-items: center;
    width: 100%;
    height:90vh;
    position: absolute;
    margin: 0 auto;
    left: 0; top:25px;
    right: 0;
}
#pictureViewer .picture-content img{width: 100%;}
#pictureViewer .picture-content .cover{
   display:block;
   width: 100%;
}
#pictureViewer .counter{
    position: absolute;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    color: #333;
    font-size:14px;
}
#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%;
}

@media  screen and (max-width:1800px){
#pictureViewer .handel-prev{ left: -10%;
}
#pictureViewer .handel-next{ right: -10%;
}
}
@media  screen and (max-width: 1500px){
#pictureViewer > .content{width:80%;}
}
@media screen and (max-width: 1024px) {
#pictureViewer > .content{width:86%;}
#pictureViewer .handel-prev{ left:-30px;
}
#pictureViewer .handel-next{ right:-30px;
}
#pictureViewer .handel-prev,
#pictureViewer .handel-next{
    width:30px;
    height: 30px;
    top: calc(50% - 15px);  
    background-size: 18px;
}

}


html{ overflow-x: visible !important;}