index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .page-wrap {
  2. padding-top: 82.42rpx;
  3. }
  4. .tabs-panel {
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. right: 0;
  9. height: 82.42rpx;
  10. background: #fff;
  11. display: flex;
  12. z-index: 1;
  13. &::before,
  14. &::after {
  15. content: '';
  16. position: absolute;
  17. left: 0;
  18. right: 0;
  19. height: 1rpx;
  20. background: #e0e0e0;
  21. }
  22. &::before {
  23. top: 0;
  24. }
  25. &::after {
  26. bottom: 0;
  27. }
  28. .item {
  29. flex: 1;
  30. text-align: center;
  31. font-size: 27.47rpx;
  32. color: #999;
  33. line-height: 82.42rpx;
  34. position: relative;
  35. & + .item::before {
  36. content: '';
  37. position: absolute;
  38. left: 0;
  39. top: 0;
  40. bottom: 0;
  41. width: 1rpx;
  42. background: #e0e0e0;
  43. }
  44. }
  45. .active {
  46. color: #00bcd2;
  47. &::after {
  48. content: '';
  49. position: absolute;
  50. left: 0%;
  51. right: 0%;
  52. bottom: 0%;
  53. height: 5.49rpx;
  54. background: #00bcd2;
  55. z-index: 1;
  56. }
  57. }
  58. }
  59. .order-panel {
  60. padding: 13.74rpx 0;
  61. .item {
  62. background: #fff;
  63. & + .item {
  64. margin-top: 13.74rpx;
  65. }
  66. }
  67. .head {
  68. display: flex;
  69. align-items: center;
  70. padding: 0 27.47rpx;
  71. height: 82.42rpx;
  72. border-bottom: 1rpx solid #e0e0e0;
  73. .icon {
  74. width: 35.71rpx;
  75. height: 35.71rpx;
  76. }
  77. .business {
  78. margin: 0 13.74rpx;
  79. white-space: nowrap;
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. flex: 1;
  83. font-size: 27.47rpx;
  84. color: #333;
  85. }
  86. .state {
  87. font-size: 27.47rpx;
  88. color: #f97631;
  89. }
  90. }
  91. .content {
  92. position: relative;
  93. height: 206.04rpx;
  94. padding: 27.47rpx 219.78rpx 27.47rpx 27.47rpx;
  95. box-sizing: border-box;
  96. .name {
  97. font-size: 32.97rpx;
  98. white-space: nowrap;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. margin-bottom: 10.99rpx;
  102. }
  103. .text {
  104. font-size: 27.47rpx;
  105. color: #999;
  106. }
  107. .money {
  108. font-size: 27.47rpx;
  109. color: #666;
  110. white-space: nowrap;
  111. position: absolute;
  112. top: 96.15rpx;
  113. right: 27.47rpx;
  114. }
  115. .sub {
  116. position: absolute;
  117. right: 27.47rpx;
  118. top: 54.95rpx;
  119. font-size: 27.47rpx;
  120. color: #666;
  121. }
  122. }
  123. }