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.
44 lines
882 B
44 lines
882 B
@import '../common/index.wxss';
|
|
|
|
.van-image {
|
|
position: relative;
|
|
display: inline-block
|
|
}
|
|
|
|
.van-image--round {
|
|
overflow: hidden;
|
|
border-radius: 50%
|
|
}
|
|
|
|
.van-image--round .van-image__img {
|
|
border-radius: inherit
|
|
}
|
|
|
|
.van-image__error,
|
|
.van-image__img,
|
|
.van-image__loading {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%
|
|
}
|
|
|
|
.van-image__error,
|
|
.van-image__loading {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
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;
|
|
color: #969799;
|
|
color: var(--image-placeholder-text-color, #969799);
|
|
font-size: 14px;
|
|
font-size: var(--image-placeholder-font-size, 14px);
|
|
background-color: #f7f8fa;
|
|
background-color: var(--image-placeholder-background-color, #f7f8fa)
|
|
}
|