.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%;
    /* padding: 0 10px; */
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    max-height:80vh;
    margin-right:25px;
    /* border: 1px solid #fff; */

    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.jcarousel li a { color:#666666; }
.jcarousel li:hover a { color:#007bff; }
.jcarousel li:hover img {
    transition: transform .2s;
    transform: scale(1.025);
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    transform:translate(0%,-50%);
    /* margin-top: -15px; */
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: #666666;
    z-index: 0;
    font-size:1.25rem;
    /* color: rgba(255,255,255,0.7); */
    color:#fff;
    opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 0 0 1px #000;
    border:none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    /* -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: #007bff;
    opacity: 1;
}


.control-prev{
    left: 0px;
}

.control-next{
    right: 0px;
}


/** Carousel Pagination **/
.jcarousel-pagination-wrapper{
    position: relative;
    overflow: hidden;
}

.jcarousel-pagination {
    position: relative;
    /* bottom: -60px; */
    /* left: 50%; */
    /* -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px); */
    margin: 0;
    text-align: left;
    transition: transform .2s;
}

.jcarousel-pagination a {
    text-decoration: none;
    padding:3px;
    opacity: 0.5;
}

.jcarousel-pagination a:hover,
.jcarousel-pagination a.active { opacity: 1; }

@media (max-width:767.98px){
    
}

