index.scss 1.93 KB
Newer Older
xuzhenghua committed
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 67 68 69 70 71 72 73 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
.ranking-box {
  .moreMbc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    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;
    }
  }

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

}