.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: 100vw;
    float: left;
    /* 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; }

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    transform:translate(0%,-50%);
    /* margin-top: -15px; */
    width: 36px;
    height: 36px;
    text-align: center;
    z-index: 0;
    font-size:1.75rem;
    color: var(--sidebar-color);
    opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 0 0 1px #000;
    border:none;
    z-index: 1;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.8);
    /* -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: var(--main-color);
    opacity: 1;
}


.control-prev{
    left: 10px;
}

.control-next{
    right: 10px;
}




/** Carousel Pagination **/
.jcarousel-pagination-wrapper{
    position: relative;
    overflow: hidden;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
    z-index: 1;
}

.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;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;
    padding:5px;
    /* background-color: #666666; */
    background-color: var(--sidebar-color);
    opacity: 0.6;
    /* color: #4E443C; */
    border-radius: 50%;
    text-indent: -9999px;
    
}

.jcarousel-pagination a:hover,
.jcarousel-pagination a.active { width:15px; height:15px; background-color: var(--main-color); }

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

