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
720 B
57 lines
720 B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* components/emptyListHint/emptyListHint.wxss */
|
|
.emptyHint {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
padding-top: 200rpx;
|
|
}
|
|
.hintContent {
|
|
font-family: PingFangSC-Regular;
|
|
font-size: 34rpx;
|
|
color: #CCCCCC;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
line-height: 50rpx;
|
|
padding: 52rpx;
|
|
}
|
|
.noneimg {
|
|
width: 120rpx;
|
|
height: 94rpx;
|
|
margin-bottom: 0rpx;
|
|
}
|
|
|