detail.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* pages/mine/trackingdetail/detail.wxss */
  2. .detailbase{
  3. display: flex;
  4. flex-direction: column;
  5. background: rgba(244,244,244,0.3);
  6. color: #333;
  7. height: 100vh;
  8. }
  9. .item-one{
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-between;
  13. padding: 35rpx 30rpx 40rpx 30rpx;
  14. background: #ffffff;
  15. }
  16. .item-one-left{
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. .item-one-right-tittle{
  21. font-size: 18px;
  22. }
  23. .item-one-right-other{
  24. color: #999999;
  25. font-size: 13px;
  26. margin-top: 18rpx;
  27. }
  28. .item-one-right{
  29. align-self: center;
  30. color: #f37b1d;
  31. font-size: 15px;
  32. }
  33. .tracking{
  34. margin-top: 18rpx;
  35. padding: 35rpx 30rpx 40rpx 30rpx;
  36. display: flex;
  37. flex-direction: column;
  38. background: #ffffff;
  39. }
  40. .tracking-one{
  41. display: flex;
  42. flex-direction: row;
  43. color: #999999;
  44. font-size: 15px;
  45. align-items: center;
  46. margin-bottom: 25rpx;
  47. }
  48. .tracking-one-icon{
  49. width: 6rpx;
  50. height: 100%;
  51. padding: 14rpx 0;
  52. background: #f37b1d;
  53. margin-right: 15rpx;
  54. }
  55. .line{
  56. width: 100%;
  57. height: 3rpx;
  58. background: gainsboro;
  59. margin: 15rpx 0;
  60. }
  61. .tracking-item{
  62. display: flex;
  63. flex-direction: column;
  64. font-size: 14px;
  65. margin-top: 35rpx;
  66. }
  67. .tracking-item-tittle{
  68. display: flex;
  69. flex-direction: row;
  70. align-items: center;
  71. }
  72. .tracking-item-tittle-icon{
  73. background: #f37b1d;
  74. border-radius: 50%;
  75. height: 16rpx;
  76. width: 16rpx;
  77. border: 3rpx solid #FFEBE0;
  78. }
  79. .tracking-item-tittle-word{
  80. margin-left: 15rpx;
  81. color: #f37b1d;
  82. }
  83. .tracking-item-content{
  84. margin-top: 8rpx;
  85. }