recommendation.scss 945 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2 3 4
.search-result {

    .recommendation {
zhanghaozhe committed
5
        padding: 0 15px;
xuzhenghua committed
6
        margin-top: 20px;
zhanghaozhe committed
7 8 9
        .title {
            font-size: 15px;
            text-align: center;
xuzhenghua committed
10 11 12 13 14 15 16 17
            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
18 19 20 21 22 23 24 25 26
        }

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

        .bottom{
xuzhenghua committed
27
            margin-top: 8px;
zhanghaozhe committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
        }

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

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