orderlist.scss 1.31 KB
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9 10 11 12 13
.public-list-item {
  background: $bg_fff;

  .public-content {
    display: flex;
    height: 100%;

    .public-cover {
      margin-right: 15px;
      position: relative;
      width: 125px;
      height: 90px;

xuzhenghua committed
14
      a {
FE committed
15 16
        position: relative;
        display: inline-block;
xuzhenghua committed
17 18
        width: 100%;
        height: 100%;
xuzhenghua committed
19 20 21 22 23 24

        img {
          width: 100%;
          height: 100%;
          border-radius: 3px;
        }
xuzhenghua committed
25
      }
26
      .return_cash {
FE committed
27 28 29
        position: absolute;
        top: 0;
        right: 0;
30 31 32 33
        width: 31px;
        height: 18px;
        background: url("./image/return.icon.png") no-repeat;
        background-size: 100% 100%;
FE committed
34
      }
xuzhenghua committed
35

.  
baiguangyao committed
36
    }
xuzhenghua committed
37 38 39

    .order-info {
      position: relative;
xuzhenghua committed
40
      flex: 1;
xuzhenghua committed
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

      .order-title {
        font-size: 16px;
        color: $color_333;
        height: 16px;
        line-height: 16px;
      }

      .order-content {
        font-size: 14px;
        color: $color_666;
        margin-top: 14px;
        line-height: 18px;
      }

      .order-des {
        height: 24px;
        line-height: 33px;

        .order-newprice {
          font-size: 16px;
          color: $redprice;
        }

        .order-price {
          font-size: 12px;
          color: $color_999;
          margin-left: 15px;
          text-decoration: line-through;
        }
      }
.  
baiguangyao committed
72
    }
xuzhenghua committed
73 74
  }
}