personorder.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 .pay-text {
  45. position: absolute;
  46. top: -18rpx;
  47. left: 20rpx;
  48. color: #BA9D6E;
  49. font-size: 14px;
  50. }
  51. .container .orders .orderinfo .order-item .order-img {
  52. width: 210rpx;
  53. height: 200rpx;
  54. margin: 55rpx 20rpx 0 20rpx;
  55. }
  56. .container .orders .orderinfo .order-item .order-img image {
  57. width: 210rpx;
  58. height: 200rpx;
  59. }
  60. .container .orders .orderinfo .order-item .order-desc {
  61. flex: 1;
  62. margin: 15rpx 15rpx;
  63. }
  64. .container .orders .orderinfo .order-item .order-desc .order-id {
  65. height: 40rpx;
  66. line-height: 40rpx;
  67. text-align: right;
  68. }
  69. .container .orders .orderinfo .order-item .order-desc .order-title {
  70. height: 40rpx;
  71. line-height: 40rpx;
  72. }
  73. .container .orders .orderinfo .order-item .order-desc .order-price {
  74. height: 100rpx;
  75. line-height: 100rpx;
  76. }
  77. .container .orders .orderinfo .order-item .order-desc .order-date {
  78. height: 34rpx;
  79. line-height: 30rpx;
  80. margin-bottom: 10rpx;
  81. position: relative;
  82. padding-left: 40rpx;
  83. }
  84. .container .orders .orderinfo .order-item .order-desc .order-shop-address {
  85. height: 30rpx;
  86. line-height: 30rpx;
  87. display: flex;
  88. justify-content: space-between;
  89. position: relative;
  90. padding-left: 35rpx;
  91. }
  92. .container .orders .orderinfo .operate-btn {
  93. display: flex;
  94. justify-content: flex-end;
  95. }
  96. .container .orders .orderinfo .operate-btn .btn {
  97. width: 150rpx;
  98. height: 60rpx;
  99. line-height: 60rpx;
  100. text-align: center;
  101. margin: 20rpx 25rpx;
  102. border-radius: 10rpx;
  103. }
  104. .container .orders .orderinfo .operate-btn .buy-again {
  105. border: 1rpx solid #c7c7c7;
  106. }
  107. .container .orders .orderinfo .operate-btn .comment,
  108. .container .orders .orderinfo .operate-btn .pay {
  109. background-color: #BA9D6E;
  110. color: #fff;
  111. }
  112. .icon {
  113. position: absolute;
  114. top: -3rpx;
  115. left: 0;
  116. }