index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .main {
  2. float: right;
  3. width: 1.98rem;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: flex-end;
  8. background: url('@/assets/menu/right_bg.png') no-repeat center;
  9. background-size: 100% 100%;
  10. }
  11. .menu {
  12. width: 100%;
  13. height: calc(100vh - 1.6rem);
  14. display: flex;
  15. flex-direction: column;
  16. overflow-y: auto;
  17. }
  18. .menuItem {
  19. padding: 0.2rem;
  20. color: #333;
  21. font-size: 0.28rem;
  22. cursor: pointer;
  23. &.active {
  24. color: #4a90e2;
  25. font-weight: bold;
  26. }
  27. }
  28. .icon {
  29. margin: 0.44rem auto 0.1rem;
  30. width: 0.7rem;
  31. height: 0.7rem;
  32. display: block;
  33. }
  34. icon:first-child {
  35. margin-top: 0;
  36. }
  37. .arrowCon {
  38. width: 100%;
  39. height: 1.6rem;
  40. // text-align: center;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .arrow {
  46. width: 0.7rem;
  47. height: 0.7rem;
  48. background: url('@/assets/menu/arrow.png') no-repeat center;
  49. background-size: 100% 100%;
  50. }
  51. .text {
  52. text-align: center;
  53. font-size: 0.28rem;
  54. font-family: Source Han Sans, Source Han Sans;
  55. font-weight: 500;
  56. color: #555555;
  57. }
  58. :global {
  59. #root {
  60. min-height: auto;
  61. }
  62. }