index.module.less 898 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .container {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. display: flex;
  7. flex-direction: column;
  8. height: 100vh;
  9. }
  10. .content {
  11. flex: 1;
  12. overflow: hidden;
  13. :global {
  14. .van-tabs {
  15. height: 100%;
  16. }
  17. .van-tabs__wrap {
  18. height: 44px;
  19. --van-tab-text-color: #777;
  20. .van-tab {
  21. z-index: 2;
  22. }
  23. .van-tabs__line {
  24. height: 6px;
  25. background: linear-gradient(270deg, rgba(119, 255, 239, 0.59) 0%, #42CDFF 100%);
  26. bottom: 0.73rem;
  27. z-index: 1;
  28. border-radius: 0;
  29. }
  30. }
  31. .van-tabs__content {
  32. height: calc(100% - 44px);
  33. overflow: hidden;
  34. }
  35. .van-tab__panel {
  36. height: 100%;
  37. overflow-x: hidden;
  38. overflow-y: auto;
  39. }
  40. }
  41. }
  42. .wrap {
  43. padding: 12px 0;
  44. :global {
  45. .van-list {
  46. min-height: 82vh;
  47. }
  48. .van-empty {
  49. height: 70vh;
  50. }
  51. }
  52. }