审查视图

pages/my-discount-card/my-discount-card.wxss 1.5 KB
倪静楠 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* pages/my-discount-card/my-discount-card.wxss *//* pages/discount-card/discount-card.wxss */
.container {
  width: 750rpx;
  height: 1448rpx;
  background-color: #f1f2f4;
  padding-top: 16rpx;
  box-sizing: border-box;
}

.picBox {
  width: 686rpx;
  height: 246rpx;
  margin: 0 auto;
  margin-bottom: 24rpx;
  display: flex;
  background-color: #ffffff;
  position: relative;
}

.picBox .left {
  width: 200rpx;
  height: 244rpx;
倪静楠 authored
23
  background: linear-gradient(270deg, #f09c4d -70%, #ff4903);
倪静楠 authored
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  padding-top: 48rpx;
  padding-bottom: 48rpx;
  box-sizing: border-box;
}

.left>view {
  text-align: center;
  color: #ffffff;
  margin-bottom: 8rpx;
  font-size: 24rpx;
  font-weight: 400;
}

.left .price {
  font-size: 64rpx;
  font-weight: 500;
}

.right {
  padding-top: 78rpx;
  padding-bottom: 78rpx;
  padding-left: 32rpx;
  box-sizing: border-box;
}

.right>view {
  font-size: 32rpx;
  font-weight: 600;
  text-align: left;
  color: #333333;
}
.right .time{
font-size: 28rpx;
font-weight: 400;
text-align: left;
color: #999999;
letter-spacing: 0px;
margin-top: 24rpx;
}
.topCircle{
  position: absolute;
  top: -4px;
倪静楠 authored
66
  left: 98px;
倪静楠 authored
67 68 69
  width: 20rpx;
  height: 20rpx;
  background-color: #f1f2f4;
倪静楠 authored
70
  border-radius: 43%;
倪静楠 authored
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
}
.bottomCircle{
  position: absolute;
  bottom: -4px;
  left: 96px;
  width: 20rpx;
  height: 20rpx;
  background-color: #f1f2f4;
  border-radius: 50%;
}
.listBlank{
  width: 750rpx;
  height:400rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999999;
  font-size: 30rpx;
}