index.scss 663 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
2
.v-list-item {
zhanghaozhe committed
3 4
  height: 138px;
  padding: 15px 15px 0;
5

zhanghaozhe committed
6 7 8 9 10
  .content {
    display: flex;
    height: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid $sp_e7eaf1;
11

zhanghaozhe committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    .cover {
      flex: 0 0 auto;
      margin-right: 16px;
      position: relative;
      width: 150px;
      img {
        width: 150px;
        height: 108px;
        border-radius: 4px;
      }
    }
    .course-status {
      width: 100%;
      height: 24px;
      position: absolute;
      bottom: -1px;
      border-radius: 0 0 3px 3px;
      text-align: center;
      line-height: 24px;
      color: $white;
      font-size: 13px;
33
    }
zhanghaozhe committed
34
  }
.  
baiguangyao committed
35
}