138 lines
2.1 KiB
Plaintext
138 lines
2.1 KiB
Plaintext
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content .filter {
|
|
margin: 0 10rpx;
|
|
width: calc(100vw - 20rpx);
|
|
height: 80rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: white;
|
|
border-radius: 10rpx;
|
|
align-items: center;
|
|
}
|
|
|
|
.content .filter picker {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.content .item {
|
|
background-color: #ffffff;
|
|
padding: 32rpx 20rpx 20rpx 20rpx;
|
|
box-shadow: 0px 0px 6px 1px #DDECF3;
|
|
margin: 16rpx 16rpx 0 16rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.content .item .val::before {
|
|
display: inline-block;
|
|
content: '';
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
margin-right: 10rpx;
|
|
border-radius: 50%;
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.content .item .val {
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
margin-left: 16rpx;
|
|
padding: 10rpx 0;
|
|
}
|
|
|
|
|
|
.item .content {
|
|
font-size: 32rpx;
|
|
margin-right: 30rpx;
|
|
}
|
|
|
|
.item .content .time::before {
|
|
display: inline-block;
|
|
content: '';
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
margin-right: 10rpx;
|
|
border-radius: 50%;
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.item .content .title {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.item .content .des {
|
|
margin: 10rpx 0;
|
|
}
|
|
|
|
.item .content .time {
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.item .content .title::before {
|
|
display: inline-block;
|
|
content: '';
|
|
width: 10rpx;
|
|
height: 30rpx;
|
|
margin-right: 10rpx;
|
|
border-radius: 5rpx;
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.item .content .des {
|
|
font-size: 30rpx;
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.item .val {
|
|
font-size: 26rpx;
|
|
color: #222222;
|
|
margin-left: 16rpx;
|
|
}
|
|
|
|
.item .add {
|
|
color: var(--blue);
|
|
margin-left: 15rpx;
|
|
font-size: 30rpx;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.item .add .add-tv {
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.item .line {
|
|
margin: 10rpx 0;
|
|
border-bottom: 1rpx dashed #f5f5f5;
|
|
}
|
|
|
|
.item .record {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 30rpx;
|
|
color: var(--blue);
|
|
}
|
|
|
|
.item .more {
|
|
position: absolute;
|
|
right: 10rpx;
|
|
}
|
|
|
|
.line {
|
|
width: 1rpx;
|
|
height: 80%;
|
|
background-color: #f5f5f5;
|
|
} |