index.module.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .ZupOne {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. :global {
  6. .file_upIcon {
  7. color: #a6a6a6;
  8. border-radius: 3px;
  9. cursor: pointer;
  10. font-size: 30px;
  11. width: 100px;
  12. height: 100px;
  13. border: 1px dashed #797979;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .file_img {
  19. width: 100px;
  20. height: 126px;
  21. position: relative;
  22. margin-top: 10px;
  23. .file_closeBox {
  24. position: absolute;
  25. right: -10px;
  26. top: -10px;
  27. z-index: 99;
  28. background-color: rgba(0, 0, 0, 0.8);
  29. width: 20px;
  30. height: 20px;
  31. border-radius: 50%;
  32. font-size: 16px;
  33. color: #fff;
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. }
  38. .file_lookBox {
  39. width: 100%;
  40. background-color: rgba(0, 0, 0, .6);
  41. color: #fff;
  42. display: flex;
  43. justify-content: space-around;
  44. &>a {
  45. color: #fff !important;
  46. }
  47. font-size: 16px;
  48. }
  49. }
  50. .fileInfo {
  51. display: flex;
  52. align-items: center;
  53. font-size: 16px;
  54. .clearCover {
  55. margin-left: 20px;
  56. cursor: pointer;
  57. font-size: 16px;
  58. }
  59. &>a {
  60. color: black;
  61. }
  62. }
  63. .fileBoxRow_r_tit {
  64. height: 46px;
  65. margin-top: 5px;
  66. font-size: 14px;
  67. color: rgb(126, 124, 124);
  68. }
  69. .noUpThumb {
  70. position: relative;
  71. overflow: hidden;
  72. opacity: 0;
  73. transition: top .2s;
  74. color: #ff4d4f;
  75. top: -10px;
  76. }
  77. .noUpThumbAc {
  78. top: 0;
  79. opacity: 1;
  80. }
  81. }
  82. }