.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;
    width: 40px;
    height: 40px;
    text-align: center;
    /* background: #4E443C; */
    z-index: 5;
    /* font-size:1.5rem; */
    padding:12px 0px;
    /* color: rgba(255,255,255,0.7); */
    color: #333f48;
    border: 1px solid #333f48;
    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 {
    background-color: rgba(51, 63, 72,0.4);
    color: #fff;
    border: none;
    opacity: 1;
}


.control-prev{
    left: 60px;
}

.control-next{
    right: 60px;
}

.slide-btn{
    position: absolute;
    bottom: 10vh;
    left:50%;
    font-size:2rem;
    color:rgba(51, 63, 72,0.4);
    z-index:5;
    /* background:url("../../images/img_down.png") no-repeat center center; */
    /* background-size: contain; */
    /* width: 60px; */
    /* height: 60px; */
    transform:translate(-50%,0);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    transition:ease-in-out;
    animation: jump 2s infinite;
}
.slide-btn:hover{
    cursor: pointer;
    color:#ffa400;
    text-decoration: none;
}

/* @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); }
} */

@keyframes jump {
    0% { bottom:10vh; }
    50% { bottom:5vh; }
    100% { bottom:10vh; }
}



/** Carousel Pagination **/

.jcarousel-pagination {
    
    /* bottom: -60px; */
    /* left: 50%; */
    position: absolute;
    bottom: 40px;
    right: 100px;
    height:40px;

    /* -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: 15px;
    width: 39px;
    line-height: 20px;
    
    background: transparent;
    border-bottom: 2px solid #fff;
    /* color: #4E443C; */
    /* border-radius: 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:#bd9f77;  */
    border-bottom: 2px solid #bd9f77;
}

.jcarousel-pagination a span.active {
    background: #66493d;
    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:576px) and (max-width:767.98px){
    .jcarousel-control-prev,
    .jcarousel-control-next{
        font-size: 2.5rem;
        width:60px;
        height:60px;
        padding:10px 0px;
    }
    .control-prev{ left: 40px; } 
    .control-next{ right: 40px; }
    .slide-btn{ font-size:3rem; }
    .jcarousel-pagination{ right:50px; }
} */

@media (max-width:767.98px){
    .control-prev{ left: 10px; } 
    .control-next{ right: 10px; }
    .jcarousel-pagination{ right:40px; }
    .slide-btn { width:48px; height:48px; }
}

