/* 轮播图 */
        .lb-box {
            position: relative;
            overflow: hidden;
        }

        .lb-content {
            width: 100%;
            height: 100%;
        }

        .lb-item {
            width: 100%;
            height: 100%;
            display: none;
            position: relative;
        }

        .lb-item a {
            width: 100%;
            height: 100%;
            display: block;
            font-size: 14px;
        }

        .lb-item a span:hover {
            text-decoration: underline;
        }

        .lb-item img {
            width: 100%;
            height: 100%;
            max-height: 364px;
        }

        .lb-item a span {
            width: 100%;
            display: block;
            position: absolute;
            bottom: 0px;
            padding: 10px;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .lb-item.active {
            display: block;
            left: 0%;
        }

        .lb-item.active.left {
            left: -100%;
        }

        .lb-item.active.right {
            left: 100%;
        }

        .lb-item.next,
        .lb-item.prev {
            display: block;
            position: absolute;
            top: 0px;
        }

        .lb-item.next {
            left: 100%;
        }

        .lb-item.prev {
            left: -100%;
        }

        .lb-item.next.left,
        .lb-item.prev.right {
            left: 0%;
        }

        .lb-sign {
            position: absolute;
            right: 10px;
            bottom: 12px;
            border-radius: 6px;
            list-style: none;
            user-select: none;
        }

        .lb-sign li {
            width: 12px;
            height: 12px;
            line-height: 20px;
            float: left;
            background-color: #fff;
            margin: auto 4px;
            border-radius: 50%;
            cursor: pointer;
        }

        .lb-sign li:hover {
            background-color: rgb(168, 216, 221);
        }

        .lb-sign li.active {
            background-color: rgb(168, 216, 221);
        }

        .lb-ctrl {
            transition: all 0.1s linear;
        }

        /* 轮播图结束 */