card.scss 5.01 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2 3 4 5
html,
body,
#root {
  height: 100% !important;
xuzhenghua committed
6 7
}

xuzhenghua committed
8
.cart-page {
zhanghaozhe committed
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
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;

  .cart-tip {
    color: #555;
    margin-top: 140px;
    text-align: center;

    .iconfridge {
      font-size: 21px;
    }

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

    a {
      display: inline-block;
      font-size: 16px;
      margin-top: 40px;
      color: $active;
    }
  }

  .edit {
    padding-right: 10px;
    font-size: 14px;
  }

  .cart-body {
baiguangyao committed
42
    height: 100%;
zhanghaozhe committed
43 44
    flex: 1;
    margin-bottom: 50px;
baiguangyao committed
45
    display: flex;
zhanghaozhe committed
46 47 48 49 50 51
    background-color: $bg_f5f5f5;
    overflow-y: auto;
    position: relative;

    .cart-main {
      width: 100%;
xuzhenghua committed
52

zhanghaozhe committed
53 54
      > .am-list-item {
        border-bottom: 1px solid #eee;
xuzhenghua committed
55

zhanghaozhe committed
56 57
        .am-list-line::after {
          background-color: transparent;
xuzhenghua committed
58
        }
zhanghaozhe committed
59
      }
xuzhenghua committed
60

zhanghaozhe committed
61 62 63 64 65 66 67 68 69 70 71
      > .am-list-item.am-list-item-active {
        background-color: transparent;
      }

      .cart-c-title {
        display: flex;
        align-items: center;
        justify-content: space-between;

        > div {
          flex: 1;
xuzhenghua committed
72 73
        }

zhanghaozhe committed
74 75 76
        span {
          font-size: 14px;
          margin-left: 10px;
xuzhenghua committed
77 78
        }

zhanghaozhe committed
79 80 81 82 83 84
        .next {
          width: 14px;
          height: 14px;
          display: inline-block;
          margin-left: 10px;
        }
xuzhenghua committed
85

zhanghaozhe committed
86 87 88 89 90 91 92
        i {
          font-style: inherit;
          font-size: 14px;
          display: block;
          padding: 0 10px;
        }
      }
xuzhenghua committed
93

zhanghaozhe committed
94 95 96 97
      .cart-c-body {
        .am-list-item-active {
          background-color: transparent;
        }
xuzhenghua committed
98

zhanghaozhe committed
99 100 101
        .am-list-line {
          padding-right: 0px;
        }
xuzhenghua committed
102

zhanghaozhe committed
103 104 105
        .am-list-content {
          position: relative;
        }
xuzhenghua committed
106

zhanghaozhe committed
107 108 109 110 111 112
        .cart-c-item {
          overflow: hidden;
          margin: 8px 0;
          height: 120px;
          padding: 15px 15px 15px 12px;
          background-color: $white;
xuzhenghua committed
113

zhanghaozhe committed
114 115 116 117 118 119 120 121
          .cart-c-check {
            width: 30px;
            float: left;
            display: flex;
            align-items: center;
            height: 100%;
          }
        }
xuzhenghua committed
122

zhanghaozhe committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
        .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;
          }
xuzhenghua committed
139 140
        }

zhanghaozhe committed
141 142 143 144
        .cart-ci-right {
          min-height: 87px;
          margin-left: 135px;
          margin-right: 8px;
xuzhenghua committed
145

zhanghaozhe committed
146 147 148 149 150
          .am-stepper-handler {
            line-height: 28px;
            font-size: 14px;
            width: 26px;
            height: 26px;
xuzhenghua committed
151
            display: flex;
zhanghaozhe committed
152 153 154
            justify-content: center;
            align-items: center;
          }
xuzhenghua committed
155

zhanghaozhe committed
156 157 158 159 160 161
          .r-title {
            font-size: 15px;
            white-space: normal;
            font-weight: bold;
            overflow: hidden;
            max-height: 46px;
xuzhenghua committed
162

zhanghaozhe committed
163 164 165 166 167 168 169 170
            span {
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              /* autoprefixer: ignore next */
              -webkit-box-orient: vertical;
              white-space: inherit;
              -webkit-line-clamp: 2;
xuzhenghua committed
171
            }
zhanghaozhe committed
172
          }
xuzhenghua committed
173

zhanghaozhe committed
174
          .r-step {
xuzhenghua committed
175
            display: flex;
zhanghaozhe committed
176
            justify-content: space-between;
xuzhenghua committed
177

zhanghaozhe committed
178 179 180 181 182 183 184 185
            .r-price {
              color: #ff5b05;
              font-size: 14px;
              line-height: 30px;

              span {
                font-size: 12px;
              }
baiguangyao committed
186
            }
xuzhenghua committed
187

zhanghaozhe committed
188 189 190
            .span-stepper {
              width: 100px;
            }
xuzhenghua committed
191

zhanghaozhe committed
192 193
            .am-stepper-input {
              font-size: 12px;
zhanghaozhe committed
194
            }
zhanghaozhe committed
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
          }
        }
      }
    }
  }

  .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;

    .cart-label {
      display: flex;
    }

    & > div:nth-child(1) {
      text-align: center;
      height: 50px;
      line-height: 50px;
      padding-left: 12px;

      div {
        font-size: $font_16;
        color: $color_333;
        margin-left: 6px;
      }
    }

    .all-pirce {
      flex: 1;
      margin-right: 20px;
      display: flex;
      align-items: center;

      p {
        margin: 0;
        padding: 0;
        font-size: $font_16;
        text-align: right;
        width: 100%;

        span {
          color: $color_666;
          font-size: $font_14;
baiguangyao committed
244
        }
xuzhenghua committed
245

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

zhanghaozhe committed
252 253 254 255 256 257 258 259 260 261 262 263
    & > div:nth-child(3) {
      width: 100px;
      line-height: 50px;
      text-align: center;
      font-size: $font_16;
      background-color: #999;
      color: $white;

      span {
        font-size: 16px;
        font-weight: 400;
      }
xuzhenghua committed
264 265
    }

zhanghaozhe committed
266 267 268 269 270
    div.active {
      background-color: #ff3131;
      color: #fff;
    }
  }
xuzhenghua committed
271

zhanghaozhe committed
272 273 274 275
  .am-navbar-light {
    background-color: $bg_f7f9fc;
  }
}