  .load-more {
            text-align: center;
            color: #888;
        }


        .channel-container {
            display: flex;
            margin: 50px 0;
            justify-content: space-between;
        }

        .channel-container>.channel {
            --w: calc(20% - 15px);
            flex: var(--w);
            min-width: var(--w);
            max-width: var(--w);
            margin-right: 15px;
        }

        .channel-container>.channel:last-child {
            margin-right: 0;
        }

        .channel-container>.channel>.item {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: auto;
            margin-bottom: 15px;
            display: inline-block;
            width: 100%;
        }

        .channel-container>.channel>.item>img {
            width: 100%;
        }

        .channel-container>.channel>.item>.item-content {
            padding: 12px;
        }

        .channel-container>.channel>.item>.item-content>.title {
            word-break: break-all;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            font-weight: 500;
        }



        .channel-container>.channel>.item>.btns {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            line-height: 1;
            height: 20px;
            padding: 20px;
        }

        .channel-container>.channel>.item>.btns>.logo {
            flex: 1;
            height: inherit;
        }

        .channel-container>.channel>.item>.btns>.logo>img {
            width: 20px;
            height: 20px;
            /* border-radius: 50%; */
            /* outline: 1px solid rgba(0, 0, 0, 0.08); */
            /* box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05); */
            object-fit: cover;
            position: absolute;
            top: -40px;
            left: 0;
            right: 0;
            margin: auto;
        }

        .channel-container>.channel>.item>.btns>.love,
        .channel-container>.channel>.item>.btns>.collect {
            display: flex;
            font-size: 12px;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .channel-container>.channel>.item>.btns>.love>svg,
        .channel-container>.channel>.item>.btns>.collect>svg {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            margin: 0 5px;
        }