bargain.scss 7.79 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.bargain-func {
xuzhenghua committed
3 4
  padding: 8px;
  border-top: 8px solid $bg_f5f5f5;
zhanghaozhe committed
5

xuzhenghua committed
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
  @mixin clean-button-style {
    background: transparent;
    border: none;
    -webkit-appearance: none;
  }

  @mixin row-common {
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid $border_e7eaf1;
  }

  .intro-outer {
    width: 360px;
    height: 133px;
    border: 5px solid $color_FE2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .intro-inner {
    width: 341px;
    height: 118px;
    padding-top: 15px;
    background: $bg_FFF8EB;
    border: 1px solid $color_FE2F2F;
    border-radius: 3px;

    & > div {
      height: 100%;
zhanghaozhe committed
37 38
    }

xuzhenghua committed
39 40
    p {
      font-size: $font_14;
zhanghaozhe committed
41 42 43
    }

    .intro-outer {
zhanghaozhe committed
44 45 46 47 48 49 50
      width: 100%;
      height: 133px;
      border: 5px solid $color_FE2F2F;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 5px;
zhanghaozhe committed
51 52 53
    }

    .intro-inner {
zhanghaozhe committed
54 55 56 57 58 59
      width: 100%;
      height: 114px;
      padding-top: 15px;
      background: $bg_FFF8EB;
      border: 1px solid $color_FE2F2F;
      border-radius: 3px;
wangshuo committed
60
    }
xuzhenghua committed
61 62
    p:nth-child(1) {
      margin-bottom: 3px;
zhanghaozhe committed
63 64
    }

xuzhenghua committed
65 66 67
    p:nth-child(2) {
      margin-bottom: 5px;
    }
zhanghaozhe committed
68

xuzhenghua committed
69 70 71 72 73 74 75 76 77 78 79
    button {
      @include clean-button-style;
      width: 210px;
      height: 39px;
      border-radius: 20px;
      box-shadow: 0 5px $bg_FFA200;
      background: $bg_FFE400;
      font-size: $font_16;
      color: $color_FE2F2F;
    }
  }
zhanghaozhe committed
80

xuzhenghua committed
81 82 83
  .indicator {
    color: $color_FE2F2F;
  }
zhanghaozhe committed
84

xuzhenghua committed
85 86 87 88 89 90 91 92
  .status-outer {
    width: 360px;
    padding: 5px;
    background: $bg_FE2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
  }
zhanghaozhe committed
93

xuzhenghua committed
94 95 96 97 98 99 100
  .status-over {
    height: 99px !important;

    .time-tobuy {
      color: $color_FF4000;
      font-size: 12px;
      text-align: center;
xuzhenghua committed
101 102 103 104
      padding-top: 10px;
      .unit {
        color: $color_333;
      }
xuzhenghua committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

      .time {
        display: inline-block;
        width: 20px;
        height: 18px;
        background: $bg_666;
        border-radius: 2px;
        text-align: center;
        line-height: 18px;
        font-size: $font_12;
        color: $white;
      }

      .hour {
        margin-left: 7px;
      }

      .sec {
        margin-right: 5px;
      }
zhanghaozhe committed
125
    }
xuzhenghua committed
126 127 128 129
  }

  .status-inner {
    width: 350px;
xuzhenghua committed
130
    height: 130px;
xuzhenghua committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
    padding: 0 10px;
    background: $white;
    border-radius: 3px;

    .first-row {
      @include row-common;
      padding: 13px 0;
      display: flex;
      justify-content: space-between;

      .bargain-over {
        display: inline-block;
        margin-left: 10px;
        padding: 0 4px;
        height: 18px;
        line-height: 18px;
        background-color: $bg_666;
        border-radius: 2px;
        font-size: 12px;
        color: $white;
      }

xuzhenghua committed
153 154 155 156
      .over {
        color: $color_999;
      }

xuzhenghua committed
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
      .time {
        display: inline-block;
        width: 20px;
        height: 18px;
        background: $bg_666;
        border-radius: 2px;
        text-align: center;
        line-height: 18px;
        font-size: $font_12;
        color: $white;
      }

      .hour {
        margin-left: 7px;
      }

      .sec {
        margin-right: 5px;
      }
zhanghaozhe committed
176 177
    }

xuzhenghua committed
178 179 180 181 182 183
    .sec-row {
      @include row-common;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
zhanghaozhe committed
184

xuzhenghua committed
185
      & > div {
zhanghaozhe committed
186
        display: flex;
xuzhenghua committed
187
        justify-content: space-between;
zhanghaozhe committed
188
        align-items: center;
xuzhenghua committed
189
      }
zhanghaozhe committed
190

xuzhenghua committed
191 192 193 194 195 196
      img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        border-radius: 50%;
      }
zhanghaozhe committed
197

xuzhenghua committed
198 199 200 201 202
      button {
        @include clean-button-style;
        height: 26px;
        margin-left: 7px;
        background: $bg_FADD29;
zhanghaozhe committed
203
        border-radius: 3px;
xuzhenghua committed
204 205 206
        font-size: $font_12;
        color: $redprice;
      }
zhanghaozhe committed
207

xuzhenghua committed
208 209 210 211 212 213 214 215 216
      .name {
        font-size: 14px;
        color: $color_333;
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
zhanghaozhe committed
217

xuzhenghua committed
218 219 220 221 222 223 224
    .third-row {
      @include row-common;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 0;
      border: none;
zhanghaozhe committed
225

xuzhenghua committed
226 227 228 229 230 231 232 233
      button {
        @include clean-button-style;
        padding: 3px 9px;
        border: 1px solid $border_f31;
        border-radius: 11px;
        color: $border_f31;
        font-size: $font_12;
      }
zhanghaozhe committed
234
    }
xuzhenghua committed
235 236 237 238 239 240 241 242 243
  }
}

.overlay .bargain-close {
  color: #fff;
  font-size: 22px;
  position: relative;
  left: 50%;
  margin-left: -11px;
zhanghaozhe committed
244 245 246
}

.bargain-success {
xuzhenghua committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
  width: 290px;
  height: 109px;
  padding: 15px 33px;
  background: $white;
  border-radius: 5px;
  text-align: center;
  margin: 100px auto 20px auto;

  .title {
    font-size: $font_16;
    margin-bottom: 5px;
  }

  p:nth-of-type(2) {
    font-size: $font_14;
    margin-bottom: 15px;
  }

  p:nth-of-type(3) {
    font-size: $font_12;
  }

  .indicator {
    color: $color_FE2F2F;
  }

  .moreMbc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
zhanghaozhe committed
279
    background-color: rgba(0, 0, 0, 0.6);
xuzhenghua committed
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
    z-index: 2;

    .content {
      width: 300px;
      height: 340px;
      background-color: $white;
      border-radius: 3px;
      margin: 130px auto 20px auto;
      position: relative;

      .title-box {
        width: 100%;
        height: 45px;
        text-align: center;
        color: $color_202426;
        font-size: 16px;
        line-height: 45px;
      }

      .more-bargain-list {
        width: 100%;
        height: 253px;
        overflow: auto;
        border-top: 1px solid $sp_e7eaf1;
        padding: 0 15px;
        background-color: $bg_f5f5f5;

        .bargain-item {
          border-bottom: 1px solid $sp_e7eaf1;
          height: 50px;
          display: flex;
          position: relative;

          .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-top: 10px;
            margin-right: 10px;
          }

          .name {
            font-size: 14px;
            color: $color_333;
            max-width: 130px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            line-height: 50px;
          }

          .bargain-status {
            line-height: 50px;
            color: $color_333;
            font-size: 14px;
            position: absolute;
            right: 0;
          }
        }
      }
zhanghaozhe committed
340 341
    }

xuzhenghua committed
342 343 344 345 346 347 348 349 350
    .more-bargain-dec {
      width: 100%;
      position: absolute;
      bottom: 0;
      height: 42px;
      font-size: 12px;
      color: $color_FF4000;
      text-align: center;
      line-height: 42px;
zhanghaozhe committed
351 352
    }

xuzhenghua committed
353 354 355 356 357 358
    .close {
      color: #fff;
      font-size: 22px;
      position: relative;
      left: 50%;
      margin-left: -11px;
zhanghaozhe committed
359
    }
xuzhenghua committed
360 361 362
  }
}

zhanghaozhe committed
363 364
.artifact-box,
.use-artifact-box {
xuzhenghua committed
365
  text-align: center;
xuzhenghua committed
366 367 368 369 370 371 372 373

  .top-img {
    position: absolute;
    width: 135px;
    height: 67px;
    top: -67px;
    margin-left: -67px;
  }
xuzhenghua committed
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437

  .top-tip {
    font-size: 16px;
    color: $color_333;
    height: 16px;
    line-height: 16px;
  }

  .middle-tip {
    font-size: 14px;
    color: $color_333;
    height: 14px;
    line-height: 14px;
    margin-top: 15px;
  }

  .btm-tip {
    font-size: 14px;
    color: $color_666;
    height: 14px;
    line-height: 14px;
    margin-top: 10px;
  }

  .use-artifact {
    background-color: $bg_fff;
    width: 84px;
    height: 24px;
    font-size: 14px;
    border: 1px solid $redprice;
    border-radius: 12px;
    margin: 20px auto 0 auto;
    color: $redprice;
  }

  .tubuy {
    display: inline-block;
    margin-top: 17px;
    width: 81px;
    height: 24px;
    background-color: $redprice;
    border-radius: 12px;
    font-size: 16px;
    color: $white;
    border: none;
  }

  .indicator {
    color: $color_FE2F2F;
  }
}

.artifact-box {
  width: 300px;
  height: 130px;
}

.use-artifact-box {
  width: 300px;
  height: 148px;

  .middle-tip {
    color: $color_666;
  }
xuzhenghua committed
438
}