index.wxss 2.1 KB

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