21 lines
395 B
Plaintext
21 lines
395 B
Plaintext
.load-more{
|
|
padding:100rpx 0;
|
|
text-align: center;
|
|
color: #888888;
|
|
font-size:24rpx;
|
|
position: relative;
|
|
width:80%;
|
|
margin:0 auto;
|
|
}
|
|
.load-more .text{
|
|
background-color: var(--main-bgclolor);
|
|
padding:0 30rpx;
|
|
}
|
|
.load-more::before{
|
|
content: '';
|
|
position: absolute;
|
|
left:0;top:112rpx;
|
|
width:100%;height:1.5rpx;
|
|
background-color: rgba(136, 136, 136, 0.25);
|
|
z-index: -1;
|
|
} |