<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*===================
    bannerLiist-css
======================*/

.banner {
    width: 100%;
    height: 750px;
    overflow: hidden;
    position: relative;
}

    .banner &gt; ul {
        display: none;
        /*width: 999999999px;*/
        height: 450px;
        position: absolute;
        top: 0;
        left: 0;
    }

        .banner &gt; ul &gt; li {
            float: left;
            height: 450px;
        }

            .banner &gt; ul &gt; li &gt; a {
                display: block;
                font-size: 200px;
                text-align: center;
                line-height: 450px;
                font-weight: bold;
            }

.left-btn, .right-btn {
    width: 61px;
    height: 61px;
    position: absolute;
    top: 45%;
    right: 30px;
    background: url("right-1.png");
    cursor: pointer;
}

.left-btn {
    left: 30px;
    background: url("left-1.png");
}

.img-btn-list {
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    text-align: center;
}

    .img-btn-list &gt; span {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 12px;
        margin: 0 5px;
        background: #cecece; /*rgba(0,0,0,0.8)*/
        ;
        cursor: pointer;
    }

        .img-btn-list &gt; span.current {
            border: 3px solid #ff0000 /*rgba(0,0,0,0.8)*/;
            background: #ff0000 /*rgba(255,255,255,0.8)*/;
        }
</pre></body></html>