
.note-list-page-wrap {
    transition: all .2s;
    z-index: 48;
    top: 0;
    will-change: contents;
    background-color: #ffffffe6
}


.right-border {
    border-right: 1px solid var(--Border)
}

.cursor-pointer {
    cursor: pointer
}


.note-list-page-wrap .note-list-header {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.note-list-page-wrap .note-list-header .left-header-icon {
    background-color: var(--BG2)
}

.rounded-md {
    border-radius: calc(var(--radius) - 2px)
}

.note-list-page-wrap .note-list-header .note-list-icons {
    display: flex;
    margin-left: 25px
}

.note-list-page-wrap .list-wrap {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 60px;
    margin-right: 2px;
    outline: none
}

.note-list-page-wrap .list-wrap::-webkit-scrollbar {
    display: block;
    width: 4px
}

.note-list-page-wrap .list-wrap::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px
}

.list-item {
    display: list-item
}


summary {
    display: list-item
}



.scrollable {
    overflow: auto;
    overflow: overlay;
    position: relative;
    overscroll-behavior: none;
    width: calc(100% - 6px);
    margin: 0 auto;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
    transform-origin: 0 0;
    scroll-behavior: smooth;
    scrollbar-color: rgba(0,0,0,.12) transparent;
    scrollbar-width: thin;
    will-change: padding
}

.scrollable::-webkit-scrollbar-thumb {
    background-color: var(--A4T);
    border-radius: 4px
}

.overscroll-behavior-none {
    overscroll-behavior: none
}

.scrollable::-webkit-scrollbar {
    display: block
}

.note-list-page-wrap .list-wrap .item-left-wrap {
    content-visibility: auto;
    contain-intrinsic-size: 80px;
    flex: 1;
    display: flex;
    border-radius: 8px;
    margin: 0 2px 4px 8px;
    padding: 12px 10px;
    overflow: hidden;
    cursor: pointer;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.note-list-page-wrap .list-wrap .item-left-wrap .cover {
    width: 57px;
    min-width: 57px;
    height: 57px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 6px;
    border: .933px solid var(--Line);
    margin-right: 4px;
    overflow: hidden;
    position: relative
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #000000db
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt .title span {
    color: #205aef
}

.note-list-page-wrap .list-wrap .item-left-wrap .txt .desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #00000070;
    margin-top: 4px;
    margin-right: 6px
}

.note-list-page-wrap .scroll-bar::-webkit-scrollbar-thumb {
    background: #0000001f
}