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.
67 lines
1.5 KiB
67 lines
1.5 KiB
.preload-item {
|
|
width: 100%;
|
|
height: 124rpx;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
padding: 20rpx 20rpx;
|
|
display: flex;
|
|
/* justify-content: center; */
|
|
align-items: center;
|
|
/* border-bottom: 1rpx solid #E5E5E5 */
|
|
}
|
|
|
|
/* .preload-item .street {
|
|
width: 100%;
|
|
height: 84rpx;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
} */
|
|
.preload-item .item-img {
|
|
width: 84rpx;
|
|
height: 84rpx;
|
|
border-radius: 50%;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
}
|
|
.preload-item .item-info{
|
|
width: 300rpx;
|
|
height: 84rpx;
|
|
margin-left: 20rpx;
|
|
/* display: flex; */
|
|
/* justify-content: center; */
|
|
/* align-items: center; */
|
|
}
|
|
.preload-item .item-info .item-info-top{
|
|
margin-top: 8rpx;
|
|
width: 300rpx;
|
|
height: 31rpx;
|
|
border-radius: 6rpx;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
}
|
|
.preload-item .item-info .item-info-bottom{
|
|
margin-top: 10rpx;
|
|
width: 216rpx;
|
|
height: 19rpx;
|
|
border-radius: 6rpx;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
}
|
|
@keyframes loading {
|
|
0% {
|
|
background-position: 100% 50%
|
|
}
|
|
|
|
100% {
|
|
background-position: 0 50%
|
|
}
|
|
}
|
|
|
|
/**
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
*/
|