makeMusicDetail.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .make-music-detail {
  2. width: 100%;
  3. min-height: 100vh;
  4. background-color: #fff;
  5. display: flex;
  6. flex-direction: column;
  7. .nav-header {
  8. padding: 44px 15px 15px;
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-between;
  12. border-bottom: 1px solid #f5f5f5;
  13. .back-icon {
  14. width: 24px;
  15. }
  16. .right-info {
  17. flex: 1;
  18. display: flex;
  19. align-items: center;
  20. justify-content: flex-end;
  21. gap: 10px;
  22. .coin-box, .diamond-box {
  23. display: flex;
  24. align-items: center;
  25. background: #f5f5f5;
  26. border-radius: 15px;
  27. padding: 2px 8px;
  28. image {
  29. width: 16px;
  30. height: 16px;
  31. margin-right: 4px;
  32. }
  33. text {
  34. font-size: 14px;
  35. }
  36. }
  37. }
  38. }
  39. .content {
  40. flex: 1;
  41. padding: 20px;
  42. .input-section {
  43. margin-bottom: 20px;
  44. .label {
  45. font-size: 16px;
  46. font-weight: 500;
  47. margin-bottom: 10px;
  48. display: block;
  49. }
  50. .input-field {
  51. width: 100%;
  52. height: 44px;
  53. border-radius: 8px;
  54. border: 1px solid #eee;
  55. padding: 0 15px;
  56. font-size: 14px;
  57. }
  58. .textarea-field {
  59. width: 100%;
  60. height: 120px;
  61. border-radius: 8px;
  62. border: 1px solid #eee;
  63. padding: 15px;
  64. font-size: 14px;
  65. }
  66. .textarea-footer {
  67. display: flex;
  68. justify-content: space-between;
  69. align-items: center;
  70. margin-top: 8px;
  71. .ai-btn {
  72. color: #007AFF;
  73. font-size: 14px;
  74. }
  75. }
  76. .count {
  77. font-size: 12px;
  78. color: #999;
  79. text-align: right;
  80. }
  81. }
  82. .style-section {
  83. .tabs {
  84. display: flex;
  85. gap: 20px;
  86. margin-bottom: 15px;
  87. text {
  88. font-size: 14px;
  89. color: #666;
  90. &.active {
  91. color: #333;
  92. font-weight: 500;
  93. }
  94. }
  95. }
  96. .tags {
  97. display: flex;
  98. flex-wrap: wrap;
  99. gap: 10px;
  100. .tag {
  101. padding: 6px 15px;
  102. background: #f5f5f5;
  103. border-radius: 20px;
  104. font-size: 14px;
  105. &.active {
  106. background: #333;
  107. color: #fff;
  108. }
  109. }
  110. }
  111. }
  112. }
  113. .bottom-section {
  114. padding: 20px;
  115. .submit-btn {
  116. width: 100%;
  117. height: 44px;
  118. background: #333;
  119. color: #fff;
  120. border-radius: 22px;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. .small {
  125. font-size: 12px;
  126. margin-left: 5px;
  127. }
  128. }
  129. .promotion-text {
  130. text-align: center;
  131. margin-top: 10px;
  132. .link-text {
  133. color: #007AFF;
  134. font-size: 12px;
  135. }
  136. }
  137. }
  138. }