.deck-container.deck-fullscreen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
}

.deck-toolbar {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    text-align: center;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease, z-index 0s ease 0.3s;
}

.deck-container:hover .deck-toolbar {
    z-index: 5;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.deck-container.deck-menu .deck-toolbar {
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease, z-index 0s ease 0.3s;
}

.deck-tool {
    display: inline-block;
    border: 1px solid #ccc;
    background: #fff;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 4px;
    border-radius: 8px;
}
/*
 * Deck.js status style
 */

.deck-status {
    display: inline-block;
    color: #888;
    min-width: 60px;
}
/*
 * Deck.js scale style
 */

.deck-scale {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/sys/res/icon/scale.png) center center no-repeat;
    vertical-align: middle;
    cursor: pointer;
}

.js-deck-automatic{
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    font-size: 18px;
    color: #949494;
    padding: 5px;
    cursor: pointer;
}

.deck-scale:hover, .js-deck-automatic:hover{
    background-color: #eee;
}

/*
 * Deck.js navigation style
 */

.deck-next-link,
.deck-prev-link {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33%;
    cursor: pointer;
    opacity: 1;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease, background-image 0.3s ease, z-index 0s ease 0.3s;
}

.deck-next-link {
    background: url(/sys/res/icon/next.png) right 10px center no-repeat;
    right: 0;
}

.deck-prev-link {
    background: url(/sys/res/icon/prev.png) 10px center no-repeat;
    left: 0;
}

.deck-next-link:hover {
    background-image: url(/sys/res/icon/next_hover.png);
    transition: background-image 0.3s ease;
}

.deck-prev-link:hover {
    background-image: url(/sys/res/icon/prev_hover.png);
    transition: background-image 0.3s ease;
}

.deck-container:hover .deck-next-link,
.deck-container:hover .deck-prev-link {
    opacity: 1;
    z-index: 3;
    transition: opacity 0.3s ease, background-image 0.3s ease;
}

.deck-container.deck-menu .deck-prev-link,
.deck-container.deck-menu .deck-next-link,
.deck-container:hover .deck-prev-link.deck-nav-disabled,
.deck-container:hover .deck-next-link.deck-nav-disabled {
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease, background-image 0.3s ease;
}
/*
 * Custom
 */

.deck-enterFS {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/sys/res/icon/fullscreen-gray.png) center center no-repeat;
    vertical-align: middle;
    cursor: pointer;
}

.deck-enterFS.active, .deck-enterFS:hover {
    background-color: #eee;
}

.deck-exitFS {
    position: absolute;
    display: none;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 48px;
    line-height: 1;
    color: #999;
}

.deck-exitFS:hover {
    color: #777;
}

.deck-container.deck-fullscreen:hover .deck-exitFS {
    display: block;
}
.deck-container.deck-fullscreen .slide img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.deck-container .slide {
    text-align: center;
}
.deck-container .slide img {
    max-height: 100%;
}
