logisticsDetail.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* pages/invoice/logisticsDetail/logisticsDetail.wxss */
  2. .page-logistics{
  3. background: #F0F2F6;
  4. }
  5. .planer-box .info-box{
  6. padding-top: 40rpx;
  7. padding-bottom: 40rpx;
  8. }
  9. .info-box .list{
  10. display: flex;
  11. height: 80rpx;
  12. line-height: 80rpx;
  13. }
  14. .info-box .list .label-text{
  15. font-size:24rpx;
  16. color:#707377;
  17. width: 180rpx;
  18. }
  19. .info-box .list .value-text{
  20. flex: 1;
  21. color:#161616;
  22. font-size:24rpx;
  23. }
  24. .order-info-box .planer-header:after{
  25. display: none;
  26. }
  27. .order-list{
  28. position: relative;
  29. }
  30. .order-list:before{
  31. position: absolute;
  32. top:0;
  33. left: 170rpx;
  34. height: 100%;
  35. width: 1px;
  36. background:rgba(216,216,216,1);
  37. content:""
  38. }
  39. .order-list .list{
  40. position: relative;
  41. display: flex;
  42. margin-bottom: 40rpx
  43. }
  44. .order-list .list:after{
  45. position: absolute;
  46. top:30rpx;
  47. left: 166rpx;
  48. width:10rpx;
  49. height:10rpx;
  50. background:rgba(216,216,216,1);
  51. border-radius:50rpx;
  52. display: block;
  53. content: "";
  54. }
  55. .order-list >view.list:last-child{
  56. margin-bottom: 0;
  57. }
  58. /*.order-list >view.list:first-child:after{
  59. top:0% !important;
  60. }
  61. .order-list >view.list:last-child:after{
  62. top:100%;
  63. }*/
  64. .order-list .list .time{
  65. text-align: center;
  66. width: 170rpx;
  67. }
  68. .order-list .list .time>view{
  69. color: #707377;
  70. font-size: 24rpx;
  71. flex: 1;
  72. overflow: hidden;
  73. }
  74. .order-list .list .text{
  75. padding-left: 30rpx;
  76. color: #707377;
  77. font-size: 24rpx;
  78. line-height: 1.6;
  79. text-align: left;
  80. flex: 1;
  81. overflow: hidden;
  82. display: flex;
  83. align-items: center;
  84. }