.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 {
    overflow: hidden;
    width: 100%;
}

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

.jcarousel li {
    float: left;
    /* border: 1px solid #fff; */

    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height:100%;
}


/** Carousel Controls **/
.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    transform: translate(0px,-50%);

    width: 30px;
    height: 60px;
    color:#fff;
    /* background-color:#8fc13f; */
    z-index: 0;
    /* opacity: 0.6; */
    text-decoration: none;
    cursor: pointer;
    background-size:contain;

    /* font-size:1.5rem; */
    /* padding:18px 0px; */
}

.control-prev{
    left: 15px;
    text-align: left;
    background: url("../../images/ico-prev.png") no-repeat left center;
    background-size: contain;
}

.control-next{
    right: 15px;
    text-align:right;
    background: url("../../images/ico-next.png") no-repeat right center;
    background-size: contain;
}

.control-prev:hover{
    background: url("../../images/ico-prev-o.png") no-repeat left center;
    background-size:contain;
}
.control-next:hover{
    background: url("../../images/ico-next-o.png") no-repeat right center;
    background-size:contain;
}


.slide-btn{
    position: absolute;
    bottom: 0px;
    right:0px;
    width: 60px;
    color: #9ca7b8;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

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

.slide-btn .txt {
    line-height: 60px;
    font-size:0.75rem;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-btn .slidebd {
    position: relative; 
    height:70px;
    width:1px;
    background-color: rgba(156, 167, 184, 0.2);
    margin-left:29px;
    overflow: hidden;
}

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

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

@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 {
    
    position: absolute;
    bottom: 30px;
    left:50%;
    transform:translate(-50%);
    /* -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: 2px solid #7ecef4;
    border-radius: 25px;
    margin:0px 10px;

    /* -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:#00419b; */
}

.jcarousel-pagination a span.active {
    background: #00a0e9;
    border:none;
    height: 8px;
    width: 8px;
    margin:4px 10px;
}

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

    .jcarousel-pagination { bottom:15px; }
    .pagin a span { width:12px; height:12px; margin:0px 5px; }
    .jcarousel-pagination a span.active { height:6px; width:6px; margin:3px 5px; }

    .slide-btn { right:0px; }
}
