order.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* order.wxss */
  2. .tab-bar{
  3. background: #fff;
  4. border-bottom: 1rpx solid #e3e3e3;
  5. position: fixed;
  6. top:0;
  7. left: 0;
  8. width: 100%;
  9. z-index: 1000;
  10. }
  11. .tab-bar ~ .order-list{
  12. padding-top: 100rpx;
  13. }
  14. .tab-bar navigator{
  15. display: block;
  16. padding:0 24rpx;
  17. text-align: center;
  18. }
  19. .tab-bar navigator text{
  20. height: 100rpx;
  21. line-height: 100rpx;
  22. display: inline-block;
  23. }
  24. .tab-bar navigator.active text{
  25. color: #EB4851;
  26. border-bottom: 6rpx solid #EB4851;
  27. }
  28. .order-list .order-item{
  29. background: #fff;
  30. padding:32rpx 24rpx;
  31. margin-bottom: 20rpx;
  32. border-bottom: 1rpx solid #e3e3e3;
  33. }
  34. .order-list .order-info{
  35. font-size: 9pt;
  36. color: #888;
  37. }
  38. .goods-item{
  39. background: #fff;
  40. border-bottom: 1rpx solid #e3e3e3;
  41. padding: 32rpx 0;
  42. margin: 20rpx 0;
  43. }
  44. .goods-item:first-child{
  45. border-top: 1rpx solid #eee;
  46. }
  47. .goods-item .goods-pic{
  48. width: 156rpx;
  49. height: 156rpx;
  50. margin-right: 20rpx;
  51. }
  52. .goods-item .goods-name{
  53. margin-bottom:10rpx;
  54. -webkit-line-clamp:2;
  55. display:-webkit-box;
  56. -webkit-box-orient:vertical;
  57. overflow:hidden;
  58. }
  59. .goods-item .attr-list,
  60. .goods-item .num {
  61. font-size: 9pt;
  62. color: #888;
  63. }
  64. .goods-item .attr-list .attr-item{
  65. display: inline-block;
  66. margin-right: 36rpx;
  67. }
  68. .goods-item .attr-list .attr-item:last-child{
  69. margin-right: 0;
  70. }
  71. .goods-item .price{
  72. color: #ff4544;
  73. }
  74. .order-option-btn{
  75. border: 1rpx solid #bbb;
  76. background: #fff;
  77. border-radius: 10rpx;
  78. height: 60rpx;
  79. line-height: 60rpx;
  80. color: inherit;
  81. margin-left: 30rpx;
  82. padding: 0 30rpx;
  83. }
  84. .order-option-btn::after{
  85. display: none;
  86. }
  87. .order-red-btn{
  88. border: 1rpx solid #EB4851;
  89. color: #EB4851;
  90. }
  91. .return-index-btn{
  92. position: fixed;
  93. right: 0;
  94. bottom: 100rpx;
  95. display: inline-block;
  96. background: rgba(157, 157, 157, 0.5);
  97. padding: 10rpx 20rpx;
  98. z-index: 1000;
  99. border-radius: 10rpx 0 0 10rpx;
  100. }
  101. .hide{
  102. display: none;
  103. }
  104. .modal{
  105. position: fixed;
  106. top: 0;
  107. left: 0;
  108. width: 100%;
  109. height: 100%;
  110. background-color: rgba(0, 0, 0, 0.5);
  111. z-index: 9999;
  112. }
  113. .refundImg{
  114. width: 50rpx;
  115. height: 50rpx;
  116. }