serviceOrderDetail.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .container {
  2. padding: 20rpx;
  3. min-height: 100vh;
  4. }
  5. /* 日期范围选择器 */
  6. .date-range-picker {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. background: #fff;
  11. padding: 20rpx;
  12. margin-bottom: 20rpx;
  13. }
  14. /* 日期项 */
  15. .date-item {
  16. flex: 1;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. /* 日期标签 */
  22. .date-label {
  23. color: #999;
  24. font-size: 28rpx;
  25. margin-bottom: 10rpx;
  26. }
  27. /* 日期值 */
  28. .date-value {
  29. color: #333;
  30. font-size: 28rpx;
  31. font-weight: 500;
  32. }
  33. .order-info {
  34. padding: 20rpx 20rpx;
  35. background: #fff;
  36. margin-bottom: 10rpx;
  37. }
  38. .info-item {
  39. margin-bottom: 20rpx;
  40. }
  41. .info-item > text {
  42. font-size: 32rpx !important;
  43. }
  44. .service-record {
  45. background: #fff;
  46. }
  47. .section-title {
  48. color: #333 !important;
  49. font-size: 32rpx;
  50. font-weight: bold;
  51. padding: 20rpx;
  52. border-bottom: 1px solid #eee;
  53. }
  54. .service-order {
  55. background: #fff;
  56. margin-bottom: 20rpx;
  57. }
  58. .record-header {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. padding-right: 20rpx;
  63. border-bottom: 1px solid #eee;
  64. }
  65. .history-btn {
  66. color: #3963bc;
  67. font-size: 28rpx;
  68. }
  69. .record-content {
  70. padding: 20rpx;
  71. background-color: #fff;
  72. margin-bottom: 20rpx;
  73. }
  74. .product-item {
  75. margin-bottom: 10rpx;
  76. }
  77. .product-label {
  78. display: inline-block;
  79. width: 180rpx;
  80. font-size: 28rpx;
  81. }
  82. .product-name,
  83. .product-value {
  84. color: #333;
  85. }
  86. .table {
  87. background-color: #f2f2f2;
  88. display: flex;
  89. flex-direction: column;
  90. box-sizing: border-box;
  91. padding: 10rpx 20rpx;
  92. }
  93. .table_box {
  94. background-color: #fff;
  95. display: inline-block;
  96. border-radius: 10rpx;
  97. width: 96%;
  98. margin-bottom: 20rpx;
  99. padding: 20rpx;
  100. position: relative;
  101. }