index.module.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .liveClass {
  2. :global {
  3. .el-tabs__item {
  4. font-size: 18px;
  5. font-weight: 600;
  6. color: #999;
  7. height: 56px;
  8. line-height: 56px;
  9. padding-right: 40px;
  10. padding-left: 0;
  11. &.is-active {
  12. font-size: 20px;
  13. color: #000;
  14. }
  15. }
  16. .el-tabs__nav-wrap::after {
  17. height: 1px;
  18. background: #eeeeee;
  19. }
  20. .el-tabs__active-bar {
  21. height: 4px;
  22. }
  23. }
  24. .badge {
  25. display: inline;
  26. :global {
  27. .el-badge__content.is-fixed {
  28. top: -2px;
  29. right: 0;
  30. }
  31. }
  32. }
  33. }
  34. .itemWrap {
  35. --music-list-item-background-color: #fff;
  36. --music-list-item-title-color: #333;
  37. --music-list-item-desc-color: #333;
  38. --music-list-item-mate-color: #6a6a6a;
  39. --music-list-item-border-color: #f1f1f1;
  40. --music-list-item-vip-bg: #fff1cd;
  41. --music-list-item-vip-color: #ff6c00;
  42. --music-list-item-free-bg: #fff1e7;
  43. --music-list-item-free-color: #ff4700;
  44. --music-list-item-charge-bg: #e1f0ff;
  45. --music-list-item-charge-color: #0086ff;
  46. // background: #ffffff;
  47. border-radius: 12px;
  48. display: flex;
  49. flex-direction: row;
  50. justify-content: space-between;
  51. width: 100%;
  52. border-radius: 12px;
  53. margin-bottom: 10px;
  54. padding: 10px 0;
  55. cursor: pointer;
  56. .left {
  57. display: flex;
  58. flex-direction: row;
  59. align-items: center;
  60. .imgWrap {
  61. width: 88px;
  62. height: 88px;
  63. margin-right: 20px;
  64. }
  65. .textWrap {
  66. p {
  67. font-weight: 600;
  68. color: #000;
  69. line-height: 22px;
  70. font-size: 18px;
  71. margin-bottom: 7px;
  72. display: flex;
  73. }
  74. .authorInfo {
  75. display: flex;
  76. flex-direction: row;
  77. align-items: center;
  78. span {
  79. font-weight: 400;
  80. color: #999;
  81. font-size: 16px;
  82. }
  83. .icon {
  84. width: 18px;
  85. height: 18px;
  86. border-radius: 27px;
  87. margin-right: 6px;
  88. object-fit: cover;
  89. }
  90. .authorName {
  91. color: #333;
  92. font-size: 12px;
  93. margin-right: 8px;
  94. }
  95. }
  96. }
  97. }
  98. .tagList {
  99. display: flex;
  100. flex-direction: row;
  101. align-items: center;
  102. margin-top: 10px;
  103. .tag {
  104. background-color: #bcfdf1;
  105. color: #00886d;
  106. padding: 5px 16px;
  107. font-size: 12px;
  108. margin-right: 5px;
  109. border-radius: 20px;
  110. }
  111. }
  112. .right {
  113. display: flex;
  114. flex-direction: row;
  115. align-items: center;
  116. cursor: pointer;
  117. .arrow {
  118. width: 20px;
  119. height: 20px;
  120. margin-left: 12px;
  121. }
  122. }
  123. .touchButton {
  124. width: 48px;
  125. height: 22px;
  126. background: #e1f0ff;
  127. border-radius: 10px 0px 10px 0px;
  128. line-height: 22px;
  129. color: #fff;
  130. text-align: center;
  131. font-size: 14px;
  132. margin-left: 6px;
  133. &.vip {
  134. background-color: #c8a430;
  135. color: #fff;
  136. }
  137. &.free {
  138. background-color: #4ca751;
  139. color: #fff;
  140. }
  141. &.charge {
  142. background-color: #3f90d6;
  143. color: #fff;
  144. }
  145. }
  146. }