/**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;
|
margin-bottom: 20rpx;
|
overflow: hidden; /* 避免横向滚动 */
|
width: 100%; /* 确保 scroll-view 的宽度占满父容器 */
|
flex-direction: column; /* 确保内容按列排列 */
|
}
|
|
|
.loading {
|
text-align: center;
|
padding: 20px;
|
font-size: 30rpx;
|
}
|