style.scss 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. @import "@assets/css/public-style.scss";
  2. .formContent {
  3. display: flex;
  4. justify-content: space-between;
  5. padding: 20px 20px 0 20px;
  6. background: white;
  7. .formContent-item {
  8. width: calc((100% / 3) - 80px);
  9. // width: calc((100vw / 3) - 80px);
  10. .formContent-formList {
  11. display: flex;
  12. justify-content: space-between;
  13. }
  14. .block-title {
  15. width: 200px;
  16. height: 80px;
  17. background: #ffffff;
  18. border-radius: 2px;
  19. border: 1px solid #e0e1e3;
  20. position: relative;
  21. .floor {
  22. margin: 16px 0 0 0;
  23. // text-align: center;
  24. font-weight: 600;
  25. font-size: 16px;
  26. }
  27. .remove {
  28. color: $mainBgColor;
  29. font-size: 12px;
  30. cursor: pointer;
  31. }
  32. .list-title {
  33. margin-left: 20px;
  34. position: relative;
  35. z-index: 2;
  36. // white-space: nowrap;
  37. }
  38. img {
  39. &.bg-img {
  40. position: absolute;
  41. right: 0;
  42. top: 0;
  43. width: 100px;
  44. }
  45. &.bg-imgIoc {
  46. position: absolute;
  47. right: 20px;
  48. top: 28px;
  49. width: 24px;
  50. }
  51. }
  52. }
  53. .addHouse {
  54. margin-bottom: 25px;
  55. }
  56. .add-block {
  57. width: 80px;
  58. height: 80px;
  59. background: #ffffff;
  60. border-radius: 2px;
  61. border: 1px solid #e0e1e3;
  62. position: relative;
  63. cursor: pointer;
  64. & > img {
  65. width: 16px;
  66. height: 16px;
  67. position: absolute;
  68. top: 50%;
  69. left: 50%;
  70. transform: translate(-50%, -50%);
  71. }
  72. }
  73. .addCat {
  74. & > div {
  75. float: left;
  76. margin-right: 20px;
  77. margin-bottom: 20px;
  78. }
  79. }
  80. }
  81. }
  82. // .formContent-item_title {
  83. // font-size: 14px;
  84. // position: relative;
  85. // margin-left: 14px;
  86. // margin-bottom: 20px;
  87. // &::before {
  88. // position: absolute;
  89. // left: -14px;
  90. // top: 4px;
  91. // width: 4px;
  92. // height: 12px;
  93. // border-radius: 2px;
  94. // display: block;
  95. // background: $mainBgColor;
  96. // content: " ";
  97. // }
  98. // }
  99. .buttons {
  100. text-align: right;
  101. background: white;
  102. padding: 0 20px 20px 0;
  103. }
  104. .top-title {
  105. padding: 20px;
  106. background: white;
  107. margin-bottom: 20px;
  108. position: relative;
  109. h1 {
  110. font-size: 30px;
  111. line-height: 42px;
  112. .titleType {
  113. font-size: 14px;
  114. width: 68px;
  115. height: 30px;
  116. border-radius: 2px;
  117. text-align: center;
  118. line-height: 30px;
  119. vertical-align: middle;
  120. color: $mainTextColor;
  121. border: 1px solid $mainBgColor;
  122. font-weight: normal;
  123. margin-left: 20px;
  124. display: inline-block;
  125. }
  126. }
  127. .right {
  128. position: absolute;
  129. right: 20px;
  130. top: 20px;
  131. }
  132. .text {
  133. margin-top: 10px;
  134. font-size: 12px;
  135. color: #747d87;
  136. span {
  137. margin-right: 40px;
  138. }
  139. }
  140. }
  141. .content {
  142. background: white;
  143. .tages {
  144. display: flex;
  145. padding: 15px 20px;
  146. border-bottom: 1px solid #ddd;
  147. .tages-list {
  148. margin-right: 40px;
  149. position: relative;
  150. cursor: pointer;
  151. &.active {
  152. color: $mainTextColor;
  153. &::before {
  154. position: absolute;
  155. left: 0px;
  156. bottom: -15px;
  157. width: 100%;
  158. height: 2px;
  159. background: $mainBgColor;
  160. content: " ";
  161. }
  162. }
  163. }
  164. }
  165. .content-item {
  166. padding: 30px 20px 20px 20px;
  167. .widthFlex {
  168. display: flex;
  169. margin-bottom: 20px;
  170. .item-table {
  171. width: 100%;
  172. border: 1px solid #e0e1e3;
  173. &:first-of-type {
  174. border-right: none;
  175. }
  176. .table-list {
  177. display: flex;
  178. line-height: 40px;
  179. border-bottom: 1px solid #e0e1e3;
  180. &:last-of-type {
  181. border-bottom: none;
  182. }
  183. .lable {
  184. width: 200px;
  185. background: #f8fcff;
  186. padding-left: 20px;
  187. box-sizing: border-box;
  188. border-right: 1px solid #e0e1e3;
  189. }
  190. .text {
  191. flex: 1;
  192. padding-left: 20px;
  193. box-sizing: border-box;
  194. }
  195. }
  196. }
  197. }
  198. }
  199. }
  200. .clickUpload {
  201. width: 130px;
  202. height: 182px;
  203. background: #f8fcff;
  204. border-radius: 4px;
  205. border: 1px solid #e0e1e3;
  206. position: relative;
  207. z-index: 1000;
  208. text-align: center;
  209. overflow: hidden;
  210. font-size: 12px;
  211. cursor: pointer;
  212. color: #e0e1e3;
  213. .mini-upload {
  214. position: absolute;
  215. z-index: 0;
  216. }
  217. }
  218. .clickUpText {
  219. height: 100%;
  220. width: 100%;
  221. pointer-events: none;
  222. position: absolute;
  223. background: #f8fcff;
  224. z-index: 1;
  225. img.bg-img {
  226. width: 52px;
  227. margin-top: 46px;
  228. margin-bottom: 12px;
  229. }
  230. img.dataImg {
  231. width: 100%;
  232. height: 100%;
  233. object-fit: cover;
  234. }
  235. }
  236. .show-required-icon-star {
  237. &:before {
  238. content: "*";
  239. color: #f56c6c;
  240. }
  241. }