@charset "utf-8";

.img-browser {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    background-color: rgba(0,0,0,.8);
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;

}
.img-browser .img-content{
    position: fixed;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    cursor: url('../icon/hand.ico'), move;
    transition: .5s transform;
    user-select: none;
    background: url('../image/loading_search.gif') no-repeat center center;

}
.img-browser .img-content .img-content-scale{
    transition: .5s transform;
}
.img-browser .img-content-image {
    display: block;
    transition: .5s transform;
}

.img-browser .img-tools {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38px;
    padding: 2px 0;
    background-color: rgba(0,0,0,.5);
    text-align: center;
    user-select: none;
}

.img-browser .img-tools button {
    outline: none;
    height: 38px;
    width: 38px;
    padding: 0;
    overflow: hidden;
    text-indent: -999em;
    border: 1px solid rgba(255,255,255,.5);
    background-color: rgba(255,255,255,.2);
    margin: 0 5px;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    user-select: none;
}
.img-browser .img-tools .img-tool-magnify {
    background-image: url('../icon/magnify.png');
}
.img-browser .img-tools .img-tool-shrink{
    background-image: url('../icon/shrink.png');
}
.img-browser .img-tools .img-tool-clockwise {
    background-image: url('../icon/clockwise.png');
}
.img-browser .img-tools .img-tool-anticlockwise {
    background-image: url('../icon/anticlockwise.png');
}
.img-browser .img-tools .img-tool-quit {
    background-image: url('../icon/quit.png');
    border: 1px solid rgba(255,0,0,.5);
    background-color: rgba(255,0,0,.2);
}

.img-browser .img-tools button:hover {
    border: 1px solid rgba(255,255,255,.6);
    background-color: rgba(255,255,255,.3);
}
.img-browser .img-tools .img-tool-quit:hover {
    border: 1px solid rgba(255,0,0,.6);
    background-color: rgba(255,0,0,.3);
}