﻿.mp圖片播放器1 {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: var(--r-picture-player-height-mobile);
}

    .mp圖片播放器1 .blockContent, .mp圖片播放器1 .loopElementList, .mp圖片播放器1 .elementContainer
    {
        width : 100%;
        height : 100%;
    }

    .mp圖片播放器1 .elementContainer {
        position: relative;
        margin: 0;
        padding: 0;
        background: #ccc;
        height: 100%;
    }

        .mp圖片播放器1 ul {
            margin: 0;
        }

            .mp圖片播放器1 ul li {
                position: absolute;
                left: 0;
                top: 0;
                display: block;
                width: 100%;
                height: 100%;
                list-style: none;
            }

        .mp圖片播放器1 .caption {
            display: none;
        }

        .mp圖片播放器1 .linkCaption {
            display: block;
            position: absolute;
            left: 1em;
            bottom: 1em;
            line-height: 1.5em;
            padding: 0 1em 0 1em;
            background-color: rgba(124, 124, 124, 0.7);
            color: #fff;
        }

        .mp圖片播放器1 .dots {
            display: none;
        }

            .mp圖片播放器1 .dots li {
                display: inline-block;
                margin: 0 10px;
                width: 10px;
                height: 10px;
                border: 2px solid #fff;
                border-radius: 50%;
                opacity: 0.4;
                cursor: pointer;
                transition: background .5s, opacity .5s;
                list-style: none;
            }

                .mp圖片播放器1 .dots li.active {
                    background: #fff;
                    opacity: 1;
                }

        .mp圖片播放器1 .arrow {
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: background .5s, opacity .5s;
        }

            .mp圖片播放器1 .arrow .arrow-left,
            .mp圖片播放器1 .arrow .arrow-right {
                position: absolute;
                top: 50%;
                margin-top: -25px;
                display: block;
                width: 50px;
                height: 50px;
                cursor: pointer;
                opacity: 0.5;
                transition: background .5s, opacity .5s;
            }

                .mp圖片播放器1 .arrow .arrow-left:hover,
                .mp圖片播放器1 .arrow .arrow-right:hover {
                    opacity: 1;
                }

            .mp圖片播放器1 .arrow .arrow-left {
                left: 20px;
                background: url("/App_Ecmascript/jquerySlider/arrow-left.png");
            }

            .mp圖片播放器1 .arrow .arrow-right {
                right: 20px;
                background: url("/App_Ecmascript/jquerySlider/arrow-right.png");
            }

/*Desktop Version*/
@media (min-width: 768px) {
  .mp圖片播放器1 {
     height: 40vw;
  }
    .mp圖片播放器1 .caption {
        display: block;
        position: absolute;
        left: 2em;
        bottom: 2em;
        line-height: 1.5em;
        padding: 0 1em 0 1em;
        background-color: rgba(124, 124, 124, 0.7);
        color: #fff;
    }

    .mp圖片播放器1 .dots {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        width: 100%;
        z-index: 3;
        text-align: center;
    }
}





