54 lines
854 B
Plaintext
54 lines
854 B
Plaintext
.loadmore-container{
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.loading{
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
height: 72rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.loading .loading-view:nth-child(2){
|
|
margin-left: 36rpx;
|
|
}
|
|
|
|
.loading-text{
|
|
color:#bbb;
|
|
font-size: 28rpx;
|
|
margin: 0 12rpx;
|
|
}
|
|
|
|
.line{
|
|
width: 80rpx;
|
|
height: 2rpx;
|
|
background-color: #D1D3D7
|
|
}
|
|
|
|
.rotate {
|
|
border-radius: 50%;
|
|
animation: rotate 0.7s linear infinite;
|
|
height: 28rpx;
|
|
width: 28rpx;
|
|
border-top: 4rpx solid #bbb;
|
|
border-right:4rpx solid transparent !important;
|
|
border-bottom: 4rpx solid #bbb;
|
|
border-left: 4rpx solid #bbb;
|
|
margin-left: 12rpx;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(0);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|