index.scss 784 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
.v-list-item {
    height: 127px;
    padding: 10px 10px 0;

    .content {
        display: flex;
        height: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid $sp_e7eaf1;

        .cover {
zhanghaozhe committed
12
            flex: 0 0 auto;
13
            margin-right: 16px;
xuzhenghua committed
14
            position: relative;
FE committed
15
            width: 150px;
16 17 18 19 20 21
            img {
                width: 150px;
                height: 108px;
                border-radius: 3px;
            }
        }
xuzhenghua committed
22 23 24 25 26 27 28 29 30 31 32
        .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 34

    }
.  
baiguangyao committed
35 36
}