.jcarousel-wrapper {
    margin: 0px auto;
    position: relative;
    /* border: 10px solid #fff; */
    /* -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
    -moz-box-shadow: 0 0 2px #999;
    box-shadow: 0 0 2px #999; */  /* 邊框 */
}


/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    /* border: 1px solid #fff; */

    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    text-align: center;
    z-index: 0;
    font-size:1.4rem;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    /* font: 24px/27px Arial, sans-serif; */
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    /* -webkit-box-shadow: 0 0 4px #F0EFE7; */
    /* -moz-box-shadow: 0 0 4px #F0EFE7; */
    /* box-shadow: 0 0 4px #F0EFE7; */
    width:48px;
    height:48px;
    border:1px solid #fff;
    border-radius:24px;
    background-color: rgba(100,156,156,0.4);
    padding-top:14px;
}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    color: #008ca4;
    opacity: 1;
}


.control-prev{
    left: 60px;
}

.control-next{
    right: 60px;
}

.slide-btn{
    position: absolute;
    bottom: 10vh;
    left:50%;
    background:url("../../images/img_down.png") no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 60px;
    transform:translate(-50%,-50%);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    animation: shadow-pulse 1s infinite;
}
.slide-btn:hover{
    cursor: pointer;
}

@keyframes shadow-pulse{
    0% { box-shadow: 0 0 0 0px rgba(255,255,255,0.2); }
    100% { box-shadow: 0 0 00 35px rgba(255,255,255,0); }
}




/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    left: 50%;
    bottom: 40px;

    -webkit-transform: translate(-50%, 0); 
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.pagin a {
    display:inline-block;
    width:16px; height:16px;
    border-radius:10px;
    border:2px solid #fff;
    text-indent: -9999px;
    margin:0 6px;
}
.pagin a.active { background-color:#fff; }
.pagin a:hover { background-color:#fff; }

@media (min-width:768px) and (max-width:991.98px){
    .slide-btn { bottom: 4vh; }
}

/* @media (min-width:576px) and (max-width:767.98px){
    .jcarousel-control-prev,
    .jcarousel-control-next{
        font-size: 3.5rem;
    }
    .control-prev{ left: 40px; } 
    .control-next{ right: 40px; }
    .slide-btn{ width:60px; height:60px; }
    .jcarousel-pagination{ right:50px; }
} */

@media (max-width:992.98px){
    .jcarousel-pagination{ left:60px; }
}
@media (max-width:767.98px){
    .control-prev{ left: 10px; } 
    .control-next{ right: 10px; }
    .slide-btn { width:48px; height:48px; bottom:10px; }

    .jcarousel-control-prev,
    .jcarousel-control-next {
        font-size:1.1rem;
        width:38px;
        height:38px;
        border:1px solid #fff;
        border-radius:20px;
        padding-top:10px;
    }
}

