ul,
ol,
li,
div {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

.ft-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.ft-carousel .carousel-inner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.ft-carousel .carousel-inner .carousel-item {
    float: left;
    height: 100%;
}

.ft-carousel .carousel-item img {
    max-width: 100%;
    height: auto;
}

.ft-carousel .carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0;
    margin-left: 0!important;
}

.ft-carousel .carousel-indicators span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
}

.ft-carousel .carousel-indicators span.active {
    background-color: #1258a0;
}

.ft-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 45px;
    margin-top: -25px;
    cursor: pointer;
}

.ft-carousel .carousel-prev-btn {
    opacity: 0;
    left: 0;
    background: url(../img/prev.png) no-repeat;
}

.ft-carousel .carousel-next-btn {
    opacity: 0;
    right: 0;
    background: url(../img/next.png) no-repeat;
}

.ft-carousel:hover .carousel-next-btn {
    opacity: 1;
}

.ft-carousel:hover .carousel-prev-btn {
    opacity: 1;
}

