12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- @media (max-width: 1425px) {
- .menuList {
- font-size: 13px;
- }
- .menuList>div {
- width: 85px !important;
- }
- }
- @media (max-width: 1480px) {
- .menuList {
- margin-left: 120px;
- }
- }
- .vipBox {
- .avatar {
- border: 1px solid #b29701;
- &:hover {
- border: 2px solid var(--v-primary-base);
- }
- }
- .userName {
- font-family: 'MiSans-Bold';
- background: -webkit-linear-gradient(45deg, #333, #b29701);
- background: linear-gradient(45deg, #333, #b29701);
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- // text-fill-color: transparent;
- }
- }
- .banner {
- width: 100%;
- height: 50px;
- z-index: var(--zIndex-nav) !important;
- color: #333;
- background-color: #fff;
- border-bottom: 1px solid #e8e6e6;
- padding-left: 0px;
- font-size: 15px;
- }
- .innerBox {
- position: relative;
- width: 100vw;
- min-width: 1180px;
- margin: 0 auto;
- align-items: center;
- height: 50px;
- line-height: 50px;
- }
- .nav-logo {
- position: absolute;
- left: 20px;
- margin-bottom: 1px;
- cursor: pointer;
- }
- .active-route {
- color: #00B760;
- font-weight: 700;
- border-bottom: 4px solid #00B760;
- background-color: #e5f8ef;
- height: 50px;
- }
- .menuList {
- display: flex;
- align-items: center;
- height: 50px;
- div {
- width: 110px;
- text-align: center;
- }
- }
- .menuList-first-title:hover {
- color: #00B760;
- font-weight: 700;
- }
- :deep(.v-toolbar__content) {
- height: 50px !important;
- }
- :deep(.v-chip.v-chip--size-small) {
- height: 30px !important;
- }
|