.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;
    /* height:100vh; */
}

.jcarousel li {
    width: 200px;
    /* 左右切換 */
    float: left;
    /* 淡入淡出 */
    /* position: absolute; */
    top:0;
    left:0;
    /* border: 1px solid #fff; */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/* 淡入淡出效果 */
/* .jcarousel li .bnr { opacity: 0; } */

/** Carousel Controls **/

.control-prev{
    left: 80px;
}

.control-next{
    right: 80px;
}

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    
    margin-top: -15px;

    text-align: center;
    padding:24px 0px;

    z-index: 0;
    font-size:2rem;

    color: #c3a07e;
    opacity: 0.5;
    text-decoration: none;
    cursor: pointer;

}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    /* color: #fff; */
    opacity: 1;
}


.slide-btn{
    position: absolute;
    bottom: 0vh;
    left: 50%;
    transform: translate(-10%,0);
    width: 1px;
    height: 8vh;
    background-color: #fff;
    overflow: hidden;
}

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

.slide-btn .slidebd {
    position: relative; 
    width: 1px;
    height:8vh;
    background-color: #72b32b;
    animation: jump 3s infinite;
}

.slide-btn .slidebd .icon {
    position: absolute;
    left:50%;
    top:10px;
    transform: translate(-50%);
    
    font-size:1.75rem;
}

@keyframes jump {
    0% { top:-8vh; }
    100% { top:12vh; }
}




/** Carousel Pagination **/

.jcarousel-pagination {
    
    /* bottom: -60px; */
    /* left: 50%; */
    position: absolute;
    bottom: 3vh;
    right: 90px;
    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: 16px;
    width: 16px;
    line-height: 20px;
    background: #fff;
    /* border-bottom: 2px solid #fff; */
    /* color: #fff; */
    border-radius: 25px;
    margin:0px 10px;
}

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

.jcarousel-pagination a span.active {
    background: transparent;
    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 (max-width:1199.98px){
    .control-prev{
        left: 40px;
    }
    
    .control-next{
        right: 40px;
    }
}

@media (max-width:1199.98px) and (min-width:768px) {
    .jcarousel ul { height:50vh; }

    
}

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

/* 手機橫寬991.98內 banner全版 */
@media (max-width:991.98px) and (orientation: landscape){
    .jcarousel ul { height:100vh; }
}

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

}

