index.module.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .Z3upFiles {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. :global {
  6. .Z3files {
  7. width: 500px;
  8. .Z3filesRow {
  9. display: flex;
  10. margin-top: 10px;
  11. justify-content: space-between;
  12. align-items: center;
  13. font-size: 16px;
  14. .Z3files1 {
  15. width: calc(100% - 130px);
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. white-space: nowrap;
  19. }
  20. .Z3files2 {
  21. display: flex;
  22. width: 120px;
  23. justify-content: flex-end;
  24. &>span {
  25. cursor: pointer;
  26. }
  27. a {
  28. color: black;
  29. }
  30. }
  31. }
  32. }
  33. .fileTit {
  34. margin-top: 14px;
  35. font-size: 14px;
  36. color: rgb(126, 124, 124);
  37. .noUpThumb {
  38. position: relative;
  39. overflow: hidden;
  40. opacity: 0;
  41. transition: top .2s;
  42. color: #ff4d4f;
  43. top: -10px;
  44. }
  45. .noUpThumbAc {
  46. top: 0;
  47. opacity: 1;
  48. }
  49. }
  50. .lookNone {
  51. position: relative;
  52. top: 4px;
  53. left: 10px;
  54. }
  55. }
  56. }