orderDetail.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. page {
  2. width: 100%;
  3. background: #eee;
  4. }
  5. .box {
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. padding-bottom: 30rpx;
  11. }
  12. .box map {
  13. width: 100%;
  14. height: 490rpx;
  15. margin-bottom: 24rpx;
  16. }
  17. .box .list1 {
  18. height: 159rpx;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. }
  23. .discounts {
  24. /* height: 104rpx; */
  25. margin-top: 10rpx;
  26. padding: 15rpx 0 15rpx 30rpx;
  27. /* display: flex;
  28. align-items: center; */
  29. }
  30. /* .discounts>view {
  31. margin-top: 10rpx;
  32. width: 50%;
  33. } */
  34. .user {
  35. display: flex;
  36. align-items: center;
  37. margin-top: 10rpx;
  38. }
  39. .list1 {
  40. padding: 0 0 15rpx 30rpx;
  41. }
  42. .discounts,
  43. .list1 {
  44. width: 690rpx;
  45. background: rgba(255, 255, 255, 1);
  46. box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
  47. border-radius: 10rpx;
  48. font-size: 26rpx;
  49. color: rgba(77, 77, 77, 1);
  50. opacity: 0.8;
  51. box-sizing: border-box;
  52. }
  53. .box .list2 {
  54. width: 690rpx;
  55. height: 88rpx;
  56. background: rgba(255, 255, 255, 1);
  57. box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
  58. border-radius: 10rpx;
  59. margin-top: 10rpx;
  60. display: flex;
  61. align-items: center;
  62. font-size: 26rpx;
  63. color: rgba(77, 77, 77, 1);
  64. }
  65. .box .list2 view {
  66. padding-left: 30rpx;
  67. }
  68. .order {
  69. display: flex;
  70. flex-direction: column;
  71. width: 50%;
  72. }
  73. .order text {
  74. margin-top: 10rpx;
  75. }
  76. .table {
  77. margin-top: 10rpx;
  78. }
  79. .tr {
  80. padding: 5rpx 0;
  81. }
  82. .tr,
  83. .noOperate {
  84. background: #fff;
  85. display: flex;
  86. width: 690rpx;
  87. align-items: center;
  88. border-bottom: 1rpx solid #EBEEF5;
  89. }
  90. .tr:first-child {
  91. border-top-left-radius: 10rpx;
  92. border-top-right-radius: 10rpx;
  93. }
  94. .tr:last-child {
  95. border-bottom-left-radius: 10rpx;
  96. border-bottom-right-radius: 10rpx;
  97. }
  98. .time {
  99. width: 42%;
  100. text-align: center;
  101. border-right: 1rpx solid #EBEEF5;
  102. height: 100%;
  103. }
  104. .operate {
  105. width: 58%;
  106. line-height: 1.5;
  107. }
  108. .time,
  109. .operate {
  110. font-size: 24rpx;
  111. display: flex;
  112. justify-content: center;
  113. align-items: center;
  114. flex-wrap: wrap;
  115. padding: 13rpx 0;
  116. }
  117. .th {
  118. width: 50%;
  119. text-align: center;
  120. font-size: 28rpx;
  121. }
  122. .noOperate {
  123. font-size: 26rpx;
  124. height: 66rpx;
  125. }