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.
60 lines
916 B
60 lines
916 B
3 days ago
|
/* subpages/space/list/list.wxss */
|
||
|
.card{
|
||
|
height:280rpx ;
|
||
|
}
|
||
|
.name {
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
.position{
|
||
|
font-size: 30rpx;
|
||
|
line-height: 32rpx;
|
||
|
}
|
||
|
.date {
|
||
|
font-size: 26rpx;
|
||
|
color: #BFBFBF;
|
||
|
line-height: 40rpx;
|
||
|
}
|
||
|
.btn{
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.doc {
|
||
|
color: #08b3b3;
|
||
|
font-size: 20rpx;
|
||
|
}
|
||
|
|
||
|
.scroll-view {
|
||
|
padding: 20rpx;
|
||
|
box-sizing: border-box;
|
||
|
background: #eff0f3;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
|
||
|
/* 加载更多样式 */
|
||
|
.load-more {
|
||
|
padding: 20rpx 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.loading-text, .no-more-text {
|
||
|
font-size: 28rpx;
|
||
|
color: #999;
|
||
|
}
|
||
|
|
||
|
.loading-text text::before {
|
||
|
content: '';
|
||
|
display: inline-block;
|
||
|
width: 20rpx;
|
||
|
height: 20rpx;
|
||
|
border: 2rpx solid #ccc;
|
||
|
border-top-color: #0DC6C6;
|
||
|
border-radius: 50%;
|
||
|
animation: spin 1s linear infinite;
|
||
|
margin-right: 10rpx;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
@keyframes spin {
|
||
|
0% { transform: rotate(0deg); }
|
||
|
100% { transform: rotate(360deg); }
|
||
|
}
|