﻿/* 父容器滚动并隐藏滚动条 */
.loop-parent {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .loop-parent::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

/* 虚拟化占位器与容器 */
.loop-bootstrap {
    width: 100%;
}

.loop-spacer {
    width: 100%;
    height: 0px;
}

/* 子项样式 */
.loop-item {
    box-sizing: border-box;
    width: 100%;
}


.loop-item-content {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.loop-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.loop-item-desc {
    font-size: 12px;
    color: #aab;
    margin-top: 4px;
}
.loop-scroll-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
    .loop-scroll-hidden::-webkit-scrollbar {
        width: 0;
        height: 0;
    }