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
| .div_reivedData_list {
| margin-top: 0.2rem;
| background-color: white;
| }
|
| .div_item {
| height: 1rem;
| }
|
| .div_item_top {
| height: 0.98rem;
| display: -webkit-flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .title {
| color: #333333;
| font-size: 0.32rem;
| margin-left: 0.3rem;
| }
|
| .input {
| -webkit-user-select: auto;
| margin-right: 0.27rem;
| font-size: 0.3rem;
| height: 0.7rem;
| width: 5rem;
| border: none;
| outline: medium;
| color: #000000;
| caret-color: #E5005C;
| text-align: right
| }
|
| .input::-webkit-input-placeholder {
| font-size: 0.26rem;
| }
|
| .div_tips {
| position: fixed;
| bottom: 1.17rem;
| margin-left: 0.2rem;
| margin-right: 0.2rem;
| background-color: white;
| border-radius: 0.2rem;
| }
|
| .div_tips_title {
| color: #333333;
| font-size: 0.34rem;
| height: 0.86rem;
| display: -webkit-flex;
| align-items: center;
| padding-left: 0.3rem;
| border-bottom: #D9D9D9 solid 1px;
| }
|
| .div_tips_content {
| margin-top: 0.43rem;
| padding-left: 0.26rem;
| padding-right: 0.21rem;
| color: #333333;
| font-size: 0.24rem;
| }
|
| .div_commit {
| background-color: #FFFFFF;
| position: fixed;
| width: 7.5rem;
| height: 0.96rem;
| bottom: 0;
| z-index: 1000;
| display: -webkit-flex;
| align-items: center;
| justify-content: center;
| border-top: #dddddd solid 1px;
| }
|
| .div_commit div {
| color: #FFFFFF;
| font-size: 0.34rem;
| background-color: #E5005B;
| width: 5.6rem;
| height: 0.76rem;
| border-radius: 0.38rem;
| display: -webkit-flex;
| align-items: center;
| justify-content: center;
| }
|
|
|
|