index.module.less 810 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .homeStatistics {
  2. min-height: 100vh;
  3. // background: #F6F7F8;
  4. background: linear-gradient(to bottom, #beffe6 0px, #f6f7f8 595px);
  5. // background: linear-gradient(90deg, #FE4083 0%, #FEC3D4 100%);
  6. }
  7. .tabs {
  8. :global {
  9. .van-tabs__nav {
  10. background-color: transparent;
  11. padding-bottom: 12px;
  12. }
  13. .van-tab {
  14. font-size: 16px;
  15. color: #666;
  16. }
  17. .van-tab--active {
  18. font-weight: 600;
  19. color: #333333;
  20. }
  21. .van-tabs__line {
  22. width: 16px;
  23. height: 4px;
  24. background: #2dc7aa;
  25. border-radius: 2px;
  26. }
  27. .van-tabs__content, .van-tab__panel {
  28. height: calc(100vh - var(--van-tabs-line-height) - var(--header-height, 0));
  29. overflow-x: hidden;
  30. overflow-y: auto;
  31. }
  32. .van-tab__panel {
  33. height: 100%;
  34. }
  35. }
  36. }