personorder.wxss 2.8 KB

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