init commit

This commit is contained in:
quantulr
2024-05-08 17:32:39 +08:00
parent e3a0666d5a
commit e3513e70fa
16 changed files with 522 additions and 114 deletions

View File

@ -1 +1,46 @@
/* pages/logistics_details/logistics_details.wxss */
/* 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(2) .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%;
}