index.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* mHome/pages/presell/list/index.wxss */
  2. .container {
  3. .tab-view {
  4. display: flex;
  5. flex-direction: column;
  6. .filter-view {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. align-items: center;
  11. align-content: center;
  12. padding: 0px 10px;
  13. border-top: 1px solid #f0f0f0;
  14. van-tabs {
  15. width: 100%;
  16. }
  17. }
  18. }
  19. &__list {
  20. margin-top: 5px;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. background-color: #f0f0f0;
  25. width: 100%;
  26. align-content: center;
  27. align-items: center;
  28. padding: 5px 0px;
  29. &__item {
  30. display: flex;
  31. flex-direction: column;
  32. justify-content: center;
  33. background-color: #fff;
  34. margin-bottom: 10px;
  35. width: 96%;
  36. border-radius: 10px;
  37. margin: 5px 0px;
  38. padding-bottom: 10px;
  39. &__top, &__row {
  40. display: flex;
  41. flex-direction: row;
  42. justify-content: space-between;
  43. align-items: center;
  44. align-content: center;
  45. padding: 5px 15px;
  46. text {
  47. text-align: left;
  48. color: #333;
  49. font-size: 14px;
  50. width: 100%;
  51. }
  52. }
  53. }
  54. }
  55. }