.search-result {
    padding-top: 44px;

    .search-head {
        // position: absolute;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        transition: top 0.5 ease;

        &.hide {
            top: -44px;
        }
    }

    ul {
        list-style: none;
    }

    .v-list-item{
        .content{
            width: 100%;
        }
    }

    .info {
        display: flex;
        flex-wrap: wrap;
        width: 50%;

        .title{
            overflow: hidden;
            font-size: $font_14;
            white-space: nowrap;
            text-overflow: ellipsis;

        }

        .des {
            font-size: $font_12;
            line-height: 16px;
            align-self: flex-start;

        }

        .price {
            color: $red;
            font-size: $font_16;
            margin-right: 14px;
        }

        .stale-price {
            text-decoration: line-through;
            color: $color_999;
            font-size: $font_12;
        }

        .bottom {
            align-self: flex-end;
        }
    }

    .empty {
        font-size: 12px;
        color: $color_666;
        padding: 30px 0;
        text-align: center;
        background-color: #f5f5f5;
    }

    .status {
        width: 100%;
        position: absolute;
        bottom: -2px;
        left: 0;
        height: 24px;
        text-align: center;
        line-height: 24px;
        font-size: 13px;
        color: $white;
        background-color: rgba(224, 46, 36, 0.6);
    }
}