index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /* 添加新藏品的弹出框 */
  2. .ObjectAdd {
  3. .ObjectAddTit {
  4. border-top: 1px solid #999999;
  5. padding-top: 15px;
  6. width: 100%;
  7. height: 45px;
  8. display: flex;
  9. margin-bottom: 15px;
  10. &>div {
  11. cursor: pointer;
  12. width: 50%;
  13. height: 30px;
  14. border: 1px solid #999999;
  15. text-align: center;
  16. line-height: 28px;
  17. border-radius: 5px 0 0 5px;
  18. }
  19. .ObjectAddTitTow {
  20. border-radius: 0 5px 5px 0;
  21. }
  22. .active {
  23. background-color: var(--themeColor);
  24. color: #fff;
  25. }
  26. }
  27. .ant-modal-close {
  28. display: none;
  29. }
  30. .ant-modal {
  31. top: 30px !important;
  32. width: 1000px !important;
  33. }
  34. .formRow {
  35. display: flex;
  36. justify-content: space-between;
  37. position: relative;
  38. .bs {
  39. position: absolute;
  40. top: 7px;
  41. left: 11px;
  42. z-index: 10;
  43. color: #ff4d4f;
  44. }
  45. .bs2 {
  46. left: 70px;
  47. }
  48. .bs3 {
  49. left: 516px;
  50. }
  51. .bs4 {
  52. left: 39px;
  53. }
  54. .ant-form-item-label {
  55. width: 119px;
  56. }
  57. .ant-form-item {
  58. width: 50%;
  59. input {
  60. width: 350px;
  61. }
  62. .ant-select-in-form-item {
  63. width: 358px;
  64. }
  65. .ant-input-number {
  66. width: 358px;
  67. }
  68. }
  69. .formRowSelec {
  70. input {
  71. width: 298px;
  72. }
  73. }
  74. }
  75. .formRowThree {
  76. .formRowThreeRow {
  77. margin-left: -120px;
  78. }
  79. .ant-form-item {
  80. width: 25.5%;
  81. input {
  82. width: 200px;
  83. }
  84. .ant-input-number {
  85. width: 200px;
  86. }
  87. }
  88. }
  89. .formRowFull {
  90. .ant-form-item {
  91. width: 100%;
  92. input {
  93. width: 850px;
  94. }
  95. .ant-select-in-form-item {
  96. width: 858px;
  97. }
  98. }
  99. }
  100. // 附件
  101. .fileBox {
  102. .fileBoxRow {
  103. margin-bottom: 24px;
  104. display: flex;
  105. .fileBoxRow_tit {
  106. width: 119px;
  107. text-align: right;
  108. }
  109. .fileBoxRow_r {
  110. padding-left: 20px;
  111. position: relative;
  112. input {
  113. display: none;
  114. }
  115. .fileBoxRow_up {
  116. cursor: pointer;
  117. font-size: 30px;
  118. width: 100px;
  119. height: 100px;
  120. background-color: #fafafa;
  121. border: 1px dashed #ccc;
  122. display: flex;
  123. justify-content: center;
  124. align-items: center;
  125. }
  126. .fileBoxRow_r_img {
  127. width: 120px;
  128. height: 120px;
  129. position: relative;
  130. .clearCover {
  131. cursor: pointer;
  132. z-index: 10;
  133. position: absolute;
  134. width: 50px;
  135. height: 50px;
  136. top: 50%;
  137. transform: translateY(-50%);
  138. right: -50px;
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. font-size: 24px;
  143. }
  144. }
  145. .fileBoxRow_r_tit {
  146. margin-top: 5px;
  147. font-size: 14px;
  148. color: rgb(126, 124, 124);
  149. }
  150. }
  151. }
  152. }
  153. }