logistics.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* pages/order/logistics/logistics.wxss */
  2. @import "./logistics.skeleton.wxss";
  3. page {
  4. background: #F8F8F8;
  5. }
  6. .logistics {
  7. padding: 24rpx;
  8. }
  9. .logisticsName {
  10. padding: 24rpx;
  11. background: white;
  12. border-radius: 16rpx 16rpx 16rpx 16rpx;
  13. }
  14. .name {
  15. font-weight: 500;
  16. font-size: 28rpx;
  17. color: #202020;
  18. line-height: 42rpx;
  19. }
  20. .dvyFlowId {
  21. font-weight: 400;
  22. font-size: 24rpx;
  23. color: #424242;
  24. line-height: 38rpx;
  25. }
  26. .dvyFlowId::after{
  27. content: "\eb4e";
  28. }
  29. .checkStep {
  30. background: white;
  31. padding: 24rpx;
  32. box-sizing: border-box;
  33. margin-top: 26rpx;
  34. border-radius: 16rpx 16rpx 16rpx 16rpx;
  35. }
  36. .stepItem {
  37. display: flex;
  38. flex-flow: row;
  39. align-items: flex-start;
  40. justify-content: space-between;
  41. }
  42. .stepItem .left {
  43. flex: 0 auto;
  44. align-self: stretch;
  45. /* height: 136rpx; */
  46. display: flex;
  47. flex-flow: column;
  48. text-align: center;
  49. align-items: center;
  50. margin-bottom: 4rpx;
  51. }
  52. .dashed {
  53. flex: 1;
  54. width: 1rpx;
  55. border-left: 1rpx dashed #D9D9D9;
  56. margin-top: 4rpx;
  57. }
  58. .icon-a-Check23 {}
  59. .stepItem .right {
  60. flex: 1;
  61. padding-left: 20rpx;
  62. }
  63. .checkName {
  64. font-weight: 500;
  65. font-size: 24rpx;
  66. color: #222222;
  67. line-height: 48rpx;
  68. }
  69. .checkDate {
  70. font-weight: 400;
  71. font-size: 20rpx;
  72. color: #A2A2A2;
  73. line-height: 36rpx;
  74. }
  75. .titleText {
  76. position: sticky !important;
  77. position: -webkit-sticky !important;
  78. top: 0;
  79. background: #FFFFFF;
  80. z-index: 9;
  81. }