﻿/*投影片容器本體*/
.AutoSlideshow {
    user-select: none;
    position: relative;
    /*border-radius: 5px;*/
    background-color: rgba(0, 0, 0, 0); /*背景顏色*/
    overflow: hidden;
    /*transform: rotate(180deg);
    transition: ease-out 1s;*/
    width: 300px;
    height: 200px;
    display: inline-block;
}

    /*.AutoSlideshow:active {
        transform: rotate(0deg);
        transition: ease-out 1s;
    }*/

    .AutoSlideshow iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .AutoSlideshow .iframeForIE iframe {
        width: 80%;
    }

/*Box資料區塊*/
.AutoSlideshowBoxData {
    position: absolute;
    width: inherit;
    height: inherit;
    top: 0;
    left: 0;
}

.AutoSlideshowBoxDataTransition {
    transition: ease-in-out 1s;
}

/*Box資料區塊 cover延展專用物件*/
.AutoSlideshowCoverDiv {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*Box資料區塊 非延展專用物件*/
.AutoSlideshowNoCoverDiv {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/*Memo註解區塊*/
.AutoSlideshowMemoData {
    display: inline-block;
    text-align: left;
    padding: 5px 15px 5px 10px;
    top: 0;
    left: 0;
    position: absolute;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 0;
}

/*Memo註解區塊 圖片物件*/
.AutoSlideshow img {
    width: inherit;
    height: inherit;
}

/*切換箭頭*/
.AutoSlideshowArrow_Left,
.AutoSlideshowArrow_Right {
    cursor: pointer;
    top: 50%;
    position: absolute;
    color: #000;
    font-size: 30px;
    opacity: 0.6;
    background-color: #fff;
    /*border-radius: 3px;*/
}

/*切換箭頭 - 左*/
.AutoSlideshowArrow_Left {
    left: 0;
    padding: 11px 8px 9px 5px;
    margin: -15px 0 0 25px;
}

@media screen and (min-width: 1025px) {
    .AutoSlideshowArrow_Left:hover {
        opacity: 0.8;
    }
}

.AutoSlideshowArrow_Left:active {
    margin: -15px 0 0 23px;
}

/*切換箭頭 - 右*/
.AutoSlideshowArrow_Right {
    right: 0;
    padding: 11px 5px 9px 8px;
    margin: -15px 25px 0 0;
}

@media screen and (min-width: 1025px) {
    .AutoSlideshowArrow_Right:hover {
        opacity: 0.8;
    }
}

.AutoSlideshowArrow_Right:active {
    margin: -15px 23px 0 0;
}

/*物件數量區塊*/
.AutoSlideshowListAmount {
    bottom: 5px;
    left: 5px;
    position: absolute;
    color: #fff;
    font-size: 12px;
    text-shadow: 0 0 3px #000,0 0 3px #000,0 0 3px #000;
}


.AutoSlideshow .SlideCloseBtn {
    cursor: pointer;
    bottom: 5px;
    right: 5px;
    color: #000;
    position: absolute;
    opacity: 0.7;
    background-color: #fff;
    padding: 5px 10px;
    /*border-radius: 5px;*/
    font-size: 20px;
}

@media screen and (min-width: 1025px) {
    .AutoSlideshow .SlideCloseBtn:hover {
        opacity: 1;
    }
}

.AutoSlideshow .SlideCloseBtn:active {
    opacity: 0.7;
    /*bottom: 3px;*/
    /*right: 3px;*/
}

@media screen and (max-width: 732px) {
    .AutoSlideshow .SlideCloseBtn {
        padding: 10px;
        font-size: 16px;
    }

    .AutoSlideshow .AutoSlideshowArrow_Left {
        display: none;
        left: 0;
        font-size: 20px;
    }

    .AutoSlideshow .AutoSlideshowArrow_Right {
        display: none;
        right: 0;
        font-size: 20px;
    }
}

/*控制工具欄*/
.AutoSlideToolsBox {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: linear 0.2s;
}

.AutoSlideshow:hover .AutoSlideToolsBox {
    opacity: 1;
}
