card.scss 6.71 KB
Newer Older
xuzhenghua committed
1
html, body, #root {
zhanghaozhe committed
2
    height: 100% !important;
xuzhenghua committed
3 4
}

xuzhenghua committed
5
.cart-page {
baiguangyao committed
6
    height: 100%;
zhanghaozhe committed
7
    width: 100%;
baiguangyao committed
8
    display: flex;
zhanghaozhe committed
9
    flex-direction: column;
xuzhenghua committed
10

zhanghaozhe committed
11 12 13 14
    .cart-tip {
        color: #555;
        margin-top: 140px;
        text-align: center;
xuzhenghua committed
15

zhanghaozhe committed
16 17
        .iconfridge {
            font-size: 21px;
xuzhenghua committed
18 19
        }

zhanghaozhe committed
20 21 22
        .cart-mess {
            font-size: 12px;
            color: $color_666;
xuzhenghua committed
23 24
        }

zhanghaozhe committed
25 26 27 28 29
        a {
            display: inline-block;
            font-size: 16px;
            margin-top: 40px;
            color: $active;
xuzhenghua committed
30
        }
zhanghaozhe committed
31
    }
xuzhenghua committed
32

zhanghaozhe committed
33 34 35 36
    .edit {
        padding-right: 10px;
        font-size: 14px;
    }
xuzhenghua committed
37

zhanghaozhe committed
38 39 40 41 42 43 44 45
    .cart-body {
        height: 100%;
        flex: 1;
        margin-bottom: 50px;
        display: flex;
        background-color: $bg_f5f5f5;
        overflow-y: auto;
        position: relative;
xuzhenghua committed
46

zhanghaozhe committed
47 48
        .cart-main {
            width: 100%;
xuzhenghua committed
49

zhanghaozhe committed
50 51
            > .am-list-item {
                border-bottom: 1px solid #eee;
xuzhenghua committed
52

zhanghaozhe committed
53 54 55 56
                .am-list-line::after {
                    background-color: transparent;
                }
            }
xuzhenghua committed
57

zhanghaozhe committed
58 59 60
            > .am-list-item.am-list-item-active {
                background-color: transparent;
            }
xuzhenghua committed
61

zhanghaozhe committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
            .cart-c-title {
                display: flex;
                align-items: center;
                justify-content: space-between;

                > div {
                    flex: 1;
                }

                span {
                    font-size: 14px;
                    margin-left: 10px;
                }

                .next {
                    width: 14px;
                    height: 14px;
                    display: inline-block;
                    margin-left: 10px;
                }

                i {
                    font-style: inherit;
                    font-size: 14px;
                    display: block;
                    padding: 0 10px;
                }
            }
xuzhenghua committed
90

zhanghaozhe committed
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 116 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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
            .cart-c-body {
                .am-list-item-active {
                    background-color: transparent;
                }

                .am-list-line {
                    padding-right: 0px;
                }

                .am-list-content {
                    position: relative;
                }

                .cart-c-item {
                    overflow: hidden;
                    margin: 8px 0;
                    height: 120px;
                    padding: 15px 15px 15px 12px;
                    background-color: $white;

                    .cart-c-check {
                        width: 30px;
                        float: left;
                        display: flex;
                        align-items: center;
                        height: 100%;
                    }
                }

                .cart-ci-left {
                    position: absolute;
                    top: 0;
                    left: 40px;
                    height: 100%;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        height: 85px;
                        width: 85px;
                        display: block;
                        border: 1px solid #eee;
                    }
                }

                .cart-ci-right {
                    min-height: 87px;
                    margin-left: 135px;
                    margin-right: 8px;

                    .am-stepper-handler {
                        line-height: 28px;
                        font-size: 14px;
                        width: 26px;
                        height: 26px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                    .r-title {
                        font-size: 15px;
                        white-space: normal;
                        font-weight: bold;
                        overflow: hidden;
                        max-height: 46px;

                        span {
                            overflow: hidden;
                            text-overflow: ellipsis;
                            display: -webkit-box;
                            /* autoprefixer: ignore next */
                            -webkit-box-orient: vertical;
                            white-space: inherit;
                            -webkit-line-clamp: 2;
                        }
                    }

                    .r-step {
                        display: flex;
                        justify-content: space-between;

                        .r-price {
                            color: #ff5b05;
                            font-size: 14px;
                            line-height: 30px;

                            span {
                                font-size: 12px;
                            }
                        }

                        .span-stepper {
                            width: 100px;
                        }

                        .am-stepper-input {
                            font-size: 12px;
                        }
                    }
                }
            }
xuzhenghua committed
195
        }
zhanghaozhe committed
196
    }
xuzhenghua committed
197

zhanghaozhe committed
198 199 200 201 202 203 204 205 206
    .cart-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        background-color: rgba(255, 255, 255, 1);
        height: 50px;
xuzhenghua committed
207

zhanghaozhe committed
208
        .cart-label {
xuzhenghua committed
209
            display: flex;
zhanghaozhe committed
210
        }
xuzhenghua committed
211

zhanghaozhe committed
212 213 214 215 216
        & > div:nth-child(1) {
            text-align: center;
            height: 50px;
            line-height: 50px;
            padding-left: 12px;
xuzhenghua committed
217

zhanghaozhe committed
218 219 220 221
            div {
                font-size: $font_16;
                color: $color_333;
                margin-left: 6px;
xuzhenghua committed
222
            }
zhanghaozhe committed
223
        }
xuzhenghua committed
224

zhanghaozhe committed
225 226 227
        .all-pirce {
            flex: 1;
            margin-right: 20px;
xuzhenghua committed
228
            display: flex;
zhanghaozhe committed
229
            align-items: center;
xuzhenghua committed
230

zhanghaozhe committed
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
            p {
                margin: 0;
                padding: 0;
                font-size: $font_16;
                text-align: right;
                width: 100%;

                span {
                    color: $color_666;
                    font-size: $font_14;
                }

                span:nth-child(2) {
                    color: $red;
                }
baiguangyao committed
246
            }
xuzhenghua committed
247 248
        }

zhanghaozhe committed
249 250 251 252 253 254 255
        & > div:nth-child(3) {
            width: 100px;
            line-height: 50px;
            text-align: center;
            font-size: $font_16;
            background-color: #999;
            color: $white;
xuzhenghua committed
256

zhanghaozhe committed
257 258 259 260
            span {
                font-size: 16px;
                font-weight: 400;
            }
baiguangyao committed
261
        }
xuzhenghua committed
262

zhanghaozhe committed
263 264 265
        div.active {
            background-color: #ff3131;
            color: #fff;
baiguangyao committed
266
        }
xuzhenghua committed
267 268
    }

zhanghaozhe committed
269 270
    .am-navbar-light {
        background-color: $bg_f7f9fc;
xuzhenghua committed
271 272
    }

baiguangyao committed
273
}
xuzhenghua committed
274