orderlist.scss 1.38 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
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 15 16 17 18
      img {
        width: 100%;
        height: 100%;
        border-radius: 3px;
      }
xuzhenghua committed
19

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

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

    .order-info {
      position: relative;
xuzhenghua committed
45
      flex: 1;
xuzhenghua committed
46 47 48

      .order-title {
        font-size: 16px;
xuzhenghua committed
49
        color: $color_525B65;
xuzhenghua committed
50 51 52 53
      }

      .order-content {
        font-size: 14px;
xuzhenghua committed
54
        color: #777;
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
  }
}