index.module.scss 1.2 KB

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