query.scss 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. .hc-search-hot-key {
  2. position: relative;
  3. color: #9A9A9A;
  4. padding: 16px;
  5. font-size: 14px;
  6. }
  7. .hc-search-screening-item {
  8. position: relative;
  9. display: flex;
  10. align-items: center;
  11. padding: 0 20px;
  12. font-size: 14px;
  13. .title {
  14. position: relative;
  15. }
  16. .screening-key {
  17. position: relative;
  18. padding: 1px 12px;
  19. border-radius: 100px;
  20. cursor: pointer;
  21. display: flex;
  22. align-items: center;
  23. transition: background 0.2s, color 0.2s;
  24. &:hover {
  25. background: var(--el-color-primary-light-8);
  26. }
  27. &.cut {
  28. background: var(--el-color-primary);
  29. color: white;
  30. cursor: default;
  31. }
  32. }
  33. .screening-key + .screening-key {
  34. margin-left: 10px;
  35. }
  36. }
  37. .hc-search-screening-item + .hc-search-screening-item {
  38. margin-top: 14px;
  39. }
  40. .hc-query-content-header-box {
  41. position: relative;
  42. display: flex;
  43. padding: 16px 0;
  44. margin-bottom: 24px;
  45. align-items: center;
  46. border-bottom: 1px dashed #dcdcdc;
  47. .header {
  48. position: relative;
  49. flex: 1;
  50. }
  51. .extra {
  52. position: relative;
  53. }
  54. }
  55. .hc-gather-card-box {
  56. position: relative;
  57. height: calc(100% - 160px);
  58. .hc-card-item-main {
  59. position: relative;
  60. height: 100%;
  61. }
  62. .hc-card-item-file {
  63. display: none;
  64. margin-top: 24px;
  65. .hc-icon-close {
  66. font-size: 20px;
  67. }
  68. }
  69. &.file-table {
  70. .hc-card-item-main {
  71. height: calc(100% - 344px);
  72. }
  73. .hc-card-item-file {
  74. display: block;
  75. height: 320px;
  76. }
  77. }
  78. }
  79. .hc-carry-spot-checks-pdf {
  80. position: relative;
  81. flex: 1 1 auto;
  82. height: 100%;
  83. transition: 0.2s;
  84. .hc-csc-pdf-btn {
  85. position: absolute;
  86. right: 0;
  87. top: 50%;
  88. color: white;
  89. font-size: 25px;
  90. z-index: 111;
  91. cursor: pointer;
  92. width: 36px;
  93. height: 40px;
  94. display: flex;
  95. padding-left: 6px;
  96. align-items: center;
  97. justify-content: center;
  98. border-radius: 150px 0 0 150px;
  99. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  100. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  101. background-size: 200%;
  102. transition: background-position 0.5s;
  103. &:hover {
  104. background-position: 100% 0;
  105. }
  106. }
  107. }
  108. .hc-carry-spot-checks-data {
  109. position: relative;
  110. height: 100%;
  111. width: 480px;
  112. padding-left: 14px;
  113. border-left: 1px solid #e9e9e9;
  114. transition: 0.2s;
  115. .hc-csc-switch {
  116. position: relative;
  117. margin-bottom: 10px;
  118. }
  119. .hc-csc-info-box {
  120. position: relative;
  121. background: #E7EEF4;
  122. border-radius: 10px;
  123. padding: 12px;
  124. height: 244px;
  125. margin-bottom: 20px;
  126. .hc-info-text-item {
  127. position: relative;
  128. font-size: 14px;
  129. display: flex;
  130. align-items: flex-start;
  131. .title {
  132. font-weight: bold;
  133. }
  134. .content {
  135. flex: 1;
  136. position: relative;
  137. color: #101010;
  138. }
  139. }
  140. .hc-info-text-item + .hc-info-text-item {
  141. margin-top: 8px;
  142. }
  143. }
  144. .hc-csc-data-box {
  145. position: relative;
  146. background: #E7EEF4;
  147. border-radius: 10px;
  148. padding: 12px;
  149. height: calc(100% - 400px);
  150. margin-bottom: 16px;
  151. .hc-csc-associated-row {
  152. position: relative;
  153. text-align: left;
  154. display: flex;
  155. align-items: center;
  156. }
  157. .hc-table-info-btn {
  158. position: absolute;
  159. right: -5px;
  160. top: -12px;
  161. color: white;
  162. font-size: 20px;
  163. z-index: 111;
  164. cursor: pointer;
  165. border-radius: 50px;
  166. width: 34px;
  167. height: 34px;
  168. display: flex;
  169. align-items: center;
  170. justify-content: center;
  171. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  172. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  173. background-size: 200%;
  174. transition: background-position 0.5s;
  175. &:hover {
  176. background-position: 100% 0;
  177. }
  178. }
  179. }
  180. .hc-csc-action-box {
  181. position: relative;
  182. background: white;
  183. border-radius: 10px;
  184. padding: 12px;
  185. height: 70px;
  186. .header-box {
  187. position: relative;
  188. display: flex;
  189. align-items: center;
  190. .title {
  191. flex: 1;
  192. color: #9A9A9A;
  193. font-size: 15px;
  194. }
  195. }
  196. .btn-box {
  197. position: relative;
  198. text-align: center;
  199. }
  200. }
  201. }
  202. .hc-collapse-item-title {
  203. flex: 1;
  204. position: relative;
  205. margin-left: 24px;
  206. display: flex;
  207. align-items: center;
  208. user-select: none;
  209. cursor: pointer;
  210. .icon {
  211. margin-right: 10px;
  212. color: #FFAF2D;
  213. font-size: 24px;
  214. }
  215. .title {
  216. flex: 1;
  217. position: relative;
  218. user-select: none;
  219. color: #50545E;
  220. font-size: 16px;
  221. font-weight: 400;
  222. }
  223. }
  224. .hc-file-cabinet-gui {
  225. position: relative;
  226. height: 100%;
  227. display: flex;
  228. padding: 24px;
  229. flex-direction: row;
  230. flex-wrap: wrap;
  231. align-items: center;
  232. align-content: flex-start;
  233. justify-content: flex-start;
  234. .gui-item {
  235. position: relative;
  236. height: 100%;
  237. width: 25%;
  238. display: flex;
  239. align-items: center;
  240. justify-content: center;
  241. .gui-view {
  242. position: relative;
  243. cursor: pointer;
  244. transition: transform .2s;
  245. img {
  246. width: 100%;
  247. }
  248. .num {
  249. position: absolute;
  250. left: 53%;
  251. top: 15.8%;
  252. color: white;
  253. font-weight: bold;
  254. }
  255. &:hover {
  256. transform: scale(1.3);
  257. }
  258. }
  259. }
  260. }
  261. .hc-gui-info-drawer {
  262. position: relative;
  263. height: 100%;
  264. width: 100%;
  265. display: flex;
  266. .hc-gui-info-img {
  267. position: relative;
  268. height: 100%;
  269. display: flex;
  270. align-items: center;
  271. justify-content: center;
  272. .gui-info-img {
  273. position: relative;
  274. height: 100%;
  275. max-height: 690px;
  276. img {
  277. position: relative;
  278. height: 100%;
  279. }
  280. .gui-file-item-box {
  281. position: absolute;
  282. top: 0;
  283. bottom: 0;
  284. left: 0;
  285. right: 0;
  286. display: flex;
  287. padding: 18px;
  288. flex-direction: row;
  289. flex-wrap: wrap;
  290. align-items: center;
  291. align-content: flex-start;
  292. justify-content: flex-start;
  293. .gui-file-item {
  294. position: relative;
  295. display: flex;
  296. width: 25%;
  297. height: 19.6%;
  298. padding: 1%;
  299. .item {
  300. position: relative;
  301. background: #927a6a;
  302. height: 100%;
  303. width: 12%;
  304. padding: 6px 3px;
  305. font-size: 13px;
  306. border: 1px solid #5d4848;
  307. border-radius: 3px;
  308. writing-mode: vertical-lr;
  309. text-orientation: upright;
  310. text-overflow: ellipsis;
  311. white-space: nowrap;
  312. overflow: hidden;
  313. cursor: pointer;
  314. transform: skew(4deg,0);
  315. transition: transform .2s;
  316. &.query {
  317. background: #ffddc6;
  318. }
  319. &.cur, &:hover {
  320. z-index: 22;
  321. background: #A16222;
  322. border: 1px solid #bbbbbb;
  323. transform: scale(1.2) skew(4deg,0);
  324. }
  325. }
  326. }
  327. }
  328. }
  329. }
  330. .hc-gui-info-data {
  331. position: relative;
  332. height: 100%;
  333. flex: 1;
  334. padding-left: 40px;
  335. .hc-gui-data-container {
  336. position: relative;
  337. height: calc(100% - 50px);
  338. .info-item {
  339. position: relative;
  340. display: flex;
  341. color: #101010;
  342. .title {
  343. margin-right: 14px;
  344. font-weight: bold;
  345. span + span {
  346. margin-left: 29px;
  347. }
  348. }
  349. .text {
  350. flex: 1;
  351. }
  352. }
  353. .info-item + .info-item {
  354. margin-top: 14px;
  355. }
  356. }
  357. .btn-box {
  358. position: relative;
  359. height: 50px;
  360. display: flex;
  361. padding-right: 10px;
  362. justify-content: flex-end;
  363. align-items: flex-end;
  364. }
  365. }
  366. }