intelligentMusicProduction.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. page {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. .dialog-generation {
  6. height: 100vh;
  7. background: linear-gradient(180deg, #181c3a 0%, #2a1c3a 100%);
  8. padding: 0;
  9. margin: 0;
  10. position: relative;
  11. font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  12. background: url("../../static/makedetail/dialog-generation-bg.jpg") top
  13. center/100% 100% no-repeat;
  14. box-sizing: border-box;
  15. padding-top: var(--status-bar-height);
  16. padding-bottom: var(--window-bottom);
  17. box-sizing: border-box;
  18. }
  19. .subject-matter-ofText {
  20. width: 100vw;
  21. height: 100%;
  22. box-sizing: border-box;
  23. }
  24. .navbar {
  25. width: calc(100vw - 60rpx);
  26. height: 160rpx;
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. padding: 0 30rpx;
  31. // z-index: 99;
  32. // padding-top: var(--status-bar-height);
  33. .navbar-left {
  34. width: 435rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. .back {
  39. width: 32rpx;
  40. height: 32rpx;
  41. opacity: 0.9;
  42. }
  43. .elf-name {
  44. color: #fff;
  45. font-family: "CustomFont";
  46. font-size: 36rpx;
  47. transform: skewX(-5deg);
  48. opacity: 0.9;
  49. }
  50. .deepseek {
  51. width: 168rpx;
  52. height: 36rpx;
  53. }
  54. }
  55. .navbar-right {
  56. width: 130rpx;
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. .primary {
  61. width: 48rpx;
  62. height: 48rpx;
  63. opacity: 0.9;
  64. }
  65. .createChat {
  66. width: 48rpx;
  67. height: 48rpx;
  68. opacity: 0.9;
  69. }
  70. }
  71. }
  72. .navbar-reserveASeat {
  73. width: 100vw;
  74. height: calc(160rpx + var(--status-bar-height));
  75. }
  76. .chat-content {
  77. flex: 1;
  78. // overflow-y: auto;
  79. background: transparent;
  80. height: calc(100% - 380rpx);
  81. width: 100vw;
  82. box-sizing: border-box;
  83. padding: 0 28rpx;
  84. }
  85. .chat-bubble {
  86. font-size: 32rpx;
  87. word-break: break-all;
  88. margin: 28rpx 0;
  89. }
  90. .chat-bubble.user {
  91. margin-left: calc(100% - 516rpx);
  92. width: 514rpx;
  93. color: rgba(255, 255, 255, 0.7);
  94. background: rgba(255, 255, 255, 0.1);
  95. border: rgba(255, 255, 255, 0.1) solid 2rpx;
  96. border-radius: 36rpx 36rpx 12rpx 36rpx;
  97. padding: 22rpx 32rpx 20rpx 34rpx;
  98. backdrop-filter: blur(10px);
  99. }
  100. .chat-bubble.ai {
  101. color: rgba(255, 255, 255, 0.7);
  102. line-height: 1.5;
  103. }
  104. .chat-bubble .chat-bubble span {
  105. color: #fff;
  106. }
  107. .bom-reserveASeat {
  108. width: 100vw;
  109. height: calc(160rpx + var(--window-bottom));
  110. }
  111. .bom-box {
  112. width: 100vw;
  113. height: calc(160rpx + var(--window-bottom));
  114. // position: fixed;
  115. bottom: 0;
  116. left: 0;
  117. padding-bottom: var(--window-bottom);
  118. box-sizing: border-box;
  119. position: relative;
  120. left: 0;
  121. top: 0;
  122. background: url("../../static/makedetail/bom-box-top-bg.png") top center/100% auto no-repeat,#040503;
  123. .bom-box-bg{
  124. width: 100vw;height: 178rpx;
  125. position: absolute;
  126. left: 0;
  127. top: -178rpx;
  128. background: url("../../static/makedetail/bom-box-bg.png") no-repeat top center /
  129. 100% 100%;
  130. .icon-img {
  131. height: 108rpx;
  132. width: 112rpx;
  133. position: absolute;
  134. bottom: 0;
  135. left: 20rpx;
  136. }
  137. }
  138. // padding-top: 30rpx;
  139. .input-bar {
  140. display: flex;
  141. min-height: 90rpx;
  142. width: 700rpx;
  143. background: rgba(255, 255, 255, 0.15);
  144. border-radius: 46rpx;
  145. border: 2rpx solid rgba(255, 255, 255, 0.15);
  146. margin: 0 25rpx;
  147. align-items: center;
  148. padding-left: 116rpx;
  149. padding-right: 22rpx;
  150. position: relative;
  151. left: 0;
  152. top: 0;
  153. .input-box {
  154. flex: 1;
  155. height: 60rpx;
  156. border: none;
  157. outline: none;
  158. background: transparent;
  159. color: #fff;
  160. font-size: 30rpx;
  161. padding-left: 10rpx;
  162. }
  163. .send-btn {
  164. margin-left: 18rpx;
  165. background: linear-gradient(90deg, #ffb86c 0%, #ff6e7f 100%);
  166. color: #fff;
  167. border: none;
  168. border-radius: 32rpx;
  169. font-size: 30rpx;
  170. padding: 0 38rpx;
  171. height: 60rpx;
  172. display: flex;
  173. align-items: center;
  174. justify-content: center;
  175. }
  176. .stop,
  177. .keyboard,
  178. .send {
  179. width: 52rpx;
  180. height: 52rpx;
  181. opacity: 0.9;
  182. }
  183. .send {
  184. opacity: 1;
  185. }
  186. }
  187. .footer-tip {
  188. text-align: center;
  189. color: rgba(255, 255, 255, 0.5);
  190. font-size: 24rpx;
  191. width: 100vw;
  192. padding: 20rpx 0;
  193. }
  194. }
  195. .chat-content-empty {
  196. width: 100%;
  197. height: 100%;
  198. display: flex;
  199. flex-direction: column;
  200. align-items: center;
  201. justify-content: center;
  202. image {
  203. width: 182rpx;
  204. height: 182rpx;
  205. }
  206. .chat-content-empty-title {
  207. font-family: "PingFang SC-Bold";
  208. font-weight: 400;
  209. font-size: 36rpx;
  210. color: rgba(255, 255, 255, 0.9);
  211. padding-top: 8rpx;
  212. padding-bottom: 12rpx;
  213. }
  214. .chat-content-empty-desc {
  215. font-family: "PingFang SC-Medium";
  216. font-size: 28rpx;
  217. color: rgba(255, 255, 255, 0.5);
  218. }
  219. }
  220. .btn-box {
  221. padding: 6rpx 22rpx;
  222. border-radius: 392rpx;
  223. border: 2rpx solid rgba(255, 255, 255, 0.9);
  224. display: inline-block;
  225. margin-top: 16rpx;
  226. }