index.module.less 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. background: #FFFFFF;
  5. border-radius: 20px;
  6. min-height: 100%;
  7. }
  8. .tools {
  9. padding: 32px 32px 20px 32px;
  10. display: flex;
  11. align-items: flex-start;
  12. flex-shrink: 0;
  13. :global {
  14. .n-input {
  15. margin-left: auto;
  16. width: 360px;
  17. }
  18. .n-input__input-el {
  19. height: 100%;
  20. line-height: 100%;
  21. }
  22. .n-button.n-button--disabled {
  23. cursor: initial;
  24. padding: 0;
  25. }
  26. }
  27. .tagWrap {
  28. flex: 1;
  29. margin-right: 20px;
  30. }
  31. .tags {
  32. .firstButton {
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. height: 100%;
  37. font-size: max(18px, 13Px);
  38. color: #999999;
  39. line-height: 25px;
  40. }
  41. padding: 12px 0;
  42. :global {
  43. .n-button {
  44. min-width: 102px;
  45. height: 37px;
  46. padding: 0 24px;
  47. font-size: max(18px, 13Px);
  48. }
  49. .n-button--primary-type {
  50. font-weight: 500 !important;
  51. }
  52. }
  53. }
  54. }
  55. .content {
  56. flex: 1;
  57. // padding: 20px 36px 36px 36px;
  58. padding: 0 6px 36px;
  59. &.loadingContent {
  60. min-height: 50vh;
  61. }
  62. gap: 50px 0;
  63. display: flex;
  64. flex-flow: row wrap;
  65. justify-content: flex-start;
  66. margin-left: -12px;
  67. margin-right: -12px;
  68. .itemWrap {
  69. width: calc(100% / 6);
  70. padding-bottom: calc(100% / 6 * 0.909923);
  71. position: relative;
  72. .itemWrapBox {
  73. position: absolute;
  74. left: 0;
  75. top: 0;
  76. width: 100%;
  77. height: 100%;
  78. padding: 0 12px;
  79. }
  80. }
  81. }
  82. // 214px
  83. // 223px + 38
  84. .item {
  85. margin: 0 auto;
  86. position: relative;
  87. width: 214px;
  88. cursor: pointer;
  89. transition: all .3s;
  90. .cover {
  91. position: relative;
  92. overflow: hidden;
  93. &::before {
  94. content: '';
  95. position: absolute;
  96. top: 107px;
  97. left: 0;
  98. width: 214px;
  99. height: 214px;
  100. background: #DDF2FF;
  101. border-radius: 50%;
  102. }
  103. }
  104. &:hover {
  105. transform: scale(1.1);
  106. }
  107. .itemImg {
  108. position: relative;
  109. width: 158px;
  110. height: 223px;
  111. margin: auto;
  112. background-color: #EDEFF2;
  113. background-image: url('./icon_default.svg');
  114. background-repeat: no-repeat;
  115. background-position: center center;
  116. &::before {
  117. content: '';
  118. position: absolute;
  119. top: 4px;
  120. right: -4px;
  121. width: 4px;
  122. height: calc(100% - 8px);
  123. background-color: #C5C5C5;
  124. z-index: 1;
  125. }
  126. &::after {
  127. content: '';
  128. position: absolute;
  129. top: 2px;
  130. right: -2px;
  131. width: 4px;
  132. height: calc(100% - 4px);
  133. background-color: #E7E7E7;
  134. z-index: 2;
  135. }
  136. .itemBg {
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. width: 100%;
  141. height: 100%;
  142. z-index: 4;
  143. background-repeat: no-repeat;
  144. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(255, 255, 255, 0.08) 0%, transparent 0.5%), linear-gradient(to right, rgba(0, 0, 0, 0.1) 0.3%, rgba(255, 255, 255, 0.09) 1.1%, transparent 1.3%);
  145. background-size: 50% 100%, 50% 100%;
  146. background-position: 0% top, 9% top;
  147. }
  148. :global {
  149. .n-image {
  150. position: relative;
  151. width: 100%;
  152. height: 100%;
  153. z-index: 3;
  154. }
  155. }
  156. img {
  157. transition: opacity .3s;
  158. opacity: 0;
  159. }
  160. img[data-loaded="true"] {
  161. opacity: 1;
  162. }
  163. }
  164. .itemName {
  165. margin-top: 16px;
  166. font-size: max(16px, 12Px);
  167. line-height: 22px;
  168. font-weight: 500;
  169. color: #333;
  170. text-align: center;
  171. }
  172. }
  173. .popSelect1 {
  174. font-size: 16px;
  175. width: 240px;
  176. // max-height: 500px;
  177. // overflow-y: scroll;
  178. box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.08);
  179. border-radius: 11px;
  180. --n-option-height: 34px;
  181. :global {
  182. .n-base-select-option__content {
  183. width: 80% !important;
  184. }
  185. }
  186. }
  187. .textBtn {
  188. .iconArrow {
  189. display: inline-block;
  190. margin-left: 8px;
  191. margin-top: 2px;
  192. width: 8px;
  193. height: 5px;
  194. background: url('../xiaoku-music/images/icon-arrow.svg') no-repeat center center / contain;
  195. transform: rotate(180deg);
  196. color: #131415;
  197. fill: #131415;
  198. }
  199. &:hover,
  200. &.textBtnActive {
  201. background: #198CFE !important;
  202. font-weight: 500 !important;
  203. color: #fff !important;
  204. .iconArrow {
  205. transform: rotate(0deg);
  206. background: url('../xiaoku-music/images/icon-arrow2.svg') no-repeat center center / contain;
  207. color: #fff;
  208. fill: #fff;
  209. margin-top: 0;
  210. }
  211. }
  212. }