index.scss 2.66 KB
Newer Older
xuzhenghua committed
1 2 3
html, body, #root {
    height: 100%!important;
}
xuzhenghua committed
4
.purchased-box {
zhanghaozhe committed
5 6
    width: 100%;
    height: 100%;
zhanghaozhe committed
7
    //background-color: $bg_f5f5f5;
xuzhenghua committed
8 9


zhanghaozhe committed
10 11 12 13 14 15 16 17 18 19
    .tip {
        width: 100%;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        color: $color_333;
        text-align: center;
        background-color: $bg_FFF4CE;
        margin-bottom: 10px;
    }
xuzhenghua committed
20

zhanghaozhe committed
21 22
    .purchased-body {
        background-color: $bg_fff;
xuzhenghua committed
23 24
    }

zhanghaozhe committed
25 26
    .v-list-item {
        background-color: #fff;
xuzhenghua committed
27

zhanghaozhe committed
28 29 30
        .content {
            padding-bottom: 10px;
            border-bottom: 1px solid #e7eaf1;
xuzhenghua committed
31

zhanghaozhe committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
            .cover {
                flex: inherit;
                width: 42.2%;

                img {
                    width: 100%;
                }
            }
        }

        .info {
            width: 52.3%;
            position: relative;
            display: block;

            .title {
                font-size: 16px;
                color: $color_333;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                height: 16px;
                line-height: 16px;
            }

            .contact {
                font-size: 14px;
                color: $color_666;
                margin-top: 14px;
            }

            .des {
                position: absolute;
                bottom: 5px;
                color: $active;
                font-size: 14px;
                height: 14px;
                line-height: 14px;
            }
        }
xuzhenghua committed
72 73 74
    }


zhanghaozhe committed
75 76 77 78
    .cart-tip {
        color: #555;
        margin-top: 140px;
        text-align: center;
xuzhenghua committed
79

zhanghaozhe committed
80 81 82 83 84 85 86 87
        .iconfridge {
            font-size: 21px;
        }

        .cart-mess {
            font-size: 12px;
            color: $color_666;
        }
xuzhenghua committed
88

zhanghaozhe committed
89 90 91 92 93 94 95 96 97 98 99 100
        a {
            display: inline-block;
            width: 130px;
            height: 30px;
            border: 1px solid $bg_active;
            border-radius: 15px;
            font-size: 16px;
            margin-top: 30px;
            color: $active;
            text-align: center;
            line-height: 28px;
        }
xuzhenghua committed
101 102
    }

zhanghaozhe committed
103 104 105 106 107 108 109 110 111
    .status {
        position: absolute;
        top: 0;
        right: 0;
        padding: 2px 6px;
        border-radius: 11px 0 0 11px;
        font-size: 14px;
        color: #fff;
        background: linear-gradient(to bottom, #FF4000, #FD7700);
xuzhenghua committed
112
    }
xuzhenghua committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126
    .course-expire{
        display: inline-block;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 0;
        width:92px;
        height:20px;
        line-height: 21px;
        background-color: #FF3A3A;
        border-radius:0 10px 10px 0;
        color: #fff;
        font-size: 12px;
    }
xuzhenghua committed
127
}