index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. @import '/app.wxss';
  2. /**头部**/
  3. .pos-order-list .nav {
  4. width: 100%;
  5. height: 96rpx;
  6. background-color: #fff;
  7. font-size: 30rpx;
  8. color: #282828;
  9. position: fixed;
  10. left: 0;
  11. }
  12. .pos-order-list .nav .active {
  13. color: #2291f8;
  14. }
  15. .pos-order-list .list {
  16. margin-top: 109rpx;
  17. }
  18. .pos-order-list .list .item {
  19. background-color: #fff;
  20. width: 100%;
  21. }
  22. .pos-order-list .list .item~.item {
  23. margin-top: 18rpx;
  24. }
  25. .pos-order-list .list .item .order-num {
  26. height: 124rpx;
  27. border-bottom: 1px solid #eee;
  28. font-size: 30rpx;
  29. font-weight: bold;
  30. color: #282828;
  31. padding: 0 30rpx;
  32. box-sizing: border-box;
  33. }
  34. .pos-order-list .list .item .order-num .time {
  35. font-size: 26rpx;
  36. font-weight: normal;
  37. color: #999;
  38. margin-top: -40rpx;
  39. }
  40. .pos-order-list .list .item .operation {
  41. padding: 20rpx 30rpx;
  42. margin-top: 3rpx;
  43. box-sizing: border-box;
  44. }
  45. .pos-order-list .list .item .operation .more {
  46. position: relative;
  47. }
  48. .pos-order-list .list .item .operation .icon-gengduo {
  49. font-size: 50rpx;
  50. color: #aaa;
  51. }
  52. .pos-order-list .list .item .operation .order .arrow {
  53. width: 0;
  54. height: 0;
  55. border-left: 11rpx solid transparent;
  56. border-right: 11rpx solid transparent;
  57. border-top: 20rpx solid #e5e5e5;
  58. position: absolute;
  59. left: 15rpx;
  60. bottom: -18rpx;
  61. }
  62. .pos-order-list .list .item .operation .order .arrow:before {
  63. content: '';
  64. width: 0;
  65. height: 0;
  66. border-left: 7rpx solid transparent;
  67. border-right: 7rpx solid transparent;
  68. border-top: 20rpx solid #fff;
  69. position: absolute;
  70. left: -7rpx;
  71. bottom: 0;
  72. }
  73. .pos-order-list .list .item .operation .order {
  74. width: 200rpx;
  75. background-color: #fff;
  76. border: 1px solid #eee;
  77. border-radius: 10rpx;
  78. position: absolute;
  79. top: -100rpx;
  80. z-index: 9;
  81. }
  82. .pos-order-list .list .item .operation .order .items {
  83. height: 77rpx;
  84. line-height: 77rpx;
  85. text-align: center;
  86. }
  87. .pos-order-list .list .item .operation .order .items~.items {
  88. border-top: 1px solid #f5f5f5;
  89. }
  90. .pos-order-list .list .item .operation .bnt {
  91. font-size: 28rpx;
  92. color: #5c5c5c;
  93. width: 170rpx;
  94. height: 60rpx;
  95. border-radius: 30rpx;
  96. border: 1px solid #bbb;
  97. text-align: center;
  98. line-height: 60rpx;
  99. }
  100. .pos-order-list .list .item .operation .bnt~.bnt {
  101. margin-left: 14rpx;
  102. }