index.less 1.2 KB

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