Blame view

static/sass/shopping-cart/_order-ensure.scss 3.94 KB
xuqi authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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
.order-ensure-page {
    background: #f0f0f0;

    .block {
        background: #fff;
        margin: 20rem / $pxConvertRem 0;
        padding: 30rem / $pxConvertRem 20rem / $pxConvertRem;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .title {
        font-size: 26rem / $pxConvertRem;
        font-weight: bold;
    }

    .address-wrap {
        display: block;
        position: relative;
        margin-top: 0;
        border-top: none;

        > .iconfont {
            position: absolute;
            color: #bcbcbc;
            right: 20rem / $pxConvertRem;
            top: 50%;
            margin-top: -8px;
        }

        .infos {
            font-weight: bold;
            font-size: 24rem / $pxConvertRem;
            padding-right: 55rem / $pxConvertRem;
        }

        .per-info {
            float: right;
        }

        .address {
            display: block;
            margin-top: 20rem / $pxConvertRem;
            color: #bcbcbc;
            font-weight: normal;
        }
    }
    
    .dispatch .title {
        margin-bottom: 10rem / $pxConvertRem;
    }

    .dispatch .sub-block:first-child {
        border-bottom: 1px solid #f7f7f7;
        margin-bottom: 15rem / $pxConvertRem;
    }

    .dispatch-mode li,
    .dispatch-time li {
        float: left;
        padding: 10rem / $pxConvertRem 20rem / $pxConvertRem;
        margin-right: 15rem / $pxConvertRem;
        margin-bottom: 15rem / $pxConvertRem;
        border: 1px solid #c9c9c9;
        color: #676767;
        font-size: 26rem / $pxConvertRem;
xuqi authored
67 68 69 70 71 72 73

        &.chosed {
            border-color: #000;
            background: image-url('shopping-cart/black-right.png') no-repeat;
            background-size: 30rem / $pxConvertRem;
            background-position: bottom right;
        }
xuqi authored
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    }

    .goods {
        margin-right: -20rem / $pxConvertRem;
    }

    .sale-invoice {
        margin-top: -20rem / $pxConvertRem;
        font-size: 24rem / $pxConvertRem;

        li {
            height: 90rem / $pxConvertRem;
            line-height: 90rem / $pxConvertRem;
            border-bottom: 1px solid #f7f7f7;
        }

        .coupon-count {
            padding: 5rem / $pxConvertRem;
            background: #f00;
            color: #fff;
            @include border-radius(10px);
            margin-left: 20rem / $pxConvertRem;
        }

        .coupon-use,
        .coin-check {
            float: right;
            color: #999;
        }

        .coin-check {
            float: right;
            color: #999;

            .checkbox {
                margin-left: 5rem / $pxConvertRem;
                color: #000;
            }

        }

        .checkbox.icon-checkbox {
xuqi authored
116
            color: #ccc;
xuqi authored
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
        }

        .invoice .checkbox {
            float: right;
        }

        .desc {
            color: #999;
        }
    }

    .total {
        font-size: 22rem / $pxConvertRem;
        margin-top: 20rem / $pxConvertRem;

        span {
            display: inline-block;
            width: 130rem / $pxConvertRem;
        }
    }

    .cost {
        border-top: 1px solid #f7f7f7;
        line-height: 100rem / $pxConvertRem;
        margin-top: 10rem / $pxConvertRem;
        font-size: 34rem / $pxConvertRem;

        em {
            color: #f00;
        }
    }

    .pay-mode {
        background: #fff;
        padding: 0 20rem / $pxConvertRem;
        margin-top: -22rem / $pxConvertRem;

        li {
            height: 88rem / $pxConvertRem;
            line-height: 88rem / $pxConvertRem;
            margin-bottom: 28rem / $pxConvertRem;
            @include border-radius(5px);
            font-size: 32rem / $pxConvertRem;
            color: #fff;
            text-align: center;
        }

        .cod {
            background: #000;
        }

        .pay-online {
            background: #57b038;
        }
xuqi authored
171 172 173 174 175

        .iconfont {
            margin-right: 20rem / $pxConvertRem;
            font-size: 32rem / $pxConvertRem;
        }
xuqi authored
176 177
    }
}