.recentForwardBox {
    font-size: 14px;
    color: #1f2227;
    overflow: hidden;
    .recentForwardTitle {
        font-weight: 500;
        padding: 16px 24px 0px 16px;
        font-size: 12px;
        line-height: 17px;
    }
    .recentForwardList {
        display: flex;
        justify-content: flex-start;
        // height: 66px;
        overflow-x: hidden;
        margin: 0 16px;
        flex-wrap: wrap;
        &::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .recentForwardItem {
            width: 46px;
            height: 54px;
            margin: 8px 8px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
            .avatar {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                margin-bottom: 4px;
                border: 1px solid transparent;
                &.selected {
                    border-color: #286cfb;
                }
            }
            .name {
                width: 100%;
                font-size: 10px;
                color: #1f2227;
                text-align: center;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .selectedIcon {
                position: absolute;
                top: 1px;
                right: 1px;
                width: 12px;
                height: 12px;
            }
        }
    }
}
