navBar.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @media (max-width: 1425px) {
  2. .menuList {
  3. font-size: 13px;
  4. }
  5. .menuList>div {
  6. width: 85px !important;
  7. }
  8. }
  9. @media (max-width: 1480px) {
  10. .menuList {
  11. margin-left: 120px;
  12. }
  13. }
  14. .vipBox {
  15. .avatar {
  16. border: 1px solid #b29701;
  17. &:hover {
  18. border: 2px solid var(--v-primary-base);
  19. }
  20. }
  21. .userName {
  22. font-family: 'MiSans-Bold';
  23. background: -webkit-linear-gradient(45deg, #333, #b29701);
  24. background: linear-gradient(45deg, #333, #b29701);
  25. -webkit-background-clip: text;
  26. background-clip: text;
  27. -webkit-text-fill-color: transparent;
  28. // text-fill-color: transparent;
  29. }
  30. }
  31. .banner {
  32. width: 100%;
  33. height: 50px;
  34. z-index: var(--zIndex-nav) !important;
  35. color: #333;
  36. background-color: #fff;
  37. border-bottom: 1px solid #e8e6e6;
  38. padding-left: 0px;
  39. font-size: 15px;
  40. }
  41. .innerBox {
  42. position: relative;
  43. width: 100vw;
  44. min-width: 1180px;
  45. margin: 0 auto;
  46. align-items: center;
  47. height: 50px;
  48. line-height: 50px;
  49. }
  50. .nav-logo {
  51. position: absolute;
  52. left: 20px;
  53. margin-bottom: 1px;
  54. cursor: pointer;
  55. }
  56. .active-route {
  57. color: #00B760;
  58. font-weight: 700;
  59. border-bottom: 4px solid #00B760;
  60. background-color: #e5f8ef;
  61. height: 50px;
  62. }
  63. .menuList {
  64. display: flex;
  65. align-items: center;
  66. height: 50px;
  67. div {
  68. width: 110px;
  69. text-align: center;
  70. }
  71. }
  72. .menuList-first-title:hover {
  73. color: #00B760;
  74. font-weight: 700;
  75. }
  76. :deep(.v-toolbar__content) {
  77. height: 50px !important;
  78. }
  79. :deep(.v-chip.v-chip--size-small) {
  80. height: 30px !important;
  81. }