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
| /* pages/promisefile/promisefile.wxss */
| .page__bd {
| font-size: 14px;
| }
|
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 5vh;
| background-color: #57E4CB;
| }
|
| .fyui-panel {
| padding: 8px;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| }
|
| .p-title {
| text-align: center;
| padding-top: 16px;
| font-size: 20px;
| font-weight: 600;
| }
|
| .p-content {
| font-size: 14px;
| }
|
| .p-sign {
| font-size: 12px;
| color: var(--fyui-text-color_2);
| }
|
| .submit {
| border-radius: 4px;
| background: linear-gradient(to right, #6DF1A9, #62EBCF);
| margin: 8px;
| color: white;
| padding: 8px;
| }
|
| .sign-btn {
| width: 96px;
| height: 96px;
| text-align: center;
| }
|
| .sign-img {
| float: left;
| margin-right: 8px;
| margin-bottom: 8px;
| width: 96px;
| height: 96px;
| background: no-repeat 50%;
| background-size: cover
| }
|
| .top-right {
| margin-top: 6px;
| margin-right: 6px;
| }
|
|