recommendation.scss 911 Bytes
Newer Older
zhanghaozhe committed
1 2 3
.search-result {

    .recommendation {
zhanghaozhe committed
4
        padding: 0 15px;
xuzhenghua committed
5
        margin-top: 20px;
zhanghaozhe committed
6 7 8
        .title {
            font-size: 15px;
            text-align: center;
xuzhenghua committed
9 10 11 12 13 14 15 16
            color: #525C65;
            background-image: url("../image/tj_bj.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            width: 109px;
            height: 21px;
            margin: auto;
zhanghaozhe committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        }

        .courses {
            display: flex;
            flex-flow: wrap;
            justify-content: space-between;
        }

        .bottom{
            margin-top: 12px;
        }

        .price {
            color: #FF2121;
            font-size: 15px;
            margin-right: 15px;
        }

        .old-price {
            color: $color_999;
            font-size: 11px;
            text-decoration: line-through;
        }
    }
}