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
| /**app.wxss**/
| .container {
| height: 100%;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: space-between;
| box-sizing: border-box;
| }
| .noMore-View {
| /* display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| height: 100vh;
| width: 100%;
| text-align: center; */
| display: flex;
| flex-direction: column; /* 确保子元素纵向排列 */
| justify-content: center; /* 垂直居中 */
| align-items: center; /* 水平居中 */
| height: 100%; /* 让容器高度占满父元素 */
| }
|
| .noMore-img{
| width: 300rpx;
| height: 300rpx;
| }
|
| .noMore-text{
| color:#969494;
| }
|
| .list-container {
| display: flex;
| flex: 1;
| overflow-y: auto;
| z-index: 0;
| margin-top: 10rpx;
| }
|
|