index.module.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .album {
  2. margin-bottom: 12px;
  3. padding: 15px;
  4. background-color: var(--music-list-item-background-color);
  5. border-radius: 10px;
  6. display: flex;
  7. position: relative;
  8. .albumType {
  9. position: absolute;
  10. left: 10px;
  11. top: 10px;
  12. background: #FE2451;
  13. border-radius: 10px 0px 10px 0px;
  14. font-size: 12px;
  15. padding: 0 6px;
  16. line-height: 20px;
  17. color: #ffffff;
  18. }
  19. .img {
  20. width: 94px;
  21. height: 94px;
  22. margin-right: 18px;
  23. position: relative;
  24. flex-shrink: 0;
  25. >img,
  26. >div {
  27. position: absolute;
  28. border-radius: 10px;
  29. overflow: hidden;
  30. }
  31. }
  32. .content {
  33. flex: 1;
  34. word-break: break-all;
  35. word-wrap: break-word;
  36. >h4 {
  37. font-size: 14px;
  38. color: #131415;
  39. line-height: 24px;
  40. }
  41. >p {
  42. margin: 4px 0 6px;
  43. font-size: 12px;
  44. color: #777777;
  45. line-height: 18px;
  46. }
  47. .musicNum {
  48. font-size: 12px;
  49. color: #FE2451;
  50. border-radius: 4px;
  51. border: 1px solid #FE2451;
  52. padding: 1px 6px;
  53. }
  54. }
  55. }
  56. .footer {
  57. margin-top: 11px;
  58. display: flex;
  59. >div {
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. font-size: 12px;
  64. color: var(--music-list-item-mate-color);
  65. margin-right: 18px;
  66. .icon {
  67. margin-right: 5px;
  68. }
  69. span {
  70. display: block;
  71. margin-top: 1px;
  72. }
  73. }
  74. }
  75. .albumWeek {
  76. background-color: #fff;
  77. margin-bottom: 12px;
  78. padding: 15px;
  79. display: flex;
  80. align-items: center;
  81. justify-content: space-between;
  82. border-radius: 6px;
  83. .albumTitle {
  84. font-size: 16px;
  85. font-weight: 600;
  86. color: #131415;
  87. line-height: 22px;
  88. }
  89. .albumNum {
  90. font-size: 14px;
  91. font-weight: 500;
  92. color: #FE2451;
  93. line-height: 20px;
  94. }
  95. }