personorder.scss 3.2 KB

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