index.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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: 2.5px 15px;
  46. text {
  47. color: #333;
  48. font-size: 13px;
  49. width: 100%;
  50. }
  51. }
  52. &__row {
  53. text {
  54. text-align: left;
  55. }
  56. }
  57. &__top {
  58. margin-top: 10px;
  59. text {
  60. text-align: center;
  61. }
  62. :nth-child(1) {
  63. text-align: left;
  64. }
  65. :nth-last-child(1) {
  66. text-align: right;
  67. }
  68. }
  69. }
  70. }
  71. }