coupon.scss 2.61 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;
xuzhenghua committed
7
    border-radius: 3px;
zhanghaozhe committed
8 9 10 11 12 13

    .coupon-info {
        position: relative;
        height: 95px;
        padding: 10px 15px;
        color: $white;
xuzhenghua committed
14
        border-radius: 3px;
zhanghaozhe committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

        .type {
            font-size: $font_14;
        }

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

            span {
                font-size: $font_12;
            }
        }

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

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

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

zhanghaozhe committed
49 50 51
        &.coupon-type2 {
            background: $E0B97B;
        }
xuzhenghua committed
52

zhanghaozhe committed
53 54 55
        &.invalid{
            background: $color_999;
        }
zhanghaozhe committed
56 57


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

        .check {
            display: block;
        }

zhanghaozhe committed
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;
xuzhenghua committed
98
        border-radius: 0 0 3px 3px;
zhanghaozhe committed
99 100

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

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