coupon.wxss 896 字节
Newer Older
恪愚's avatar
恪愚 已提交
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
.card{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 6% 4%;
  font-size: 34rpx;
  background-color: white;
}
.card .left{
  width: 26%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border-right: 1rpx solid rgba(0,0,0,.15);
}
.left .left_img{
  width: 45%;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
}
.left .left_text{
  width: 43%;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
  white-space: pre-wrap;
  word-wrap: normal;
}
.card .right{
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.right .right_text{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1rpx 15rpx;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}