search-result.scss 573 Bytes
Newer Older
zhanghaozhe committed
1
.search-result {
zhanghaozhe committed
2 3 4
    ul {
        list-style: none;
    }
zhanghaozhe committed
5

zhanghaozhe committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    .info {
        display: flex;
        flex-wrap: wrap;

        .des {
            font-size: $font_14;
            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;
        }
    }
zhanghaozhe committed
32
}