recommendation.scss 778 Bytes
Newer Older
1
.recommendation {
xuzhenghua committed
2 3
    margin-top: 15px;
    border-top: 10px solid #f5f5f5;
4 5 6 7

    & > .title {
        font-size: $font_16;
        padding-left: 15px;
xuzhenghua committed
8
        margin-top: 15px;
9 10 11 12 13
    }

    .info {
        display: flex;
        flex-wrap: wrap;
xuzhenghua committed
14
        width: 52.3%;
15

zhanghaozhe committed
16 17 18 19
        .title{
            font-size: 15px;
        }

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        .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;
        }
    }
}