.search-history-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    .search-history-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        .search-history-item-left {
            display: flex;
            align-items: center;
            .search-history-icon {
                width: 14px;
                height: 14px;
                margin-right: 4px;
            }
            .search-history-content {
                font-size: 14px;
                font-weight: normal;
                color: #777777;
            }
        }
        .search-history-delete {
            width: 14px;
            height: 14px;
        }
    }
}