express.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. page {
  2. height: 100%;
  3. width: 100%;
  4. background: #f4f4f4;
  5. }
  6. .container {
  7. height: 100%;
  8. width: 100%;
  9. }
  10. .express-header {
  11. border-top: 1px solid #d9d9d9;
  12. width: 100%;
  13. height: auto;
  14. overflow: hidden;
  15. background: #fff;
  16. display: flex;
  17. padding: 20rpx 30rpx;
  18. }
  19. .express-header .left {
  20. flex: 1;
  21. height: 100%;
  22. }
  23. .express-header .left .txt {
  24. height: 50rpx;
  25. line-height: 50rpx;
  26. overflow: hidden;
  27. width: 100%;
  28. }
  29. .express-header .right {
  30. width: 160rpx;
  31. height: 100%;
  32. display: flex;
  33. }
  34. .express-header .update-btn {
  35. margin-top: 47rpx;
  36. width: 158rpx;
  37. height: 56rpx;
  38. line-height: 54rpx;
  39. overflow: hidden;
  40. text-align: center;
  41. border-radius: 8rpx;
  42. color: #333;
  43. border: 1px solid #666;
  44. }
  45. .express-body {
  46. margin-top: 20rpx;
  47. width: 100%;
  48. height: auto;
  49. overflow: hidden;
  50. background: #fff;
  51. padding: 30rpx;
  52. position: relative;
  53. }
  54. .current-icon{
  55. height: 24rpx;
  56. width: 24rpx;
  57. position: absolute;
  58. top: 30rpx;
  59. left: 50rpx;
  60. background: #b4282d;
  61. border-radius: 24rpx;
  62. }
  63. .express-item {
  64. height: auto;
  65. width: 100%;
  66. overflow: hidden;
  67. display: flex;
  68. margin-left: 30rpx;
  69. border-left: 1px solid #d9d9d9;
  70. }
  71. .express-item .left {
  72. width: 44rpx;
  73. height: 100%;
  74. overflow: hidden;
  75. }
  76. .express-item .right {
  77. flex: 1;
  78. height: 100%;
  79. margin-left: 10rpx;
  80. padding: 20rpx 0;
  81. border-bottom: 1px solid #f1f2f4;
  82. }
  83. .express-item.item-0 .right {
  84. padding-top: 0rpx;
  85. }
  86. .express-item:last-child .right{
  87. border-bottom: none;
  88. padding-bottom: 0rpx;
  89. }
  90. .express-item .right .info {
  91. min-height: 42rpx;
  92. height: auto;
  93. overflow: hidden;
  94. padding-right: 30rpx;
  95. line-height: 42rpx;
  96. color: #999;
  97. }
  98. .express-item.item-0 .right .info {
  99. color: #b4282d;
  100. }
  101. .express-item .right .time {
  102. min-height: 42rpx;
  103. height: auto;
  104. overflow: hidden;
  105. line-height: 42rpx;
  106. color: #999;
  107. }
  108. .express-item.item-0 .right .time {
  109. color: #b4282d;
  110. }