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
| :host {
| display: inline-block;
| display: inline-block;
| font-weight: inherit;
| }
| .inline {
| display: inline;
| white-space: nowrap;
| }
| .price {
| display: inline;
| color: inherit;
| font-size: inherit;
| text-decoration: inherit;
| }
|
| .lighter {
| font-weight: 400;
| font-size: 32rpx;
| }
| .mini {
| font-size: 24rpx;
| color: #5d5d5d;
| font-weight: 400;
| }
| .del .pprice {
| font-size: 32rpx;
| color: #9b9b9b;
| text-decoration: line-through;
| font-weight: 400;
| }
| .delthrough {
| position: relative;
| }
| .delthrough .line {
| position: absolute;
| top: 50%;
| left: 0;
| right: 0;
| transform: translateY(-50%);
| margin: 0;
| background-color: currentColor;
| }
|
| .symbol {
| display: inline;
| color: inherit;
| font-size: inherit;
| font-size: 0.8em;
| }
| .pprice {
| display: inline;
| margin: 0 0 0 4rpx;
| }
| .integer {
| color: inherit;
| font-size: inherit;
| }
| .decimal {
| color: inherit;
| font-size: inherit;
| }
| .decimal.smaller {
| font-size: 0.8em;
| vertical-align: baseline;
| }
|
|