orders.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .bg {
  2. position: relative;
  3. width: 100%;
  4. min-height: 100%;
  5. background-color: #f3f3f3;
  6. }
  7. .orders-tabs {
  8. position: fixed;
  9. top: -1rpx;
  10. left: 0rpx;
  11. width: 100%;
  12. height: 91rpx;
  13. background-color: #fff;
  14. border-bottom: 1rpx solid #dddddd;
  15. z-index: 99999;
  16. }
  17. .orders-tab {
  18. width: 20%;
  19. height: 90rpx;
  20. float: left;
  21. line-height: 90rpx;
  22. text-align: center;
  23. font-size: 28rpx;
  24. color: #4c4c4c;
  25. }
  26. .orders-tab__border {
  27. position: absolute;
  28. width: 20%;
  29. height: 4rpx;
  30. bottom: 0;
  31. background-color: #eab86a;
  32. transition: left 0.4s;
  33. -webkit-transition: left 0.4s;
  34. }
  35. .orders-main {
  36. padding-top: 110rpx;
  37. }
  38. .order {
  39. padding: 0 20rpx;
  40. background-color: #fff;
  41. margin-bottom: 20rpx;
  42. }
  43. .order-title {
  44. height: 90rpx;
  45. line-height: 90rpx;
  46. font-size: 28rpx;
  47. }
  48. .order-title__left {
  49. color: #999999;
  50. float: left;
  51. }
  52. .order-title__right {
  53. color: #eab86a;
  54. float: right;
  55. }
  56. .order-main {
  57. width: 710rpx;
  58. height: 200rpx;
  59. background-color: #fcfcfc;
  60. margin-bottom:5px;
  61. }
  62. .order-main__left {
  63. width: 200rpx;
  64. height: 200rpx;
  65. display: block;
  66. float: left;
  67. }
  68. .order-main__right {
  69. position: relative;
  70. width: 490rpx;
  71. height: 200rpx;
  72. float: right;
  73. }
  74. .order-info__title {
  75. color: #4c4c4c;
  76. font-size: 24rpx;
  77. line-height: 36rpx;
  78. padding-top: 5rpx;
  79. height: 72rpx;
  80. -webkit-line-clamp: 2;
  81. }
  82. .order-info__type {
  83. padding-top: 12rpx;
  84. font-size: 24rpx;
  85. color: #bbbbbb;
  86. }
  87. .order-info__price {
  88. position: absolute;
  89. bottom: 16rpx;
  90. left: 0;
  91. font-size: 24rpx;
  92. color: #eab86a;
  93. }
  94. .order-info__point {
  95. color: #bbbbbb;
  96. }
  97. .order-info__count {
  98. /* position: absolute; */
  99. bottom: 16rpx;
  100. right: 0;
  101. font-size: 24rpx;
  102. color: #bbbbbb;
  103. }
  104. .order-allprice {
  105. width: 100%;
  106. padding-top: 20rpx;
  107. height: 70rpx;
  108. line-height: 70rpx;
  109. text-align: right;
  110. color: #4c4c4c;
  111. font-size: 24rpx;
  112. border-bottom: 1rpx solid #eeeeee;
  113. }
  114. .order-btn {
  115. height: 108rpx;
  116. }
  117. .order-btn__black {
  118. float: right;
  119. width: 158rpx;
  120. height: 58rpx;
  121. border: 1rpx solid #cccccc;
  122. font-size: 28rpx;
  123. color: #4c4c4c;
  124. text-align: center;
  125. line-height: 58rpx;
  126. margin-top: 20rpx;
  127. margin-left: 20rpx;
  128. border-radius: 5rpx;
  129. }
  130. .order-btn__red {
  131. float: right;
  132. width: 158rpx;
  133. height: 58rpx;
  134. border: 1rpx solid #eab86a;
  135. font-size: 28rpx;
  136. color: #eab86a;
  137. text-align: center;
  138. line-height: 58rpx;
  139. margin-top: 20rpx;
  140. margin-left: 20rpx;
  141. border-radius: 5rpx;
  142. }
  143. .orders-no {
  144. padding-top: 250rpx;
  145. }
  146. .orders-no__icon {
  147. display: block;
  148. width: 204rpx;
  149. height: 258rpx;
  150. margin: 0 auto;
  151. }
  152. .orders-no__text {
  153. text-align: center;
  154. font-size: 28rpx;
  155. margin-top: 25rpx;
  156. color: #cccccc;
  157. }