query.scss 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. .hc-using-query-page {
  2. position: relative;
  3. height:100%;
  4. overflow: hidden;
  5. .hc-query-card-box {
  6. position: relative;
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. //筛选关键词
  12. .hc-tag-flex-box {
  13. position: relative;
  14. margin-bottom: 14px;
  15. display: flex;
  16. align-items: center;
  17. justify-content: space-between;
  18. width: 100%;
  19. flex-shrink: 0;
  20. .hc-tag-box {
  21. position: relative;
  22. width: calc(100% - 40px);
  23. overflow: hidden;
  24. }
  25. .scrollbar-content {
  26. white-space: nowrap;
  27. padding: 0;
  28. }
  29. }
  30. //搜索框
  31. .hc-query-input-box {
  32. position: relative;
  33. flex-shrink: 0;
  34. .el-input {
  35. --el-input-border-radius: 10px;
  36. --el-input-height: 65px;
  37. font-size: 16px;
  38. .el-input__wrapper {
  39. padding-right: 80px;
  40. }
  41. .el-input-group__prepend {
  42. padding: 0 12px;
  43. font-size: 14px;
  44. cursor: pointer;
  45. user-select: none;
  46. transition: .1s;
  47. .prepend-filtering {
  48. .name {
  49. margin-right: 5px;
  50. }
  51. }
  52. &:hover {
  53. background-color: #dedede;
  54. }
  55. }
  56. .el-input-group__append {
  57. padding: 0;
  58. .append-search-btn-box {
  59. position: relative;
  60. display: block;
  61. .search-btn {
  62. border-radius: 0 10px 0 0;
  63. }
  64. .search-btn + .search-btn {
  65. margin-top: 0.5px;
  66. border-radius: 0 0 10px 0;
  67. }
  68. }
  69. }
  70. .el-input-group__append .el-button,
  71. .el-input-group__append .el-input,
  72. .el-input-group__prepend .el-button,
  73. .el-input-group__prepend .el-input {
  74. font-size: var(--el-font-size-base);
  75. }
  76. .el-input-group__append .el-button,
  77. .el-input-group__append .el-select,
  78. .el-input-group__prepend .el-button,
  79. .el-input-group__prepend .el-select {
  80. display: block;
  81. margin: 0;
  82. }
  83. .el-input-group__append button.el-button,
  84. .el-input-group__append button.el-button:hover,
  85. .el-input-group__append div.el-select .el-input__wrapper,
  86. .el-input-group__append div.el-select:hover .el-input__wrapper,
  87. .el-input-group__prepend button.el-button,
  88. .el-input-group__prepend button.el-button:hover,
  89. .el-input-group__prepend div.el-select .el-input__wrapper,
  90. .el-input-group__prepend div.el-select:hover .el-input__wrapper {
  91. background-color: var(--el-button-bg-color);
  92. color: var(--el-button-text-color);
  93. font-weight: 400;
  94. border: 0;
  95. }
  96. .el-input-group__append button.el-button:hover,
  97. .el-input-group__append div.el-select:hover .el-input__wrapper,
  98. .el-input-group__prepend button.el-button:hover,
  99. .el-input-group__prepend div.el-select:hover .el-input__wrapper {
  100. background-color: var(--el-button-hover-bg-color);
  101. }
  102. .el-input-group__append .el-button.is-disabled,
  103. .el-input-group__append .el-button.is-disabled:focus,
  104. .el-input-group__append .el-button.is-disabled:hover {
  105. color: var(--el-button-disabled-text-color);
  106. cursor: not-allowed;
  107. background-image: none;
  108. background-color: var(--el-button-disabled-bg-color);
  109. border-color: var(--el-button-disabled-border-color);
  110. }
  111. }
  112. .hc-icon-mic {
  113. color: var(--hc-text-color);
  114. position: absolute;
  115. top: 2px;
  116. right: 102px;
  117. height: 61px;
  118. width: 61px;
  119. border-radius: 4px;
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. font-size: 28px;
  124. cursor: pointer;
  125. transition: .1s;
  126. &:hover {
  127. background: var(--el-color-primary-light-8);
  128. }
  129. }
  130. }
  131. //筛选搜索
  132. .hc-query-filtering-collapse-box {
  133. position: relative;
  134. flex-shrink: 0;
  135. .filtering-collapse {
  136. position: absolute;
  137. width: 100%;
  138. z-index: 99;
  139. border-radius: 10px;
  140. margin-top: 1px;
  141. .el-collapse {
  142. --el-collapse-header-height: 0;
  143. --el-collapse-border-color: inherit;
  144. --el-collapse-header-bg-color: inherit;
  145. --el-collapse-header-text-color: inherit;
  146. --el-collapse-header-font-size: inherit;
  147. --el-collapse-content-bg-color: #E7EEF4;
  148. --el-collapse-content-font-size: inherit;
  149. --el-collapse-content-text-color: inherit;
  150. border: 0 !important;
  151. }
  152. .el-collapse-item__header {
  153. display: block;
  154. user-select: none;
  155. }
  156. .hc-collapse-item-header {
  157. position: relative;
  158. width: 100%;
  159. display: flex;
  160. align-items: center;
  161. .hc-search-filtering-title {
  162. margin-right: 24px;
  163. font-size: 16px;
  164. color: var(--el-color-primary);
  165. .name {
  166. margin-right: 5px;
  167. }
  168. }
  169. }
  170. .el-collapse-item__arrow {
  171. display: none;
  172. }
  173. .el-collapse-item__wrap {
  174. border-bottom: 0;
  175. border-radius: 10px;
  176. }
  177. .el-collapse-item__content {
  178. padding-bottom: 0;
  179. }
  180. }
  181. .hc-search-hot-key {
  182. position: relative;
  183. color: #9A9A9A;
  184. padding: 16px;
  185. font-size: 14px;
  186. }
  187. .hc-search-screening-item {
  188. position: relative;
  189. display: flex;
  190. align-items: center;
  191. padding: 0 20px;
  192. font-size: 14px;
  193. .title {
  194. position: relative;
  195. }
  196. .screening-key {
  197. position: relative;
  198. padding: 1px 12px;
  199. border-radius: 100px;
  200. cursor: pointer;
  201. display: flex;
  202. align-items: center;
  203. transition: background 0.2s, color 0.2s;
  204. &:hover {
  205. background: var(--el-color-primary-light-8);
  206. }
  207. &.cut {
  208. background: var(--el-color-primary);
  209. color: white;
  210. cursor: default;
  211. }
  212. }
  213. .screening-key + .screening-key {
  214. margin-left: 10px;
  215. }
  216. }
  217. .hc-search-screening-item + .hc-search-screening-item {
  218. margin-top: 14px;
  219. }
  220. }
  221. //数据内容区域
  222. .hc-gather-card-box {
  223. position: relative;
  224. flex: 1;
  225. flex-basis: auto;
  226. margin-top: 10px;
  227. .hc-gather-card-table {
  228. position: relative;
  229. height: 100%;
  230. .hc-card-item-main {
  231. position: relative;
  232. height: 100%;
  233. }
  234. .hc-card-item-file {
  235. display: none;
  236. margin-top: 24px;
  237. .hc-icon-close {
  238. font-size: 20px;
  239. }
  240. }
  241. &.file-table {
  242. .hc-card-item-main {
  243. height: calc(100% - 344px);
  244. }
  245. .hc-card-item-file {
  246. display: block;
  247. height: 320px;
  248. }
  249. }
  250. &.gui .hc-card-item-main {
  251. .el-carousel.hc-file-cabinet {
  252. height: 100%;
  253. .el-carousel__container {
  254. height: 100%;
  255. }
  256. }
  257. .hc-file-cabinet-gui {
  258. position: relative;
  259. height: 100%;
  260. display: flex;
  261. padding: 24px;
  262. flex-direction: row;
  263. flex-wrap: wrap;
  264. align-items: center;
  265. align-content: flex-start;
  266. justify-content: flex-start;
  267. .gui-item {
  268. position: relative;
  269. height: 100%;
  270. width: 25%;
  271. display: flex;
  272. align-items: center;
  273. justify-content: center;
  274. .gui-view {
  275. position: relative;
  276. cursor: pointer;
  277. transition: transform .2s;
  278. img {
  279. width: 100%;
  280. }
  281. .num {
  282. position: absolute;
  283. left: 50%;
  284. top: 13.5%;
  285. color: white;
  286. font-weight: bold;
  287. font-size: 14px;
  288. }
  289. &:hover {
  290. transform: scale(1.3);
  291. }
  292. }
  293. }
  294. &.hidden {
  295. visibility: hidden;
  296. }
  297. }
  298. //视频
  299. .hc-gui-video {
  300. position: absolute;
  301. height: 100%;
  302. width: 100%;
  303. top: 0;
  304. left: -8%;
  305. z-index: -1;
  306. opacity: 0;
  307. video {
  308. width: 100%;
  309. height: 100%;
  310. }
  311. &.animate__zoomIn {
  312. z-index: 2;
  313. opacity: 1;
  314. animation-duration: 1s;
  315. }
  316. }
  317. }
  318. }
  319. }
  320. }
  321. .hc-preloaded-video {
  322. position: absolute;
  323. bottom: 10px;
  324. z-index: -222;
  325. width: 200px;
  326. left: 10px;
  327. opacity: 0;
  328. }
  329. .el-card.hc-card-box {
  330. background: white;
  331. }
  332. }
  333. .hc-carry-spot-checks-pdf {
  334. position: relative;
  335. flex: 1 1 auto;
  336. height: 100%;
  337. transition: 0.2s;
  338. .hc-csc-pdf-btn {
  339. position: absolute;
  340. right: 0;
  341. top: 50%;
  342. color: white;
  343. font-size: 25px;
  344. z-index: 111;
  345. cursor: pointer;
  346. width: 36px;
  347. height: 40px;
  348. display: flex;
  349. padding-left: 6px;
  350. align-items: center;
  351. justify-content: center;
  352. border-radius: 150px 0 0 150px;
  353. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  354. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  355. background-size: 200%;
  356. transition: background-position 0.5s;
  357. &:hover {
  358. background-position: 100% 0;
  359. }
  360. }
  361. }
  362. .hc-carry-spot-checks-data {
  363. position: relative;
  364. height: 100%;
  365. width: 480px;
  366. padding-left: 14px;
  367. border-left: 1px solid #e9e9e9;
  368. transition: 0.2s;
  369. .hc-csc-switch {
  370. position: relative;
  371. margin-bottom: 10px;
  372. }
  373. .hc-csc-info-box {
  374. position: relative;
  375. background: #E7EEF4;
  376. border-radius: 10px;
  377. padding: 12px;
  378. height: 244px;
  379. margin-bottom: 20px;
  380. .hc-info-text-item {
  381. position: relative;
  382. font-size: 14px;
  383. display: flex;
  384. align-items: flex-start;
  385. .title {
  386. font-weight: bold;
  387. }
  388. .content {
  389. flex: 1;
  390. position: relative;
  391. color: #101010;
  392. }
  393. }
  394. .hc-info-text-item + .hc-info-text-item {
  395. margin-top: 8px;
  396. }
  397. }
  398. .hc-csc-data-box-height {
  399. position: relative;
  400. // background: #E7EEF4;
  401. border-radius: 10px;
  402. padding: 12px;
  403. height: calc(100% - 360px);
  404. margin-bottom: 16px;
  405. .hc-csc-associated-row {
  406. position: relative;
  407. text-align: left;
  408. display: flex;
  409. align-items: center;
  410. }
  411. .hc-table-info-btn {
  412. position: absolute;
  413. right: -5px;
  414. top: -12px;
  415. color: white;
  416. font-size: 20px;
  417. z-index: 111;
  418. cursor: pointer;
  419. border-radius: 50px;
  420. width: 34px;
  421. height: 34px;
  422. display: flex;
  423. align-items: center;
  424. justify-content: center;
  425. background: linear-gradient(to right, var(--el-color-primary-light-5), var(--el-color-primary), var(--el-color-primary-dark-2));
  426. box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
  427. background-size: 200%;
  428. transition: background-position 0.5s;
  429. &:hover {
  430. background-position: 100% 0;
  431. }
  432. }
  433. }
  434. .hc-csc-action-box {
  435. position: relative;
  436. // background:var(--el-drawer-bg-color);
  437. border-radius: 10px;
  438. padding: 12px;
  439. // height: 70px;
  440. .header-box {
  441. position: relative;
  442. display: flex;
  443. align-items: center;
  444. .title {
  445. flex: 1;
  446. color: #9A9A9A;
  447. font-size: 15px;
  448. }
  449. }
  450. .btn-box {
  451. position: relative;
  452. text-align: center;
  453. }
  454. }
  455. }
  456. .hc-collapse-item-title {
  457. flex: 1;
  458. position: relative;
  459. margin-left: 24px;
  460. display: flex;
  461. align-items: center;
  462. user-select: none;
  463. cursor: pointer;
  464. .icon {
  465. margin-right: 10px;
  466. color: #FFAF2D;
  467. font-size: 24px;
  468. }
  469. .title {
  470. flex: 1;
  471. position: relative;
  472. user-select: none;
  473. color: #50545E;
  474. font-size: 16px;
  475. font-weight: 400;
  476. }
  477. }
  478. .hc-gui-info-drawer {
  479. position: relative;
  480. height: 100%;
  481. width: 100%;
  482. display: flex;
  483. overflow-y: hidden;
  484. overflow-x: auto;
  485. .hc-gui-info-img {
  486. position: relative;
  487. height: 100%;
  488. display: flex;
  489. align-items: center;
  490. //justify-content: center;
  491. flex: 1;
  492. .gui-info-img {
  493. position: relative;
  494. height: 100%;
  495. padding-bottom: 10px;
  496. img {
  497. position: relative;
  498. height: 100%;
  499. }
  500. .gui-file-item-box {
  501. position: absolute;
  502. top: 0;
  503. bottom: 0;
  504. left: 0;
  505. right: 0;
  506. display: flex;
  507. padding: 18px;
  508. flex-direction: row;
  509. flex-wrap: wrap;
  510. align-items: center;
  511. align-content: flex-start;
  512. justify-content: flex-start;
  513. .gui-file-item {
  514. position: relative;
  515. display: flex;
  516. width: 25%;
  517. height: 19.6%;
  518. padding: 1%;
  519. .item {
  520. position: relative;
  521. background: #927a6a;
  522. height: 100%;
  523. width: 12%;
  524. padding: 6px 3px;
  525. font-size: 13px;
  526. border: 1px solid #5d4848;
  527. border-radius: 3px;
  528. writing-mode: vertical-lr;
  529. text-orientation: upright;
  530. text-overflow: ellipsis;
  531. white-space: nowrap;
  532. overflow: hidden;
  533. cursor: pointer;
  534. transition: transform .2s;
  535. &.query {
  536. background: #ffddc6;
  537. color: #101010;
  538. }
  539. &.cur, &:hover {
  540. z-index: 22;
  541. color: white;
  542. background: #A16222;
  543. border: 1px solid #bbbbbb;
  544. transform: scale(1.2);
  545. }
  546. }
  547. }
  548. }
  549. }
  550. }
  551. .hc-gui-info-data {
  552. position: relative;
  553. height: 100%;
  554. //width: 400px;
  555. padding-left: 40px;
  556. .hc-gui-data-container {
  557. position: relative;
  558. height: calc(100% - 70px);
  559. img {
  560. height: 550px;
  561. }
  562. .hc-gui-info-item-box {
  563. position: absolute;
  564. top: 58px;
  565. left: 38px;
  566. right: 28px;
  567. height: 400px;
  568. overflow: hidden;
  569. .hc-gui-info-item {
  570. position: relative;
  571. height: 100%;
  572. width: 100%;
  573. .info-item {
  574. position: relative;
  575. display: flex;
  576. color: #101010;
  577. .title {
  578. margin-right: 14px;
  579. font-weight: bold;
  580. span + span {
  581. margin-left: 29px;
  582. }
  583. }
  584. .text {
  585. flex: 1;
  586. }
  587. }
  588. .info-item-name {
  589. color: #101010;
  590. margin-top: 30px;
  591. line-height: 1.8;
  592. }
  593. .hc-info-item-bottom {
  594. position: absolute;
  595. bottom: 4px;
  596. right: -2px;
  597. left: 4px;
  598. }
  599. .info-item + .info-item {
  600. margin-top: 14px;
  601. }
  602. }
  603. }
  604. }
  605. .btn-box {
  606. position: relative;
  607. height: 50px;
  608. display: flex;
  609. padding-right: 10px;
  610. justify-content: flex-end;
  611. align-items: flex-end;
  612. }
  613. }
  614. }
  615. .hc-query-card-box.hc-card-box.el-card {
  616. .el-card__header {
  617. overflow-x: hidden;
  618. }
  619. .hc-card-header-box {
  620. display: block;
  621. width: 100%;
  622. .hc-card-header {
  623. margin: 0 -15px;
  624. margin-top: 5px;
  625. }
  626. }
  627. }
  628. .hc-carry-spot-checks-target.el-overlay {
  629. position: absolute;
  630. margin: -24px;
  631. height: revert;
  632. background-color: transparent;
  633. .hc-drawer-box.el-drawer {
  634. --el-drawer-bg-color: transparent;
  635. .el-drawer__body {
  636. padding: 24px;
  637. overflow: hidden;
  638. .el-card__body {
  639. padding: 10px;
  640. }
  641. .hc-card-main-box {
  642. display: flex;
  643. }
  644. }
  645. }
  646. }
  647. .hc-csc-action-box .btn-box {
  648. .el-button + .el-button {
  649. margin-left: 50px;
  650. }
  651. }
  652. .hc-node-tree-collapse.el-collapse {
  653. --el-collapse-header-height: 60px;
  654. border: 0;
  655. .el-collapse-item {
  656. margin: 0 0 16px;
  657. background-color: #f1f5f8;
  658. border: 1px solid #E9E9E9;
  659. border-radius: 4px;
  660. }
  661. .el-collapse-item__header {
  662. background-color: transparent;
  663. font-weight: 400;
  664. border-bottom: 0;
  665. cursor: default;
  666. font-size: 14px;
  667. border: 0;
  668. width: 100%;
  669. text-align: left;
  670. }
  671. .el-collapse-item.is-active .el-collapse-item__header.is-active {
  672. background-color: #E7EEF4;
  673. }
  674. .el-collapse-item__wrap {
  675. background-color: transparent;
  676. border-bottom: 0;
  677. .el-collapse-item__content {
  678. position: relative;
  679. font-size: 14px;
  680. line-height: initial;
  681. padding: 24px;
  682. }
  683. }
  684. }
  685. .hover-hand{
  686. cursor: pointer;
  687. }
  688. .col_tree{
  689. font-size: 16px;
  690. }
  691. .flex_box{
  692. display: flex;
  693. justify-content: center;
  694. align-items: center;
  695. }
  696. .el-overlay .el-drawer.hc-new-drawer-box .el-drawer__body{
  697. display: flex;
  698. }
  699. .hc-csc-action-box-height {
  700. position: relative;
  701. // background: #E7EEF4;
  702. border-radius: 10px;
  703. // padding: 12px;
  704. // height: 240px;
  705. .header-box {
  706. position: relative;
  707. display: flex;
  708. align-items: center;
  709. .title {
  710. flex: 1;
  711. color: #9A9A9A;
  712. font-size: 15px;
  713. }
  714. }
  715. .textarea-box {
  716. margin-top: 12px;
  717. }
  718. .btn-box {
  719. position: relative;
  720. // margin-top: 20px;
  721. text-align: center;
  722. }
  723. }