index.module.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .Z_upFileMore {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. :global {
  6. .fileBoxRow_up {
  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. .fileImgListBox {
  19. display: flex;
  20. flex-wrap: wrap;
  21. margin-bottom: 10px;
  22. &>div {
  23. margin: 15px 20px 0px 0;
  24. }
  25. }
  26. .fileBoxRow_r_img {
  27. position: relative;
  28. .sortInpBox {
  29. position: absolute;
  30. bottom: 20px;
  31. left: 0;
  32. z-index: 99;
  33. width: 100px;
  34. height: 30px;
  35. line-height: 20px;
  36. .clickOk {
  37. text-align: center;
  38. opacity: .6;
  39. cursor: pointer;
  40. width: 18px;
  41. height: 18px;
  42. border-radius: 50%;
  43. background-color: green;
  44. color: #fff;
  45. position: absolute;
  46. z-index: 10;
  47. right: 23px;
  48. top: 2px;
  49. font-size: 14px;
  50. &:hover {
  51. opacity: 1;
  52. }
  53. }
  54. .clickX {
  55. text-align: center;
  56. opacity: .6;
  57. cursor: pointer;
  58. width: 18px;
  59. height: 18px;
  60. border-radius: 50%;
  61. background-color: #ff4d4d;
  62. color: #fff;
  63. position: absolute;
  64. z-index: 10;
  65. right: 3px;
  66. top: 2px;
  67. font-size: 14px;
  68. &:hover {
  69. opacity: 1;
  70. }
  71. }
  72. input {
  73. padding-left: 3px;
  74. width: 100%;
  75. height: 20px;
  76. line-height: 20px;
  77. &:focus {
  78. outline: none;
  79. }
  80. }
  81. }
  82. .fileImgListLDBox {
  83. height: 26px;
  84. background-color: rgba(0, 0, 0, .6);
  85. color: #fff;
  86. display: flex;
  87. justify-content: space-around;
  88. font-size: 16px;
  89. &>a {
  90. color: #fff;
  91. }
  92. .sortBox {
  93. cursor: pointer;
  94. }
  95. }
  96. .clearCover {
  97. cursor: pointer;
  98. position: absolute;
  99. z-index: 99;
  100. right: -10px;
  101. top: -10px;
  102. background-color: rgba(0, 0, 0, .8);
  103. width: 20px;
  104. height: 20px;
  105. border-radius: 50%;
  106. font-size: 16px;
  107. color: #fff;
  108. display: flex;
  109. justify-content: center;
  110. align-items: center;
  111. }
  112. .dangXBox {
  113. cursor: pointer;
  114. position: absolute;
  115. z-index: 99;
  116. left: 2px;
  117. top: 2px;
  118. background-color: rgba(0, 0, 0, .8);
  119. width: 20px;
  120. height: 20px;
  121. border-radius: 50%;
  122. font-size: 16px;
  123. color: #fff;
  124. display: flex;
  125. justify-content: center;
  126. align-items: center;
  127. }
  128. }
  129. .fileTit {
  130. font-size: 14px;
  131. color: rgb(126, 124, 124);
  132. .noUpThumb {
  133. position: relative;
  134. overflow: hidden;
  135. opacity: 0;
  136. transition: top .2s;
  137. color: #ff4d4f;
  138. top: -10px;
  139. }
  140. .noUpThumbAc {
  141. top: 0;
  142. opacity: 1;
  143. }
  144. }
  145. }
  146. }