Files
sphc/pages/logistics_details/logistics_details.wxss

93 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-05-08 17:32:39 +08:00
/* pages/logistics_details/logistics_details.wxss */
2024-05-17 17:14:40 +08:00
page {
background-color: #f2f2f2;
}
.packages-scroll {
display: flex;
flex-direction: row;
height: 128rpx;
}
.packages-scroll .package {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 200rpx;
height: 96rpx;
background-color: #fff;
border-radius: 16rpx;
overflow: hidden;
}
.packages-scroll .package .icon {
width: 48rpx;
height: 48rpx;
margin-right: 4rpx;
}
.packages-scroll .package .active-indicator {
position: absolute;
height: 12rpx;
width: 100%;
bottom: 0;
left: 0;
background-color: #f85900;
}
.packages-scroll .package:not(:first-of-type) {
margin-left: 20rpx;
}
2024-05-08 17:32:39 +08:00
.record-item {
/* padding-bottom: 48rpx; */
display: flex;
flex-direction: column;
position: relative;
padding-left: 48rpx;
}
2024-05-17 17:14:40 +08:00
.goods-name {
2024-05-24 17:17:01 +08:00
/* overflow: hidden;
2024-05-17 17:14:40 +08:00
text-overflow: ellipsis;
2024-05-24 17:17:01 +08:00
white-space: nowrap; */
2024-05-17 17:14:40 +08:00
}
2024-05-08 17:32:39 +08:00
.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;
}
2024-05-10 15:18:51 +08:00
.record-item:nth-child(1) .dot {
2024-05-08 17:32:39 +08:00
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%;
2024-05-17 17:14:40 +08:00
}