index.module.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. .musicDetail {
  2. .musicContainer {
  3. position: relative;
  4. height: 300px;
  5. overflow: hidden;
  6. background-color: #fff;
  7. &::before {
  8. pointer-events: none;
  9. content: ' ';
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. display: block;
  15. height: 38px;
  16. background: linear-gradient(180deg, #e3f4fa 0%, #ffffff 100%);
  17. }
  18. }
  19. .container {
  20. position: relative;
  21. height: 300px;
  22. display: flex;
  23. flex-direction: column;
  24. &.downContainer {
  25. display: block;
  26. height: auto;
  27. min-height: 300px;
  28. position: absolute;
  29. top: 0;
  30. z-index: -1;
  31. }
  32. .iframeSection {
  33. flex: 1 auto;
  34. height: 100%;
  35. iframe {
  36. height: 100%;
  37. }
  38. }
  39. .imgSection {
  40. flex: 1 auto;
  41. overflow-x: hidden;
  42. overflow-y: auto;
  43. height: 100%;
  44. padding: 0 18px;
  45. }
  46. .right-musicName {
  47. position: relative;
  48. text-align: center;
  49. padding: 20px 0;
  50. width: 185px;
  51. margin: 0 auto;
  52. .name {
  53. width: 185px;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. white-space: nowrap;
  57. font-weight: 600;
  58. font-size: 18px;
  59. color: #131415;
  60. line-height: 25px;
  61. }
  62. &.isScroll {
  63. text-align: left;
  64. :global {
  65. .van-notice-bar__wrap {
  66. justify-content: normal !important;
  67. }
  68. }
  69. }
  70. }
  71. .downloadMusicName {
  72. width: 95%;
  73. .name {
  74. width: 100%;
  75. }
  76. }
  77. .noticeBar {
  78. padding: 0;
  79. height: 28px;
  80. font-weight: 600;
  81. font-size: 18px;
  82. color: #131415;
  83. line-height: 25px;
  84. :global {
  85. .van-notice-bar__wrap {
  86. justify-content: center;
  87. }
  88. }
  89. }
  90. .staff {
  91. width: 100%;
  92. }
  93. }
  94. }
  95. .btnGroup {
  96. display: flex;
  97. align-items: center;
  98. justify-content: space-between;
  99. padding: 20px 20px 34px;
  100. border-top: 1px solid #f2f2f2;
  101. background-color: #fff;
  102. .item {
  103. margin-right: 20px;
  104. text-align: center;
  105. .icon {
  106. width: 28px;
  107. height: 28px;
  108. display: block;
  109. margin-bottom: 2px;
  110. }
  111. font-size: 12px;
  112. color: #777777;
  113. }
  114. .operation {
  115. display: flex;
  116. align-items: center;
  117. }
  118. .goBtn {
  119. margin-left: 12px;
  120. background: linear-gradient(90deg, #44c9ff 0%, #259cfe 100%);
  121. font-weight: 500;
  122. font-size: 18px;
  123. color: #ffffff;
  124. line-height: 25px;
  125. flex: 1 auto;
  126. border: none;
  127. &::after {
  128. display: none;
  129. }
  130. }
  131. }