You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
861 B
57 lines
861 B
/* components/list/list.wxss */
|
|
::-webkit-scrollbar{
|
|
width: 0;
|
|
}
|
|
.list{
|
|
width: 100%;
|
|
height:92vh;
|
|
/* padding: 20rpx 0; */
|
|
background: transparent;
|
|
box-sizing: border-box;
|
|
overflow:auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
scroll-view{
|
|
width: 100%;
|
|
height:92vh;
|
|
background: #f2f1f6;
|
|
-webkit-overflow-scrolling: touch;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
|
|
.bottom_tip{
|
|
width: 100%;
|
|
height: 100rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #999999;
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.loading{
|
|
width: 100%;
|
|
height: 100rpx;
|
|
font-size: 22rpx;
|
|
color: #999999;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.loading image{
|
|
width: 24rpx;
|
|
height: 24rpx;
|
|
margin-right: 8rpx;
|
|
}
|
|
|
|
.mask{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 100;
|
|
}
|