logisticsListCom.less 1.52 KB
@charset "UTF-8";

.logistics-list-com {
	background-color: #FFFFFF;
	width: 100%;
	height: auto;
	.box {
		margin: 0 auto;
		padding: 42rpx 0 82rpx 0;
		width: 690rpx;
		height: auto;
		.item {
			display: flex;
			justify-content: flex-start;
			align-items: flex-start;
			width: 100%;
			height: auto;
			.time-box {
				width: 96rpx;
				text-align: right;
				.date {
					color: #333333;
					font-size: 24rpx;
					font-weight: 400;
				}
				.time {
					color: #B4B4B4;
					font-size: 20rpx;
					font-weight: 400;
				}
			}
			.line-box {
				position: relative;
				margin: 0 42rpx 0 32rpx;
				width: 0;
				height: 100%;
				min-height: 230rpx;
				border-left: 1px solid #DCDCDC;
				.dot {
					position: absolute;
					top: 18rpx;
					left: -6rpx;
					z-index: 1;
					background-color: #DCDCDC;
					width: 10rpx;
					height: 10rpx;
					border-radius: 50%;
				}
			}
			.content-box {
				width: 515rpx;
				.value {
					color: #B4B4B4;
					font-size: 24rpx;
					font-weight: 400;
				}
			}
			&.active {
				.line-box {
					.dot {
						position: absolute;
						top: 8rpx;
						left: -14rpx;
						z-index: 1;
						background-color: #941305;
						width: 26rpx;
						height: 26rpx;
						border-radius: 50%;
					}
				}
				.content-box {
					.value {
						color: #333333;
						font-weight: 600;
					}
				}
			}
		}
		.order-address-box {
			.item {
				.line-box {
					border-left: 1px dashed #DCDCDC;
				}
				.content-box {
					.value {
						color: #333333;
						font-weight: 600;
					}
				}
			}
		}
	}
}