index.module.less 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .mineOrchestra {
  2. padding-top: 12px;
  3. box-sizing: border-box;
  4. }
  5. .select {
  6. height: 45px;
  7. .icon {
  8. width: 17px;
  9. height: 17px;
  10. margin-right: 4px;
  11. flex-shrink: 0;
  12. }
  13. :global {
  14. .van-cell__title {
  15. overflow: hidden;
  16. white-space: nowrap;
  17. text-overflow: ellipsis;
  18. }
  19. .van-cell__right-icon {
  20. color: #333;
  21. transform: rotate(90deg);
  22. margin: 0 0 0 4px;
  23. }
  24. }
  25. }
  26. .tabs {
  27. --van-tab-active-text-color: var(--van-primary-color);
  28. :global {
  29. .van-tab {
  30. font-size: 15px;
  31. color: #333;
  32. }
  33. .van-tab--active {
  34. color: var(--van-primary-color);
  35. }
  36. .van-tabs__line {
  37. bottom: 20px;
  38. }
  39. }
  40. }
  41. .content {
  42. height: calc(
  43. 100vh - 57px - var(--van-tabs-line-height) - var(--header-height) - var(--footer-height)
  44. );
  45. overflow: hidden;
  46. overflow-y: auto;
  47. }