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
93
94
95
96
97
98
99
100
101
102
103
104
105
| .searchcion {
| width: 24px;
| height: 24px;
| text-align: center;
| margin-top: 5rpx;
| }
|
| .search {
| padding: 1% 3%;
| display: flex;
| }
|
| .search input {
| width: 80%;
| border-radius: 5px;
| background: #fff;
| border: 1px solid #d0d0d0;
| font-size: 12px;
| padding: 1% 2.5%;
| margin-right: 5px;
| }
|
| .search button {
| line-height: 30px;
| text-align: center;
| border: none;
| font-size: 14px;
| background: #2195ff;
| width: 20%;
| color: #fff;
| }
|
| .budget {
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| display: flex;
| flex-direction: column;
| }
|
| .budget-message {
| display: flex;
| padding: 2vh;
| border-top: 1px solid #f2f2f2;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .budget-message span:nth-child(1) {
| border-left: 3px solid #2195ff;
| }
|
| .budget-message span:nth-child(2) {
| padding-left: 1vh;
| font-size: 18px;
| font-weight: bold;
| }
|
| .budget-list {
| padding: 1vh 0 1vh 2vh;
| display: flex;
| align-items: center;
| border-bottom: 1px solid #f2f2f2;
| }
| .budget-list-left{
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .budget-list-left image {
| width: 120rpx;
| height: 120rpx;
| background: skyblue;
| margin-right: 2vh;
| }
|
| .budget-list-title {
| font-size: 16px;
| color: #333;
| }
|
| .budget-list-center {
| flex: 1;
| }
|
| .budget-list-right {
| width: 8vh;
| height: 16px;
| }
|
| .budget-list-time {
| font-size: 14px;
| color: #999;
| padding-top: 1vh;
| }
|
| .load{
| display: flex;
| justify-content: center;
| color: #999;
| font-size: 14px;
| margin: 2vh;
| }
| .index-pane-icon {
| width: 16px;
| height: 16px;
| float:right;
| }
|
|