Files
sphc/pages/logistics_details/logistics_details.wxss
2024-05-10 15:18:51 +08:00

46 lines
701 B
Plaintext

/* pages/logistics_details/logistics_details.wxss */
.record-item {
/* padding-bottom: 48rpx; */
display: flex;
flex-direction: column;
position: relative;
padding-left: 48rpx;
}
.record-item:not(:last-child) {
padding-bottom: 48rpx;
}
.time {
font-size: 24rpx;
}
.dot {
position: absolute;
left: 0;
top: 9rpx;
width: 16rpx;
height: 16rpx;
background-color: gray;
opacity: 50%;
border-radius: 50%;
z-index: 999;
}
.record-item:nth-child(1) .dot {
background-color: red;
opacity: 1;
width: 24rpx;
height: 24rpx;
left: -6rpx;
}
.line {
position: absolute;
left: 8rpx;
top: 0;
height: 100%;
width: 2rpx;
background-color: gray;
opacity: 50%;
}