yiming
2024-03-06 bcd706eeb0c7f9e36ee4803386e52ce2bc0510f6
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
page {
  background-color: #f5f5f5;
}
 
.coupon-card-wrap {
  background-color: #fff;
  padding: 32rpx 32rpx 1rpx;
}
.desc-wrap {
  margin-top: 24rpx;
}
.desc-wrap .button-wrap {
  margin: 50rpx 32rpx 0;
}
 
.desc-group-wrap .t-class-cell {
  align-items: flex-start;
}
 
.desc-group-wrap .t-class-title {
  font-size: 26rpx;
  width: 140rpx;
  flex: none;
  color: #888;
}
 
.desc-group-wrap .t-class-note {
  font-size: 26rpx;
  word-break: break-all;
  white-space: pre-line;
  justify-content: flex-start;
  color: #333;
}
 
.desc-group-wrap {
  border-radius: 8rpx;
  overflow: hidden;
 
  --cell-label-font-size: 26rpx;
  --cell-label-line-height: 36rpx;
  --cell-label-color: #999;
}
 
.desc-group-wrap.in-popup {
  border-radius: 0;
  overflow: auto;
  max-height: 828rpx;
}
 
.desc-group-wrap .wr-cell__title {
  color: #333;
  font-size: 28rpx;
}
 
/* .desc-group-wrap .max-width-cell {
  overflow: hidden;
} */
 
/* .desc-group-wrap .signal-line-label {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.desc-group-wrap .multi-line-label {
  word-break: break-all;
  white-space: pre-line;
} */
 
.popup-content-wrap {
  background-color: #fff;
  border-top-left-radius: 20rpx;
  border-top-right-radius: 20rpx;
}
 
.popup-content-title {
  font-size: 32rpx;
  color: #333;
 
  text-align: center;
  height: 104rpx;
  line-height: 104rpx;
 
  position: relative;
}
 
.popup-content-title .close-icon {
  position: absolute;
  top: 24rpx;
  right: 24rpx;
}