coupon.scss 2.54 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5
$bg_type1: #FE6161;
$bg_type2: #E0B97B;
.coupon {
    position: relative;
    margin-bottom: 15px;
zhanghaozhe committed
6
    box-shadow: 0px 2px 12px -8px;
zhanghaozhe committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

    .coupon-info {
        position: relative;
        height: 95px;
        padding: 10px 15px;
        color: $white;

        .type {
            font-size: $font_14;
        }

        .denomination {
            font-size: $font_26;
            line-height: $font_26;
            text-align: center;

            span {
                font-size: $font_12;
            }
        }

zhanghaozhe committed
28 29 30 31 32 33 34 35 36
        .course-title{
            width: 68.37%;
            margin: 0 auto 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: $font_16;
        }

zhanghaozhe committed
37 38 39 40 41 42 43 44 45
        .expire {
            text-align: center;
            font-size: $font_12;
            line-height: $font_16;
        }

        &.coupon-type1 {
            background: $bg_type1;
        }
zhanghaozhe committed
46

zhanghaozhe committed
47 48 49
        &.coupon-type2 {
            background: $E0B97B;
        }
zhanghaozhe committed
50 51 52 53
        
        &.invalid{
            background: $color_999;
        }
zhanghaozhe committed
54 55


zhanghaozhe committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
        & > .iconfont {
            $size: 22px;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: $size;
            height: $size;
            display: none;
        }

        .check {
            display: block;
        }

zhanghaozhe committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
        ul {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;

            li {
                $dot_width: 10px;
                width: $dot_width;
                height: $dot_width;
                border-radius: 50%;
                background: $white;
                transform: translateY(50%);
            }
        }
    }

    .coupon-des {
        padding: 10px 15px;
        background: $white;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .limit {
zhanghaozhe committed
98
            width: 63.81%;
zhanghaozhe committed
99 100 101
            font-size: $font_12;
            vertical-align: middle;
            color: $color_666;
zhanghaozhe committed
102 103 104
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
zhanghaozhe committed
105 106 107 108 109 110 111
        }

        .use {
            display: inline-block;
            padding: 3px 8px;
            font-size: $font_12;
            color: $border_f31;
zhanghaozhe committed
112 113
            border: 1px solid $border_f31;
            border-radius: 10px;
zhanghaozhe committed
114 115 116 117 118
            background: transparent;
            -webkit-appearance: none;
        }
    }
}