video-catalog.scss 1.64 KB
Newer Older
1
.video-catalog {
2 3 4
    & li:first-child{
        border-top: 1px solid #E7EAF1;
    }
5 6 7
    li {
        line-height: 44px;
        border-bottom: 1px solid #E7EAF1;
8 9
        padding: 0 15px;

10 11

        &.active {
12 13
            .video-title {
                background-color: #F5FBFF;
14
                color: $active;
15 16 17
            }
            .exercise{
                border-top: 1px solid #E7EAF1;
18
                font-size: $font_12;
19 20 21 22
                .iconiconfront-3{
                    font-weight: bold;
                    color: $active;
                }
23 24 25 26 27 28 29 30 31 32 33 34 35
            }
        }

        .video-title {
            height: 44px;
            margin: 0 -15px;
            padding: 0 15px;

            .iconfont{
                font-size: 22px;
            }
        }

36 37 38 39 40 41
        a:last-child {
            .exercise {
                margin-bottom: 15px;
            }
        }

42 43 44 45 46
        .exercise {
            padding-left: 15px;
            height: 35px;
            background: #F5FBFF;
            line-height: 35px;
FE committed
47
            font-size: $font_12;
48 49 50 51 52 53 54
            color: #000;
            border-top: 1px solid transparent;

            .iconfont {
                font-size: 18px;
                //font-weight: bold;
            }
55 56 57 58 59
        }
    }

    .title {
        display: inline-block;
wangshuo committed
60
        width: 66%;
61 62 63 64
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: $font_14;
wangshuo committed
65
        margin-right: 12px;
66 67 68 69 70 71 72 73 74 75 76 77
    }

    .duration {
        display: inline-block;
        font-size: 11px;
        overflow: hidden;
    }

    .iconfont {
        float: right;
    }

78 79 80 81

    .iconplay_hovericon{
        color: $active;
    }
82
}