index.module.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .album {
  2. margin: 12px 14px;
  3. padding: 10px;
  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: linear-gradient(180deg, #ff8900 0%, #ff5100 100%);
  13. box-shadow: 0px 1px 2px 0px rgba(150, 13, 0, 0.11);
  14. border-radius: 10px 0px 10px 0px;
  15. font-size: 12px;
  16. padding: 0 6px;
  17. line-height: 20px;
  18. color: #ffffff;
  19. }
  20. .img {
  21. width: 98px;
  22. height: 98px;
  23. margin-right: 15px;
  24. position: relative;
  25. >img,
  26. >div {
  27. position: absolute;
  28. border-radius: 10px;
  29. overflow: hidden;
  30. }
  31. }
  32. .content {
  33. flex: 1;
  34. >h4 {
  35. font-size: 14px;
  36. font-weight: 500;
  37. color: #131415;
  38. line-height: 24px;
  39. }
  40. >p {
  41. padding-top: 2px;
  42. font-size: 12PX;
  43. color: #777777;
  44. }
  45. .footer {
  46. span {
  47. font-size: 12px;
  48. color: #FE2451;
  49. line-height: 16px;
  50. padding: 1px 6px;
  51. border-radius: 4px;
  52. border: 1px solid #FE2451;
  53. margin-right: 5px;
  54. }
  55. }
  56. }
  57. }
  58. .footer {
  59. margin-top: 11px;
  60. display: flex;
  61. >div {
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. font-size: 12px;
  66. color: var(--music-list-item-mate-color);
  67. margin-right: 18px;
  68. .icon {
  69. margin-right: 5px;
  70. }
  71. span {
  72. display: block;
  73. margin-top: 1px;
  74. }
  75. }
  76. }