index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .container{
  2. width: 100%;
  3. background-color: #F2f2f2;
  4. }
  5. .status-box{
  6. width:100%;
  7. height: 88rpx;
  8. line-height: 88rpx;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. background-color: #fff;
  13. }
  14. .status-box .status-label{
  15. width: 150rpx;
  16. height: 100%;
  17. text-align: center;
  18. font-size:28rpx;
  19. color:#353535;
  20. box-sizing: border-box;
  21. position: relative;
  22. }
  23. .status-box .status-label.active{
  24. color:#e64340;
  25. border-bottom: 6rpx solid #e64340;
  26. }
  27. .no-order{
  28. width: 100%;
  29. position: absolute;
  30. bottom: 0;
  31. top: 88rpx;
  32. left: 0;
  33. right: 0;
  34. text-align: center;
  35. padding-top: 203rpx;
  36. background-color: #F2f2f2;
  37. }
  38. .no-order-img{
  39. width: 81rpx;
  40. height: 96rpx;
  41. margin-bottom: 31rpx;
  42. }
  43. .no-order .text{
  44. font-size:28rpx;
  45. color:#999999;
  46. text-align: center
  47. }
  48. .order-list{
  49. width: 100%;
  50. }
  51. .order-list .a-order{
  52. width: 100%;
  53. background-color: #fff;
  54. margin-top: 20rpx;
  55. }
  56. .a-order .goods-info,
  57. .goods-img-container{
  58. width: 720rpx;
  59. margin-left: 30rpx;
  60. border-top: 1rpx solid #eee;
  61. padding: 30rpx 0;
  62. display: flex;
  63. align-items: center;
  64. }
  65. .goods-price {
  66. font-size:26rpx;
  67. width:720rpx;
  68. text-align: right;
  69. margin-bottom:30rpx;
  70. }
  71. .goods-price .p {
  72. font-size:36rpx;
  73. color:#e64340;
  74. }
  75. .goods-info .img-box{
  76. width: 120rpx;
  77. height: 120rpx;
  78. overflow: hidden;
  79. margin-right: 30rpx;
  80. background-color: #f7f7f7;
  81. }
  82. .goods-info .img-box .goods-img,
  83. .goods-img-container .img-box .goods-img{
  84. width: 120rpx;
  85. height: 120rpx;
  86. }
  87. .goods-info .goods-des{
  88. font-size:26rpx;
  89. color:#000000;
  90. }
  91. .goods-img-container{
  92. height: 180rpx;
  93. box-sizing: border-box;
  94. white-space: nowrap;
  95. }
  96. .goods-img-container .img-box{
  97. width: 120rpx;
  98. height: 120rpx;
  99. overflow: hidden;
  100. margin-right: 20rpx;
  101. background-color: #f7f7f7;
  102. display: inline-block;
  103. }
  104. .price-box{
  105. width: 720rpx;
  106. display: flex;
  107. flex-direction:row-reverse;
  108. padding-bottom: 30rpx;
  109. }
  110. .price-box .btn{
  111. width: 166rpx;
  112. height: 60rpx;
  113. box-sizing: border-box;
  114. text-align: center;
  115. line-height: 60rpx;
  116. border: 1rpx solid #ccc;
  117. border-radius: 6rpx;
  118. margin-left: 20rpx;
  119. font-size:26rpx;
  120. }
  121. .price-box .active{
  122. border:1px solid #e64340;
  123. color: #e64340;
  124. }
  125. .remark {
  126. color:#e64340;
  127. margin-bottom: 20rpx;
  128. }