express-delivery.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* pages/express-delivery/express-delivery.wxss */
  2. page {
  3. background: #f7f8fa;
  4. }
  5. .container {
  6. height: 100%;
  7. }
  8. .padding20 {
  9. padding-top: 88rpx;
  10. }
  11. .f-fl {
  12. float: left;
  13. }
  14. .f-fr {
  15. float: right;
  16. }
  17. .navWrap {
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. z-index: 1;
  22. overflow: hidden;
  23. background-color: #fafafa;
  24. border-bottom: 2rpx solid #f4f4f4;
  25. height: 92rpx;
  26. }
  27. .nav {
  28. display: flex;
  29. flex-flow: row nowrap;
  30. }
  31. .nav-slider {
  32. left: 0;
  33. bottom: 0;
  34. height: 4rpx;
  35. background-color: #b4282d;
  36. transition: transform 0.3s;
  37. transition: transform 0.3s, -webkit-transform 0.3s;
  38. box-sizing: border-box;
  39. }
  40. .nav-item {
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. flex: 1;
  45. float: left;
  46. height: 88rpx;
  47. padding: 0 16rpx;
  48. font-size: 28rpx;
  49. }
  50. .nav-item text {
  51. box-sizing: border-box;
  52. color: #333;
  53. padding: 27rpx 16rpx 23rpx;
  54. line-height: 34rpx;
  55. }
  56. .nav-item.active text {
  57. color: #b4282d;
  58. }
  59. .u-icon {
  60. vertical-align: middle;
  61. }
  62. .deliveryInfo {
  63. height: 198rpx;
  64. width: 100%;
  65. vertical-align: middle;
  66. padding-left: 30rpx;
  67. background-size: cover;
  68. display: table;
  69. position: relative;
  70. box-sizing: border-box;
  71. }
  72. .icon-express {
  73. width: 104rpx;
  74. height: 104rpx;
  75. background-size: 100% 100%;
  76. position: absolute;
  77. top: 48rpx;
  78. left: 30rpx;
  79. }
  80. .infoWarp {
  81. display: table-cell;
  82. vertical-align: middle;
  83. }
  84. .deliveryInfo .companyname, .deliveryInfo .expno {
  85. line-height: 1;
  86. margin-left: 136rpx;
  87. font-size: 28rpx;
  88. }
  89. .deliveryInfo .companyname .key, .deliveryInfo .expno .key {
  90. color: #666;
  91. }
  92. .deliveryInfo .expno {
  93. margin-top: 16rpx;
  94. }
  95. .deliveryDetail {
  96. margin-top: 20rpx;
  97. padding-top: 40rpx;
  98. background-color: #fff;
  99. min-height: 670rpx;
  100. }
  101. .detailItem {
  102. border-left: 1px dashed #f4f4f4;
  103. margin-left: 42rpx;
  104. position: relative;
  105. margin-bottom: 2rpx;
  106. }
  107. .dot image {
  108. width: 35rpx;
  109. height: 35rpx;
  110. background-size: 100%;
  111. position: absolute;
  112. top: 40rpx;
  113. left: -18rpx;
  114. }
  115. .lastest .dot image {
  116. top: -2rpx;
  117. }
  118. .detail .desc {
  119. font-size: 24rpx;
  120. line-height: 30rpx;
  121. }
  122. .detail .time {
  123. font-size: 24rpx;
  124. line-height: 30rpx;
  125. color: #999;
  126. margin-top: 15rpx;
  127. }
  128. .detail {
  129. border-top: 1px solid #f4f4f4;
  130. margin-left: 28rpx;
  131. overflow: hidden;
  132. padding-right: 30rpx;
  133. }
  134. .detail .desc {
  135. margin-top: 40rpx;
  136. }
  137. .detail .time {
  138. margin-bottom: 39rpx;
  139. }
  140. .lastest .detail .desc, .lastest .detail .time {
  141. color: #105c3e;
  142. }
  143. .lastest .detail {
  144. border-top: 0;
  145. }
  146. .lastest .detail .desc {
  147. margin-top: 0;
  148. }
  149. .deliveryTip {
  150. height: 80rpx;
  151. background-color: #fff8d8;
  152. padding-left: 30rpx;
  153. color: #f48f18;
  154. font-size: 28rpx;
  155. line-height: 80rpx;
  156. margin-bottom: 20rpx;
  157. }
  158. .empty-space {
  159. margin-top: 20rpx;
  160. background: #fff;
  161. font-size: 28rpx;
  162. color: #333;
  163. padding: 20rpx 0;
  164. text-align: center;
  165. }