orderlist.scss 1.03 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 {
xuzhenghua committed
15 16
        width: 100%;
        height: 100%;
xuzhenghua committed
17 18 19 20 21 22

        img {
          width: 100%;
          height: 100%;
          border-radius: 3px;
        }
xuzhenghua committed
23
      }
xuzhenghua committed
24

.  
baiguangyao committed
25
    }
xuzhenghua committed
26 27 28

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

      .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
61
    }
xuzhenghua committed
62 63
  }
}