orderlist.scss 1.35 KB
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9 10 11 12
.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
13 14 15 16 17
      img {
        width: 100%;
        height: 100%;
        border-radius: 3px;
      }
xuzhenghua committed
18

xuzhenghua committed
19
      a {
xuzhenghua committed
20 21
        position: relative;
        display: inline-block;
xuzhenghua committed
22 23
        width: 100%;
        height: 100%;
xuzhenghua committed
24 25 26 27 28 29

        img {
          width: 100%;
          height: 100%;
          border-radius: 3px;
        }
xuzhenghua committed
30
      }
xuzhenghua committed
31 32 33 34 35 36 37 38 39
      .return_cash {
        position: absolute;
        top: 0;
        right: 0;
        width: 31px;
        height: 18px;
        background: url("./image/return.icon.png") no-repeat;
        background-size: 100% 100%;
      }
xuzhenghua committed
40

.  
baiguangyao committed
41
    }
xuzhenghua committed
42 43 44

    .order-info {
      position: relative;
xuzhenghua committed
45
      flex: 1;
xuzhenghua committed
46 47 48 49 50 51 52 53 54

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

      .order-content {
        font-size: 14px;
        color: $color_666;
xuzhenghua committed
55
        margin-top: 10px;
xuzhenghua committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
        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
75
    }
xuzhenghua committed
76 77
  }
}