personorder.scss 3.4 KB

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