.tbui_slideshow_container {
    position: relative;
    overflow: hidden;
}

.tbui_slideshow_container .tbui_slideshow_list {
    position: relative;
}

.tbui_slideshow_container .tbui_slideshow_slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display : none;
    webkitBackfaceVisibility: hidden;
}

.tbui_slideshow_nav li {
    float: left;
    margin: 0 5px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-weight: bold;
    background: black;
    color: white;
    cursor: pointer;
    border-radius: 2px;
}

.tbui_slideshow_nav .tbui_slideshow_active {
    background: white;
    color: black;
}





















        /*示例1的样式*/
        #controller {
            margin: 15px 0;
            width: 480px;
            text-align: center;
        }

        #controller li {
            display: inline-block;
            width: 10px;
            height: 10px;
            text-indent: -9999px;
            background: #00BBFF;
            border-radius: 5px;
            cursor: pointer;

            -moz-transition: all 0.2s ease-in;
            -moz-transform-origin: center center;
            -webkit-transition: all 0.2s ease-in;
            -webkit-transform-origin: center center;
            -o-transition: all 0.2s ease-in;
            -o-transform-origin: center center;
            transition: all 0.2s ease-in;
            transform-origin: center center;
        }

        #controller li.active {
            width: 30px;
        }

        #target {
            width: 720px;
            height: 242px;
        }
