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.
30 lines
559 B
30 lines
559 B
.preload-archives-detail {
|
|
width: 100%;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
border-radius: 16rpx;
|
|
padding: 0 24rpx;
|
|
overflow: hidden;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.preload-archives-detail .detail-item {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
border-radius: 8rpx;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
|
|
@keyframes loading {
|
|
0% {
|
|
background-position: 100% 50%
|
|
}
|
|
|
|
100% {
|
|
background-position: 0 50%
|
|
}
|
|
}
|