49 lines
816 B
Plaintext
Executable File
49 lines
816 B
Plaintext
Executable File
@import '../common/index.wxss';
|
|
|
|
.van-empty {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding: 10px 0
|
|
}
|
|
|
|
.van-empty__image {
|
|
width: 100px;
|
|
height: 100px
|
|
}
|
|
|
|
.van-empty__image:empty {
|
|
display: none
|
|
}
|
|
|
|
.van-empty__image__img {
|
|
width: 100%;
|
|
height: 100%
|
|
}
|
|
|
|
.van-empty__image:not(:empty)+.van-empty__image {
|
|
display: none
|
|
}
|
|
|
|
.van-empty__description {
|
|
margin-top: 16px;
|
|
padding: 0 60px;
|
|
color: #969799;
|
|
font-size: 14px;
|
|
line-height: 20px
|
|
}
|
|
|
|
.van-empty__description:empty,
|
|
.van-empty__description:not(:empty)+.van-empty__description {
|
|
display: none
|
|
}
|
|
|
|
.van-empty__bottom {
|
|
margin-top: 24px
|
|
} |