2024-06-04 14:45:44 +08:00
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.content .filter {
|
2024-01-29 17:42:38 +08:00
|
|
|
margin: 0 10rpx;
|
2024-06-04 14:45:44 +08:00
|
|
|
width: calc(100vw - 20rpx);
|
2024-01-29 17:42:38 +08:00
|
|
|
height: 80rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-radius: 10rpx;
|
2024-06-04 14:45:44 +08:00
|
|
|
align-items: center;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.content .filter picker {
|
2024-01-29 17:42:38 +08:00
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2024-06-04 14:45:44 +08:00
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 30rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.content .item {
|
2024-01-29 17:42:38 +08:00
|
|
|
background-color: #ffffff;
|
2024-06-04 14:45:44 +08:00
|
|
|
padding: 32rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
box-shadow: 0px 0px 6px 1px #DDECF3;
|
|
|
|
|
margin: 16rpx 16rpx 0 16rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
border-radius: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.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;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.item .content .title::before {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
content: '';
|
|
|
|
|
width: 10rpx;
|
|
|
|
|
height: 30rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
margin-right: 10rpx;
|
2024-06-04 14:45:44 +08:00
|
|
|
border-radius: 5rpx;
|
|
|
|
|
background-color: var(--blue);
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.item .content .des {
|
2024-01-29 17:42:38 +08:00
|
|
|
font-size: 30rpx;
|
2024-06-04 14:45:44 +08:00
|
|
|
display: -webkit-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item .val {
|
|
|
|
|
font-size: 26rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
color: #222222;
|
2024-06-04 14:45:44 +08:00
|
|
|
margin-left: 16rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.item .add {
|
|
|
|
|
color: var(--blue);
|
|
|
|
|
margin-left: 15rpx;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
margin-left: 20rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.item .add .add-tv {
|
|
|
|
|
margin-left: 10rpx;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.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);
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 14:45:44 +08:00
|
|
|
.item .more {
|
2024-01-30 16:35:55 +08:00
|
|
|
position: absolute;
|
2024-06-04 14:45:44 +08:00
|
|
|
right: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line {
|
|
|
|
|
width: 1rpx;
|
|
|
|
|
height: 80%;
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cu-item {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: bold;
|
2024-01-29 17:42:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.option {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: calc(constant(safe-area-inset-bottom) + 30rpx);
|
|
|
|
|
bottom: calc(env(safe-area-inset-bottom) + 30rpx);
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
padding: 16rpx 32rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.option .btn {
|
|
|
|
|
padding: 14rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background: #409CFF;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.option .btn:active {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|