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
| /**index.wxss**/
| .font-wenzi {
| font-size: 13px;
| color: rgba(0, 0, 0, 0.4);
| }
|
| .font-name {
| font-size: 14px;
|
| }
|
| .font-qita {
| font-size: 13px;
| text-overflow: ellipsis;
| overflow: hidden;
| white-space: nowrap;
| width: 6rem;
| }
|
| .conter {
| height: 3rem;
| display: flex;
| align-items: center;
| padding: 0 1rem;
| justify-content: space-between;
| border-bottom: 1px solid rgba(0, 0, 0, 0.1);
| }
| .conter-left{
| display: flex;
| flex: 1;
| align-items: center;
| }
| .icon1 {
| width: 35px;
| height: 35px;
|
| }
|
| .count {
| width: 15px;
| height: 15px;
| float: right;
| font-size: 13px;
| background-color: red;
| text-align: center;
| color: white;
| border-radius: 50%;
| margin-top: 1%;
| margin-right: -30%;
| }
|
| .empty .bottom-button{
| width: 8rem;
| }
|
|