personorder.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .container .tab-content {
  2. height: 95rpx;
  3. line-height: 95rpx;
  4. }
  5. .container .weui-tabs .weui-tabs-bar__wrp {
  6. position: relative;
  7. }
  8. .container .weui-tabs .weui-tabs-bar__wrp .weui-tabs-bar__content {
  9. height: 95rpx;
  10. line-height: 92rpx;
  11. white-space: nowrap;
  12. display: flex;
  13. justify-content: space-around;
  14. }
  15. .container .weui-tabs .weui-tabs-bar__wrp .weui-tabs-bar__content .weui-tabs-bar__item {
  16. width: 100rpx;
  17. }
  18. .container .weui-tabs .weui-tabs-bar__wrp .weui-tabs-bar__content .weui-tabs-bar__item .weui-tabs-bar__title {
  19. width: 100rpx;
  20. text-align: center;
  21. border-bottom-width: 6rpx;
  22. }
  23. .container .weui-tabs .weui-tabs-bar__wrp::before {
  24. content: "";
  25. position: absolute;
  26. width: 100%;
  27. height: 1rpx;
  28. background-color: #ECECEC;
  29. bottom: -2rpx;
  30. left: 0;
  31. }
  32. .container .orders {
  33. margin-top: 20rpx;
  34. }
  35. .container .orders .orderinfo {
  36. margin: 0 20rpx 20rpx;
  37. }
  38. .container .orders .orderinfo .order-item {
  39. display: flex;
  40. justify-content: flex-start;
  41. position: relative;
  42. border-bottom: 1px solid #ebeef5;
  43. }
  44. .container .orders .orderinfo .order-item .order-img {
  45. width: 210rpx;
  46. height: 200rpx;
  47. margin: 55rpx 20rpx 0 20rpx;
  48. }
  49. .container .orders .orderinfo .order-item .order-img image {
  50. width: 210rpx;
  51. height: 200rpx;
  52. }
  53. .container .orders .orderinfo .order-item .order-desc {
  54. flex: 1;
  55. margin: 15rpx 15rpx;
  56. }
  57. .container .orders .orderinfo .order-item .order-desc .order-id {
  58. height: 40rpx;
  59. line-height: 40rpx;
  60. text-align: right;
  61. }
  62. .container .orders .orderinfo .order-item .order-desc .order-title {
  63. height: 40rpx;
  64. line-height: 40rpx;
  65. }
  66. .container .orders .orderinfo .order-item .order-desc .order-price {
  67. height: 100rpx;
  68. line-height: 100rpx;
  69. }
  70. .container .orders .orderinfo .order-item .order-desc .order-date {
  71. height: 34rpx;
  72. line-height: 30rpx;
  73. margin-bottom: 10rpx;
  74. position: relative;
  75. padding-left: 40rpx;
  76. }
  77. .container .orders .orderinfo .order-item .order-desc .order-shop-address {
  78. height: 30rpx;
  79. line-height: 30rpx;
  80. display: flex;
  81. justify-content: space-between;
  82. position: relative;
  83. padding-left: 35rpx;
  84. }
  85. .container .orders .orderinfo .operate-btn {
  86. display: flex;
  87. justify-content: flex-end;
  88. }
  89. .container .orders .orderinfo .operate-btn .btn {
  90. width: 150rpx;
  91. height: 60rpx;
  92. line-height: 60rpx;
  93. text-align: center;
  94. margin: 20rpx 25rpx;
  95. border-radius: 10rpx;
  96. }
  97. .container .orders .orderinfo .operate-btn .buy-again {
  98. border: 1rpx solid #c7c7c7;
  99. }
  100. .container .orders .orderinfo .operate-btn .comment,
  101. .container .orders .orderinfo .operate-btn .pay {
  102. background-color: #DF3361;
  103. color: #fff;
  104. }
  105. .icon {
  106. position: absolute;
  107. top: -3rpx;
  108. left: 0;
  109. }