index.module.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. .WallAdd {
  2. position: absolute;
  3. z-index: 99;
  4. top: 0;
  5. left: 0;
  6. width: 100vw;
  7. height: 100vh;
  8. background-color: rgba(0, 0, 0, 0.45);
  9. :global {
  10. .WallTableTitle {
  11. position: absolute;
  12. top: 100px;
  13. left: 50%;
  14. transform: translateX(-50%);
  15. width: 800px;
  16. padding: 20px 24px;
  17. border-radius: 8px;
  18. background-color: #fff;
  19. .txt {
  20. color: rgba(0, 0, 0, 0.88);
  21. margin-bottom: 8px;
  22. }
  23. .main {
  24. border-top: 1px solid #999999;
  25. padding-top: 15px;
  26. width: 100%;
  27. .myformBox {
  28. display: flex;
  29. margin-bottom: 20px;
  30. .label {
  31. width: 94px;
  32. text-align: right;
  33. &>span {
  34. position: relative;
  35. top: 2px;
  36. color: #ff4d4f;
  37. }
  38. }
  39. .myformBoxR {
  40. width: calc(100% - 94px);
  41. }
  42. .fileBoxRow_r {
  43. position: relative;
  44. .fileBoxRow_up {
  45. color: #a6a6a6;
  46. border-radius: 3px;
  47. cursor: pointer;
  48. font-size: 30px;
  49. width: 100px;
  50. height: 100px;
  51. border: 1px dashed #797979;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. }
  56. .upImgBox {
  57. display: flex;
  58. flex-wrap: wrap;
  59. &>div {
  60. margin: 0 15px 15px 0;
  61. }
  62. .fileBoxRow_r_img {
  63. position: relative;
  64. // 有无边框的选择
  65. .upImgDoneBox {
  66. position: absolute;
  67. bottom: -30px;
  68. font-size: 12px;
  69. left: 0;
  70. width: 100%;
  71. height: 30px;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. .ant-radio-group {
  76. display: flex;
  77. font-size: 12px;
  78. }
  79. }
  80. .clearCover {
  81. right: -10px;
  82. top: -10px;
  83. transform: translate(0, 0);
  84. background-color: rgba(0, 0, 0, .8);
  85. width: 20px;
  86. height: 20px;
  87. border-radius: 50%;
  88. font-size: 16px;
  89. color: #fff;
  90. }
  91. }
  92. }
  93. .fileBoxRow_r_img {
  94. width: 100px;
  95. height: 100px;
  96. position: relative;
  97. .clearCover {
  98. cursor: pointer;
  99. z-index: 10;
  100. position: absolute;
  101. width: 50px;
  102. height: 50px;
  103. top: 50%;
  104. transform: translateY(-50%);
  105. right: -50px;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. font-size: 24px;
  110. }
  111. }
  112. .fileTit {
  113. font-size: 14px;
  114. color: rgb(126, 124, 124);
  115. }
  116. }
  117. }
  118. .myformBox0 {
  119. margin-bottom: 5px;
  120. }
  121. .noUpThumb {
  122. position: relative;
  123. overflow: hidden;
  124. opacity: 0;
  125. transition: top .2s;
  126. color: #ff4d4f;
  127. top: -10px;
  128. padding-left: 94px;
  129. }
  130. .noUpThumbAc {
  131. top: 0;
  132. opacity: 1;
  133. }
  134. }
  135. }
  136. }
  137. }