hailu
2023-12-07 097985a7a3f9c869f7ee5692b163210ab647987f
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
/* pages/home/home.wxss */
.list {
  width: 94%;
  margin: 0 3%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
 
.list .item {
  width: 48%;
  height: 80px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}
 
.list .item .title {
  display: flex;
  justify-content: space-between;
  height: 30px;
  background-color: #007CFE;
  color: #fff;
  line-height: 30px;
  padding: 0 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  white-space:nowrap;
}
 
.list .item .content {
  width: 90%;
  margin: 0 5%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
 
.list .item .content .left {
  line-height: 50px;
 
}
.list .item .content .right {
  padding-top: 5px;
  text-align: right;
 
}
 
.list .item .add {
  width: 40px;
  height: 40px;
  font-size: 50px;
  color: #007CFE;
  /* border: 1px solid #007CFE; */
  /* border-radius: 50%;  */
  /* margin-top:5px;
  margin-left: calc(50% - 20px); */
  position: relative;
  top: 5px;
  left: calc(50% - 20px);
}