order.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. page {
  2. height: 100%;
  3. width: 100%;
  4. background: #f4f4f4;
  5. }
  6. .orders {
  7. height: auto;
  8. width: 100%;
  9. overflow: hidden;
  10. }
  11. .add_time{
  12. font-size: 0.9em;
  13. color: #9b9b9b;
  14. padding-left: 80rpx;
  15. }
  16. .order-details-cell{
  17. display: flex;
  18. padding: 20rpx 30rpx;
  19. padding-right: 0;
  20. }
  21. .order-details-cell text{
  22. font-size: .9em;
  23. color: #9b9b9b;
  24. }
  25. .order-details-cell .name{
  26. flex: 1;
  27. }
  28. .order-details-cell .num{
  29. margin-left: auto;
  30. width: 50rpx;
  31. text-align: right;
  32. }
  33. .order-details-cell .price{
  34. font-size: 1.1em;
  35. color: #000;
  36. }
  37. .order-image-hd{
  38. align-self: flex-start;
  39. }
  40. .order-image{
  41. width: 146rpx;
  42. height:146rpx;
  43. }
  44. .btn-box{
  45. margin-left: auto;
  46. }
  47. .btn-box .btn{
  48. border: 1px solid #FE7200;
  49. color: #FE7200;
  50. border-radius: 30rpx;
  51. font-size: 1em;
  52. display: inline-block;
  53. margin-left: 20rpx;
  54. line-height: 1.6;
  55. padding: 10rpx 20rpx;
  56. background-color: #fff;
  57. }
  58. .tab-bar{
  59. height: 8vh;
  60. display: flex;
  61. line-height: 8vh;
  62. background-color: #fff;
  63. }
  64. .tab-bar .tab-bar-item{
  65. flex: 1;
  66. text-align: center;
  67. color: #555;
  68. font-size: 30rpx;
  69. }
  70. .tab-bar .tab-bar-item.active{
  71. color: #FF5778;
  72. border-bottom: 1px solid #FF5778;
  73. }