| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 | /* pages/logisticsInfo/logisticsInfo.wxss *//* 物流信息 */page {  display: block;  width: 100%;  background: #f7f8fa;}.package-list {  position: fixed;  left: 0;  top: 0;  background: #fff;  font-size: 28rpx;  margin-bottom: 20rpx;  width: 100%;  z-index: 9;  white-space: nowrap;  border-bottom: 2rpx solid #f4f4f4;  box-sizing: border-box;}.package-list .package-item {  text-align: center;  line-height: 74rpx;}.package-list-flex {  display: flex;  justify-content: center;}.package-list-flex .package-item {  flex-grow: 1;}.package-list-flex .package-item .nav-txt {  line-height: 74rpx;  display: inline-block;  box-sizing: border-box;}.package-overlength {  overflow-x: scroll;}.package-overlength .package-item {  display: inline-block;  padding: 0 18rpx;  margin: 0 20rpx;  box-sizing: border-box;}.package-overlength .package-item .nav-txt {  padding-top: 6rpx;  line-height: 74rpx;}.active {  border-bottom: 6rpx solid #e43130;  color: #e43130;}/* 包裹信息 */.package-prod {  background: #fff;  display: block;  padding: 20rpx;  margin-bottom: 20rpx;}.mt100 {  margin-top: 100rpx;}/* 单个包裹 */.single-package {  display: flex;  align-items: center;  margin: 10rpx 0;}.prod-pic {  position: relative;  display: inline-block;  width: 130rpx;  height: 130rpx;  margin-right: 20rpx;  border-radius: 12rpx;}image.prod-pic {  display: block;  background: #e6f8fc;}.prod-con {  display: block;  font-size: 24rpx;}.prod-status {  font-size: 28rpx;  font-weight: bold;  color: #f95601;  line-height: 1.8em;}.carrier {  display: flex;  align-items: center;}.prod-carrier,.waybill-num {  color: #bbb;  line-height: 1.6em;}.copy-btn {  margin-left: 24rpx;  padding: 6rpx 14rpx;  border: 1rpx solid #aaa;  line-height: 1em;  box-sizing: border-box;  font-size: 22rpx;  color: #777;  border-radius: 6rpx;}/* 多个包裹 */.prod-item {  margin: 20rpx 0;}.prod-item-pic {  position: relative;  display: inline-block;  width: 130rpx;  height: 130rpx;  border-radius: 12rpx;  margin-right: 13rpx;  margin-bottom: 16rpx;}.quantity {  position: absolute;  bottom: 0;  right: 0;  font-size: 20rpx;  padding: 0 10rpx;  height: 34rpx;  line-height: 34rpx;  text-align: center;  background: rgba(0, 0, 0, .3);  border-radius: 12rpx 0 12rpx 0;  color: #fff;}/* 物流信息 */.logistics-info {  display: block;  background: #fff;  padding: 20rpx 0;}.logistics-info .logistics-box .logistics {  padding-bottom: 20rpx;}.logistics-info .logistics-box .logistics .item {  margin-left: 68rpx;  font-size: 24rpx;  border-left: 2rpx solid #ccc;  position: relative;  padding-left: 40rpx;  padding-top: 20rpx;}.logistics-info .logistics-box .logistics .item:first-child::before {  position: absolute;  display: block;  content: " ";  font-size: 0;  width: 28rpx;  height: 28rpx;  background: #fff;  top: 0;  left: -14rpx;}.logistics-info .logistics-box .logistics .item .time {  position: relative;}.logistics-info .logistics-box .logistics .item .time::before {  position: absolute;  display: block;  content: " ";  font-size: 0;  border-radius: 50%;  top: 4rpx;  left: -54rpx;  width: 10rpx;  height: 10rpx;  background: #ccc;  border: 8rpx solid #fff;}.logistics-info .logistics-box .logistics .item:first-child .time::before {  background: #e43130;  border-color: #fed1d4;}.logistics-info .logistics-box .logistics .item .des {  color: #999;  margin-top: 10rpx;}/* 物流为空 */.logistics-info-empty {  text-align: center;  padding: 10rpx;  font-size: 28rpx;}/* 包裹信息为空 */.expresses-empty {  font-size: 28rpx;  color: #999;  text-align: center;  margin-top: 100rpx;}
 |