.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 **/

.control-prev{
    left: 50px;
    /* background: url("../../images/arr_left.png") no-repeat center center; */
}

.control-next{
    right: 50px;
    /* background: url("../../images/arr_right.png") no-repeat center center; */
}

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    /* bottom:0px; */
    
    margin-top: -15px;
    /* width: 80px; */
    /* height: 80px; */
    text-align: center;
    padding:24px 0px;
    /* background: #4E443C; */
    z-index: 0;
    font-size:2rem;
    /* background-color: rgba(29,32,136,0.7); */
    /* background-color: #fff; */
    color: #000;
    opacity: 0.4;
    text-decoration: none;
    cursor: pointer;
    /* text-shadow: 0 0 1px #000; */
    /* 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; */
}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    /* color: #fff; */
    /* color: #78b400; */
    opacity: 1;
}

.controlbd {
    position: absolute;
    left:79px;
    top:30px;
    height:20px;
    width:1px;
    background-color:#e2e2e2;
}


.slide-btn{
    position: absolute;
    bottom: 0vh;
    left:50%;
    /* background:url("../../images/img_down.png") no-repeat center center; */
    /* background-size: contain; */
    width: 60px;
    height: 60px;
    color: #17a2b8;
    font-size:0.9rem;
    transform:translate(-50%,-1px);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    /* animation: shadow-pulse 1s infinite; */
}

.slide-btn:hover{
    cursor: pointer;
    color:#ffc107;
    text-decoration: none;
}

.slide-btn .slidebd {
    position: relative; 
    height:40px;
    width:1px;
    background-color: rgb(250, 250, 250, 0.2);
    margin-left:29px;
    overflow: hidden;
}

.slide-btn .slidebd .bar {
    position: absolute;
    top:0px;
    height:20px;
    width:2px;
    background-color:#17a2b8;
    animation: jump 2s infinite;
}

@keyframes jump {
    0% { top:-20px; }
    100% { top:40px; }
}

@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 {
    
    /* bottom: -60px; */
    /* left: 50%; */
    position: absolute;
    bottom: 3vh;
    right: 25px;
    height:30px;
    /* -webkit-transform: translate(-50%, 0); */
    /* -ms-transform: translate(-50%, 0); */
    /* transform: translate(-50%, 0); */
    margin: 0;
}

.pagin a {
    padding : 10px 0px;
    text-indent: -9999px;
}

.pagin a span {
    text-decoration: none;
    display: inline-block;
    /* font-size: 11px; */
    height: 12px;
    width: 12px;
    line-height: 20px;
    background: #000;
    opacity: 0.4;
    /* border-bottom: 2px solid #fff; */
    /* color: #fff; */
    border-radius: 25px;
    margin:0px 10px;
    

    /* margin:0px 4px; */

    /* -webkit-box-shadow: 0 0 2px #4E443C; */
    /* -moz-box-shadow: 0 0 2px #4E443C; */
    /* box-shadow: 0 0 2px #4E443C; */
}

.pagin a:hover span { 
    background:#000; 
    opacity: 1;
    /* border-bottom: 2px solid #bd9f77; */
}

.jcarousel-pagination a span.active {
    background: #fff;
    opacity: 1;
    /* border:1px solid #fff; */
    /* border-bottom: 2px solid #66493d; */
    /* height: 6px; */
    /* color: #fff; */
    /* opacity: 1; */

    /* -webkit-box-shadow: 0 0 2px #F0EFE7; */
    /* -moz-box-shadow: 0 0 2px #F0EFE7; */
    /* box-shadow: 0 0 2px #F0EFE7; */
}

@media (min-width:768px) and (max-width:991.98px){
    /* .slide-btn { bottom: 3vh; } */
    .jcarousel-pagination { bottom: 3vh; }
}

@media (max-width:767.98px){
    .control-prev { left: 20px; }
    .control-next { right: 20px; }
}

/* @media (min-width:576px) and (max-width:767.98px){

    .jcarousel-pagination{ right:50px; }
} */

@media (max-width:575.98px){
    .controlbd { left:59px; height:20px; top:20px; }
    .jcarousel-pagination{ right:40px; }
    .slide-btn { width:60px; height:60px; }
}

