84 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-08-19 15:32:53 +08:00
.containerView.public {
background: none;
height: auto;
}
.itemTitleView {
/* border-left: 8rpx solid #76aef9; */
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px;
}
.itemTitleView .title {
margin-left: 10rpx;
font-size: 28rpx;
color: #141414;
}
.itemTitleView .more {
font-size: 28rpx;
color: #5482de;
}
2024-08-19 15:32:53 +08:00
.infoView {
/* border: 1px solid red; */
background: white;
margin: 10rpx 0;
}
.infoView .itemView {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30rpx 40rpx;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
}
.infoView .itemView.activity::after {
display: block;
content: '';
position: absolute;
right: 26rpx;
top: 30rpx;
width: 16rpx;
height: 16rpx;
border-radius: 20rpx;
background: red;
}
.infoView .itemView:last-of-type {
border-bottom: none;
}
.infoView .itemView .contentView {}
.infoView .itemView .arrow {
margin-left: 20rpx;
}
.infoView .itemView .contentView .title {
font-size: 30rpx;
color: black;
}
.infoView .itemView .contentView .msg {
font-size: 26rpx;
color: gray;
margin-top: 16rpx;
}
.infoView .itemView .contentView .time {
font-size: 24rpx;
color: gray;
margin-top: 4rpx
}
.loadAllLine {
margin-top: 80rpx;
}