index.module.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // 上传无障碍音频的样式
  2. .ZupAudio {
  3. margin-left: 20px;
  4. width: 180px;
  5. height: 32px;
  6. // position: relative;
  7. // top: -4px;
  8. border: 1px solid #ccc;
  9. border-radius: 16px;
  10. background-color: #fff;
  11. :global {
  12. .ZupAudio1 {
  13. cursor: pointer;
  14. display: flex;
  15. justify-content: center;
  16. .anticon-upload {
  17. font-size: 20px;
  18. }
  19. .ZupAudio1_1 {
  20. line-height: 15px;
  21. color: #aaa5cb;
  22. margin-left: 10px;
  23. &>p {
  24. &:nth-of-type(2) {
  25. font-size: 10px;
  26. // color: red;
  27. opacity: .7;
  28. }
  29. }
  30. }
  31. }
  32. .ZupAudio2 {
  33. padding: 0 10px;
  34. height: 100%;
  35. display: flex;
  36. align-items: center;
  37. .anticon {
  38. font-size: 18px;
  39. cursor: pointer;
  40. }
  41. &>div {
  42. height: 100%;
  43. line-height: 30px;
  44. width: calc(100% - 35px);
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. white-space: nowrap;
  48. }
  49. }
  50. }
  51. }