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
92
| export default function () {
| return `
| /*这样注释可以*/
| .title {
| width: 100%;
| font-weight: 500;
| font-size: 26px;
| color: #000000;
| text-align: center;
| }
|
| .code-title {
| width: 100%;
| height: 16px;
| margin-top: 10px;
| font-weight: 400;
| font-size: 12px;
| color: #000000;
| text-align: center;
| }
| .code-code {
| width: 100%;
| font-weight: 500;
| font-size: 40px;
| color: #373839;
| letter-spacing: 2px;
| text-align: center;
| }
| .code-wait {
| width: 100%;
| height: 18px;
| font-weight: 400;
| font-size: 15px;
| color: #5F6062;
| text-align: center;
| font-style: normal;
| }
| .qrcode-code {
| width: 160px;
| height: 160px;
| margin: 0 auto;
| margin-top: 8px;
| }
| .qrcode-text {
| width: 100%;
| margin-top: 6px;
| height: 14px;
| font-weight: 400;
| font-size: 12px;
| color: #717172;
| text-align: center;
| }
| .line {
| margin-bottom: 8px;
| width: 100%;
| height: 10px;
| border-borrom: 1px solid #D1D2D2;
| }
| .cell {
| width: 100%;
| height: auto;
| display: flex;
| align-items: center;
| justify-content: space-between;
| height: 36px;
| margin-bottom: 5px;
| }
| .cell-label {
| width: 80px;
| font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
| font-weight: 400;
| font-size: 15px;
| color: #3C3E3F;
| text-align: left;
| }
| .cell-value {
| width: 180px;
| font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
| font-weight: 400;
| font-size: 15px;
| color: #5F6062;
| text-align: right;
| font-style: normal;
| text-transform: none;
| }
| .over-line {
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
| `;
| }
|
|