.cs-carousel {
    position: relative;
}

.cs-carousel > .cs-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cs-carousel > .cs-carousel-inner > .item {
    position: relative;
    height: 100%;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left;
}

.cs-carousel > .cs-carousel-inner > .item > img,
.cs-carousel > .cs-carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    /*height: auto;jiawk*/
    line-height: 1;
}

.cs-carousel > .cs-carousel-inner > .active,
.cs-carousel > .cs-carousel-inner > .next,
.cs-carousel > .cs-carousel-inner > .prev {
    display: block;
}

.cs-carousel > .cs-carousel-inner > .active {
    left: 0;
}

.cs-carousel > .cs-carousel-inner > .next,
.cs-carousel > .cs-carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.cs-carousel > .cs-carousel-inner > .next {
    left: 100%;
}

.cs-carousel > .cs-carousel-inner > .prev {
    left: -100%;
}

.cs-carousel > .cs-carousel-inner > .next.left,
.cs-carousel > .cs-carousel-inner > .prev.right {
    left: 0;
}

/*.cs-carousel > cs-.carousel-inner > .active.left {
    left: -100%;
}jiawk*/
.cs-carousel > .cs-carousel-inner > .active.left {
    left: -100%;
}

.cs-carousel > .cs-carousel-inner > .active.right {
    left: 100%;
}

.cs-carousel > .cs-carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    outline: none;
    opacity: .05;
}

.cs-carousel > .cs-carousel-control.left {
    background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0%), color-stop(rgba(0, 0, 0, .0001) 100%));
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}

.cs-carousel > .cs-carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(0, 0, 0, .5) 100%));
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}

.cs-carousel > .cs-carousel-control:hover,
.cs-carousel > .cs-carousel-control:focus {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: none;
    opacity: .9;
}

.cs-carousel > .cs-carousel-control .icon-prev,
.cs-carousel > .cs-carousel-control .icon-next,
.cs-carousel > .cs-carousel-control .fa-chevron-left,
.cs-carousel > .cs-carousel-control .fa-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}

.cs-carousel > .cs-carousel-control .icon-prev,
.cs-carousel > .cs-carousel-control .fa-chevron-left {
    left: 50%;
}

.cs-carousel > .cs-carousel-control .icon-next,
.cs-carousel > .cs-carousel-control .fa-chevron-right {
    right: 50%;
}

.cs-carousel > .cs-carousel-control .icon-prev,
.cs-carousel > .cs-carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif;
}

.cs-carousel > .cs-carousel-control .icon-prev:before {
    content: '\2039';
}

.cs-carousel > .cs-carousel-control .icon-next:before {
    content: '\203a';
}

.cs-carousel > .cs-carousel-inner .cs-carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);


}

.cs-carousel > .cs-carousel-inner .cs-carousel-caption .btn {
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .cs-carousel >  .cs-carousel-control .icon-prev,
    .cs-carousel >  .cs-carousel-control .icon-next {
        top: 40%;
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
        font-size: 80px;
    }

    .cs-carousel >  .cs-carousel-control .icon-prev {
        left: 30%;
    }

    .cs-carousel >  .cs-carousel-control .icon-next {
        right: 25%;
    }

    .cs-carousel > .cs-carousel-inner .cs-carousel-caption {
        position: absolute;
        bottom: 0;
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .cs-carousel > .cs-carousel-indicators {
        bottom: 20px;
    }
}

.cs-carousel > .cs-carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 10px;
    margin-top: 0;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.cs-carousel > .cs-carousel-indicators > li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    border: 1px solid #000000;
    border-radius: 10px;
}

.cs-carousel > .cs-carousel-indicators > li.active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}