recommendation.scss 773 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.search-result {
zhanghaozhe committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
  .recommendation {
    padding: 0 15px;
    margin-top: 20px;
    .title {
      font-size: 15px;
      text-align: center;
      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

zhanghaozhe committed
19 20 21 22 23
    .courses {
      display: flex;
      flex-flow: wrap;
      justify-content: space-between;
    }
zhanghaozhe committed
24

zhanghaozhe committed
25 26 27
    .bottom {
      margin-top: 8px;
    }
zhanghaozhe committed
28

zhanghaozhe committed
29 30 31 32 33
    .price {
      color: #ff2121;
      font-size: 15px;
      margin-right: 15px;
    }
zhanghaozhe committed
34

zhanghaozhe committed
35 36 37 38
    .old-price {
      color: $color_999;
      font-size: 11px;
      text-decoration: line-through;
zhanghaozhe committed
39
    }
zhanghaozhe committed
40
  }
zhanghaozhe committed
41
}