| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .skeleton {
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- padding: 20px 30px;
- background-color: #fff;
- z-index: 10;
- --van-skeleton-paragraph-height: .8rem;
- }
- .detail {
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- --header-height: 62px;
- background: var(--container-background);
- .headHeight {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: var(--header-height);
- transition: margin .3s;
- z-index: 10;
- &.headHide{
- margin-top: calc(0Px - var(--header-height));
- }
- }
- .container {
- position: relative;
- height: 100vh;
- margin: 0 10px;
- border-radius: 10px;
- padding-top: var(--header-height);
- overflow-x: hidden;
- overflow-y: auto;
- &::-webkit-scrollbar {
- width: 0;
- display: none;
- }
- :global{
- #musicAndSelection{
- overflow: auto;
- height: initial;
- max-height: initial;
- }
- }
- }
- }
- .plugins {
- display: none;
- }
- :global {
- #cursorImg-0 {
- min-height: 58PX;
- content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
- margin-top: -14PX;
- border-radius: 4Px;
- background-color: var(--van-primary-color);
- width: 8Px;
- transform: translateX(8Px);
- opacity: var(--corsor-opacity);
- }
- .eyeProtection{
- #cursorImg-0{
- background-color: rgb(255, 159, 88);
- }
- }
- }
|