index.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .skeleton {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. padding: 20px 30px;
  8. background-color: #fff;
  9. z-index: 10;
  10. --van-skeleton-paragraph-height: .8rem;
  11. }
  12. .detail {
  13. width: 100vw;
  14. height: 100vh;
  15. overflow: hidden;
  16. --header-height: 62px;
  17. background: var(--container-background);
  18. .headHeight {
  19. position: fixed;
  20. left: 0;
  21. top: 0;
  22. width: 100%;
  23. height: var(--header-height);
  24. transition: margin .3s;
  25. z-index: 10;
  26. &.headHide{
  27. margin-top: calc(0Px - var(--header-height));
  28. }
  29. }
  30. .container {
  31. position: relative;
  32. height: 100vh;
  33. margin: 0 10px;
  34. border-radius: 10px;
  35. padding-top: var(--header-height);
  36. overflow-x: hidden;
  37. overflow-y: auto;
  38. &::-webkit-scrollbar {
  39. width: 0;
  40. display: none;
  41. }
  42. :global{
  43. #musicAndSelection{
  44. overflow: auto;
  45. height: initial;
  46. max-height: initial;
  47. }
  48. }
  49. }
  50. }
  51. .plugins {
  52. display: none;
  53. }
  54. :global {
  55. #cursorImg-0 {
  56. min-height: 58PX;
  57. content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  58. margin-top: -14PX;
  59. border-radius: 4Px;
  60. background-color: var(--van-primary-color);
  61. width: 8Px;
  62. transform: translateX(8Px);
  63. opacity: var(--corsor-opacity);
  64. }
  65. .eyeProtection{
  66. #cursorImg-0{
  67. background-color: rgb(255, 159, 88);
  68. }
  69. }
  70. }