| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .mineOrchestra {
- padding-top: 12px;
- }
- .select {
- height: 45px;
- .icon {
- width: 17px;
- height: 17px;
- margin-right: 4px;
- flex-shrink: 0;
- }
- :global {
- .van-cell__title {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .van-cell__right-icon {
- color: #333;
- transform: rotate(90deg);
- margin: 0 0 0 4px;
- }
- }
- }
- .tabs {
- --van-tab-active-text-color: var(--van-primary-color);
- :global {
- .van-tab {
- font-size: 15px;
- color: #333;
- }
- .van-tab--active {
- color: var(--van-primary-color);
- }
- .van-tabs__line {
- bottom: 20px;
- }
- }
- }
- .content {
- height: calc(100vh - 57px - var(--van-tabs-line-height) - var(--header-height));
- overflow: hidden;
- overflow-y: auto;
- }
|