personorder.scss 3.6 KB

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