index.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. text {
  59. text-align: center;
  60. }
  61. :nth-child(1) {
  62. text-align: left;
  63. }
  64. :nth-last-child(1) {
  65. text-align: right;
  66. }
  67. }
  68. }
  69. }
  70. }