index.scss 507 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
@import "src/assets/css/utils";
@import "../index";

.course-card-v {
  width: 165px;

  .show {
    position: relative;
    width: 100%;
    height: 119px;
    margin-bottom: 6px;

    img {
      width: 100%;
      height: 100%;
      border-radius: 4px;
    }
  }

  .title {
    margin-bottom: 30px;
    font-size: 15px;
zhanghaozhe committed
23
    color: #525c65;
zhanghaozhe committed
24 25 26 27
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
zhanghaozhe committed
28
    @include fontFamily("PingFangSC-Regular");
zhanghaozhe committed
29
  }
zhanghaozhe committed
30
}