bargain-middle-page.scss 12.7 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.bargain-middle-page {
xuzhenghua committed
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
  background: $bg_f4f4f4;
  padding-bottom: 50px;

  .indicator {
    color: $color_FE2F2F;
  }

  .price {
    color: $redprice;
  }

  .discount-price {
    color: $redprice;
    font-size: $font_16;
    margin-right: 14px;
  }

  .original-price {
    color: $color_999;
    font-size: $font_12;
    text-decoration: line-through;
  }

  & > .top {
    width: 100%;
    padding: 10px;
    background: $bg_FE2F2F;
    margin-bottom: 18px;

    .purchase-btn {
      position: absolute;
      right: 0;
      bottom: 2px;
      height: 22px;
      padding: 3px 4px;
      color: $white;
      font-size: $font_12;
      border: none;
      border-radius: 11px;
      background: $bg_ff3131;
      -webkit-appearance: none;
zhanghaozhe committed
44 45
    }

xuzhenghua committed
46 47 48 49 50 51
    .bargain-area {
      width: 355px;
      background: $white;
      border-radius: 3px;
      margin-bottom: 10px;
      padding-bottom: 20px;
zhanghaozhe committed
52

xuzhenghua committed
53
      .bargain-tip {
zhanghaozhe committed
54
        width: 100%;
xuzhenghua committed
55 56 57 58 59 60 61 62 63 64 65 66
        height: 45px;
        line-height: 45px;
        padding-left: 10px;
        border-bottom: 1px solid $sp_e7eaf1;
        color: $redprice;
        font-size: 14px;
      }

      .des {
        display: flex;
        flex-flow: column;
        justify-content: space-between;
xuzhenghua committed
67
        width: 100%;
xuzhenghua committed
68 69 70
      }

      .v-list-item {
xuzhenghua committed
71
        padding: 15px 7px 10px 10px;
xuzhenghua committed
72 73 74

        .cover {
          margin-right: 10px;
xuzhenghua committed
75 76 77 78 79

          img {
            width: 125px;
            height: 90px;
          }
xuzhenghua committed
80
        }
zhanghaozhe committed
81

xuzhenghua committed
82 83
        .content {
          border-bottom: 1px solid $border_e7eaf1;
zhanghaozhe committed
84
        }
xuzhenghua committed
85
      }
zhanghaozhe committed
86

xuzhenghua committed
87 88 89
      .course-title {
        font-size: $font_14;
      }
zhanghaozhe committed
90

xuzhenghua committed
91 92 93
      .price-bar {
        position: relative;
      }
zhanghaozhe committed
94

xuzhenghua committed
95 96 97 98
      .bargain-detail {
        display: flex;
        flex-flow: column;
        padding: 0 10px;
zhanghaozhe committed
99

xuzhenghua committed
100 101 102 103
        .top {
          display: flex;
          justify-content: space-between;
          margin-bottom: 7px;
zhanghaozhe committed
104

xuzhenghua committed
105
          & > div:nth-child(1) {
zhanghaozhe committed
106
            font-size: $font_16;
xuzhenghua committed
107
          }
zhanghaozhe committed
108 109
        }

xuzhenghua committed
110 111
        .reduced-price {
          color: $redprice;
zhanghaozhe committed
112 113
        }

xuzhenghua committed
114 115 116 117 118 119 120 121 122 123
        .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;
zhanghaozhe committed
124 125
        }

xuzhenghua committed
126 127 128 129 130 131 132
        .sec {
          margin-right: 6px;
        }

        .inactive {
          color: $color_999;
        }
zhanghaozhe committed
133

xuzhenghua committed
134 135 136 137 138 139 140 141
        .middle {
          position: relative;
          width: 335px;
          height: 8px;
          background: $bg_E7E7E7;
          border-radius: 4px;
          overflow: hidden;
          margin-bottom: 7px;
zhanghaozhe committed
142

xuzhenghua committed
143 144 145 146 147 148 149 150
          span {
            position: absolute;
            left: 0;
            top: 0;
            display: inline-block;
            height: 100%;
            background: $bg_FADD29;
          }
zhanghaozhe committed
151 152
        }

xuzhenghua committed
153 154 155 156
        .bottom {
          font-size: $font_14;
          margin-bottom: 7px;
        }
zhanghaozhe committed
157

xuzhenghua committed
158 159 160
        .button {
          display: flex;
          justify-content: center;
xuzhenghua committed
161
          margin-top: 10px;
xuzhenghua committed
162
        }
zhanghaozhe committed
163

xuzhenghua committed
164 165 166 167
        .artifact-btn {
          float: right;
          position: relative;
          top: -20px;
FE committed
168
          // width: 61px;
xuzhenghua committed
169
          height: 24px;
FE committed
170
          padding: 0 10px;
xuzhenghua committed
171 172 173 174 175 176 177 178
          background: $bg_FF4000;
          border-radius: 12px;
          font-size: 12px;
          border: none;
          color: $white;
        }

        .active-btn {
xuzhenghua committed
179 180 181 182 183 184 185 186
          width: 210px;
          height: 30px;
          box-shadow: 0px 1px 3px 0px rgba(255, 64, 0, 0.5);
          background: $bg_FADD29;
          border-radius: 15px;
          border: none;
          color: $bg_ff3131;
          -webkit-appearance: none;
xuzhenghua committed
187
          font-size: 16px;
zhanghaozhe committed
188 189
        }

xuzhenghua committed
190
        .invalid-btn {
xuzhenghua committed
191 192
          width: 210px;
          height: 30px;
xuzhenghua committed
193 194 195 196
          background: $bg_999;
          color: $white;
          font-size: 16px;
          box-shadow: none;
xuzhenghua committed
197 198
          border-radius: 15px;
          border: none;
zhanghaozhe committed
199
        }
xuzhenghua committed
200 201 202 203 204 205 206
      }
    }
  }

  .bargain-records {
    width: 355px;
    height: 236px;
zhanghaozhe committed
207
    background: #fff9ec;
xuzhenghua committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
    border-radius: 3px;

    .title {
      height: 44px;
      line-height: 44px;
      font-size: $font_16;
      border-bottom: $sp_ddd;
      text-align: center;
      border-bottom: 1px solid $border_ddd;
    }

    ul {
      padding: 0 10px;

      li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        border-bottom: 1px solid $border_ddd;

zhanghaozhe committed
229 230
        .left,
        .right {
xuzhenghua committed
231 232
          display: flex;
          align-items: center;
zhanghaozhe committed
233 234
        }

xuzhenghua committed
235 236 237 238 239 240 241 242 243 244 245 246 247
        .avatar {
          width: 30px;
          height: 30px;
          border-radius: 50%;
          margin-right: 11px;
        }

        .nickname {
          margin-right: 10px;
          font-size: $font_14;
          max-width: 130px;
          overflow: hidden;
          text-overflow: ellipsis;
zhanghaozhe committed
248
          white-space: nowrap;
zhanghaozhe committed
249 250
        }

xuzhenghua committed
251 252 253 254 255 256 257
        .rank-tag {
          padding: 2px 5px;
          background: $bg_FE2F2F;
          color: $white;
          font-size: $font_12;
          flex: 0 0 auto;
          border-radius: 2px;
zhanghaozhe committed
258
        }
xuzhenghua committed
259
      }
zhanghaozhe committed
260 261 262
    }

    .more {
xuzhenghua committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
      color: $color_555;
      font-size: $font_14;
      text-align: center;
      line-height: 40px;
    }
  }

  .bargain-course-list {
    background: $white;
    padding: 15px;

    ul {
      display: flex;
      flex-wrap: wrap;

      li:nth-child(odd) {
        margin-right: 15px;
      }
    }

    .title-wrapper {
      text-align: center;

      .title {
zhanghaozhe committed
287
        font-size: $font_16;
xuzhenghua committed
288 289 290 291 292
        margin-bottom: 10px;
      }

      .subtitle {
        font-size: $font_14;
xuzhenghua committed
293
        color: $color_FF4000;
xuzhenghua committed
294 295 296 297 298 299 300 301 302 303
      }
    }

    .course-title {
      margin-bottom: 10px;
      min-height: 38px;
    }

    .course-price {
      margin-bottom: 10px;
zhanghaozhe committed
304
    }
xuzhenghua committed
305 306 307 308

    .bargain {
      width: 165px;
      height: 30px;
309
      background: $bg_FADD29;
xuzhenghua committed
310 311
      border-radius: 2px;
      border: none;
312
      color: $color_FF4000;
xuzhenghua committed
313
      -webkit-appearance: none;
xuzhenghua committed
314 315 316
      display: inline-block;
      text-align: center;
      line-height: 30px;
xuzhenghua committed
317
    }
318 319 320 321
    .button--study {
      color: $white;
      background: $bg_077FD0;
    }
xuzhenghua committed
322 323 324 325 326 327 328 329 330

    .btns {
      display: flex;
      justify-content: space-between;

      .bargain-btn {
        width: 80px;
        height: 30px;
        background: $bg_FADD29;
xuzhenghua committed
331 332
        text-align: center;
        line-height: 28px;
xuzhenghua committed
333 334 335 336 337 338
        border: none;
        color: $color_FF4000;
        -webkit-appearance: none;
      }

      .invalid {
xuzhenghua committed
339 340
        width: 80px;
        height: 30px;
xuzhenghua committed
341 342
        background: $bg_999;
        color: $white;
xuzhenghua committed
343 344 345
        border: none;
        -webkit-appearance: none;
        border-radius: 2px;
xuzhenghua committed
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
      }

      .purchase-btn {
        width: 80px;
        height: 30px;
        background: $color_FF4000;
        color: $white;
        border-radius: 2px;
        border: none;
        -webkit-appearance: none;
      }
    }
  }

  .preferential {
    display: inline-block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: $font_16;
    color: $color_555;
    text-align: center;
  }

  .kanjia-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
  }
xuzhenghua committed
376 377
}

zhanghaozhe committed
378 379 380 381
.bargain-public-number,
.bargain-first,
.bargain-second,
.not-bargain {
xuzhenghua committed
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
  width: 300px;
  padding: 20px 0;
  background-color: $bg_fff;
  border-radius: 3px;
  text-align: center;
  margin: 200px auto 20px auto;
  position: relative;

  .ff4 {
    color: $color_FF4000;
  }

  .status-title {
    font-size: 16px;
    height: 16px;
    line-height: 16px;
  }

  .status-dec {
    font-size: 12px;
    color: $color_666;
    height: 12px;
    line-height: 12px;
  }

xuzhenghua committed
407 408
  .bargain-href {
    display: inline-block;
xuzhenghua committed
409 410
    width: 260px;
    height: 30px;
xuzhenghua committed
411
    line-height: 28px;
xuzhenghua committed
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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
    background-color: $bg_FADD29;
    color: $color_FF4000;
    font-size: 16px;
    border: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  .top-img {
    position: absolute;
    width: 135px;
    height: 67px;
    top: -67px;
    margin-left: -67px;
  }
}

.bargain-public-number {
  height: 185px;

  .avait {
    position: absolute;
    top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .status-title {
    margin-top: 10px;
  }

  .status-dec {
    margin-top: 10px;
  }

  .public-number-img {
    width: 86px;
    height: 86px;
    margin-top: 15px;
  }
}

.bargain-first {
  height: 145px;

  .status-dec {
    margin-top: 15px;
  }
}

.bargain-second {
  height: 105px;
}

.not-bargain {
  height: 205px;
  padding: 15px 20px 20px 20px;

  .middle-img {
    width: 51px;
    height: 51px;
  }

  .status-title {
    height: 37px;
    line-height: 20px;
    font-size: 15px;
    margin-top: 10px;
  }

  .status-dec {
    margin-top: 15px;
  }
xuzhenghua committed
488 489
}

zhanghaozhe committed
490 491
.artifact-box,
.use-artifact-box {
xuzhenghua committed
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
  padding: 20px 0;
  background-color: $bg_fff;
  border-radius: 3px;
  text-align: center;
  margin: 200px auto 20px auto;
  position: relative;

  .top-img {
    position: absolute;
    width: 135px;
    height: 67px;
    top: -67px;
    margin-left: -67px;
  }

  .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;
FE committed
532
    // width: 84px;
xuzhenghua committed
533
    height: 24px;
FE committed
534
    padding: 0 13px;
xuzhenghua committed
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
    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
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
.close-bargain-success {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bargain-success {
  width: 290px;
  height: 109px;
  padding: 15px;
  background: $white;
  border-radius: 5px;
  text-align: center;
  margin: 100px auto 20px auto;
  position: relative;

  p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 10px;
  }

  p:nth-of-type(1) {
    font-size: 12px;
    margin-top: 10px;
  }

  .indicator {
    color: $color_FE2F2F;
  }

  .iconyindao {
    display: inline-block;
    width: 60px;
    height: 44px;
    position: absolute;
    top: -60px;
    right: 0;
    color: $white;
    font-size: 40px;
  }

  .moreMbc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
zhanghaozhe committed
622
    background-color: rgba(0, 0, 0, 0.6);
xuzhenghua committed
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
    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;
          }
        }
      }
    }

    .more-bargain-dec {
      width: 100%;
      position: absolute;
      bottom: 0;
      height: 42px;
      font-size: 12px;
      color: $color_FF4000;
      text-align: center;
      line-height: 42px;
    }

    .close {
      color: #fff;
      font-size: 22px;
      position: relative;
      left: 50%;
      margin-left: -11px;
    }
  }
}

FE committed
706 707 708 709 710 711 712 713 714
.bargain-popup__content {
  text-align: center;
}

.bargain-popup__button--close {
  font-size: 22px;
  color: #fff;
}

FE committed
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
.course-button__buy--done {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 61px;
  height: 18px;
  margin: auto 0;
  border-radius: 9px;
  font-size: 12px;
  color: $white;
  text-align: center;
  line-height: 18px;
  background-color: $bg_active;
}