blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/*demo CSS*/
img{
    max-width: 100%;
    max-height: 100%;
}
.main-content{
    width: 100%;
}
.title{
    margin: 20px 30px;
}
.image-list{
    width:100%;
    padding:0px;
    margin-left: auto;
    margin-right: auto;
}
.image-list .cover{
    position: relative;
    height:673px;
    display: inline-block;
    cursor: pointer;
    overflow:hidden;
}

/*main CSS*/
#pictureViewer{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,1);
    z-index: 10000;
}
#pictureViewer > .content{
    background-color: #000;
    position: absolute;
    width:95%;
    height:95%;
    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{
    -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(../picture/maximization_white.png);
    background-size: 18px;
}
#pictureViewer .menu-bar .handel.miniaturization{
    background-size: 16px;
    background-image: url(../picture/miniaturization_white.png);
}

#pictureViewer .menu-bar .handel.close-view{
    background-image: url(../picture/close_white.png);
    background-size: 15px;
}
#pictureViewer .handel-prev,
#pictureViewer .handel-next{
    display: inline-block;
    width: 50px;
    height: 70px;
    position: relative;
    top: calc(50% - 80px);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 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{
   background-image: url(../picture/prev_white.png);
}
#pictureViewer .handel-next{
    background-image: url(../picture/next_white.png);
}
#pictureViewer .picture-content{
    display: inline-block;
    width:90%;
    height:90%;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}
/*#pictureViewer .picture-content .cover{
    width:100%;
    height:100%;
    display:inline-block;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/
#pictureViewer .picture-content .cover{
position: absolute;
background: #e7eaee;
-webkit-transform: translate3d(-50%,-50%,0);
-ms-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
left: 50%;
top: 50%;
width: auto; 
min-width: 100px; 
max-width: 100%; 
max-height: 100%;
height: 100%;
}

#pictureViewer .counter{
    position: absolute;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    color: #808080;
    font-size: 13px;
}
#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%;
}
