query.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. *{
  2. margin:0;
  3. padding:0;
  4. box-sizing: border-box;
  5. }
  6. body{
  7. background-color:rgb(255, 255, 255);
  8. }
  9. /* 滚动条凹槽的颜色,还可以设置边框属性 */
  10. ::-webkit-scrollbar-track-piece {
  11. background-color: #f8f8f8;
  12. -webkit-border-radius: 2em;
  13. -moz-border-radius: 2em;
  14. border-radius: 2em;
  15. }
  16. /* 滚动条的宽度 */
  17. ::-webkit-scrollbar {
  18. width: 6px;
  19. height: 6px;
  20. }
  21. /* 滚动条的设置 */
  22. ::-webkit-scrollbar-thumb {
  23. background-color: #ddd;
  24. background-clip: padding-box;
  25. -webkit-border-radius: 2em;
  26. -moz-border-radius: 2em;
  27. border-radius: 2em;
  28. }
  29. /* 滚动条鼠标移上去 */
  30. ::-webkit-scrollbar-thumb:hover {
  31. background-color: #bbb;
  32. }
  33. .hc-layout-box{
  34. position: relative;
  35. height: 100vh;
  36. width: 100%;
  37. padding: 24px;
  38. }
  39. .main_box{
  40. height: 100%;
  41. position: relative;
  42. --el-card-padding: 24px;
  43. --el-card-bg-color: #f1f5f8;
  44. --el-card-border-radius: 10px;
  45. --el-text-color-primary: #1A1A1A;
  46. box-shadow: -2px 0 10px #20253208, 0 10px 21px 20px #20253208;
  47. border: 1px solid #e9e9e9;;
  48. }
  49. .main_nox_header{
  50. height: 70px;
  51. padding: 14px 24px;
  52. border-bottom: 1px solid #e9e9e9;
  53. overflow-x: auto;
  54. overflow-y: hidden;
  55. text-align: center;
  56. font-size: 36px;
  57. background: #f1f5f8;
  58. }
  59. .maininfo{
  60. display: flex;
  61. height:calc(100vh - 120px);
  62. padding: 10px;
  63. background: #f1f5f8;
  64. }
  65. .leftbox{
  66. /* background: rgb(255, 255, 255);
  67. box-shadow: -2px 0 10px #20253208, 0 10px 21px 20px #20253208;
  68. width: 382px;
  69. height: 99.9%;
  70. border: 1px solid #e9e9e9;
  71. border-style: solid;
  72. padding: 10px;
  73. */
  74. /* width: 382px; */
  75. /* background-color: #fff;
  76. padding: 14px;
  77. border-radius: 4px;
  78. -webkit-box-shadow: 0 2px 12px 0 rgba(0,0,0,.2);
  79. box-shadow: 0 2px 12px 0 rgba(0,0,0,.2); */
  80. border: 1px solid #e9e9e9;
  81. border-radius: 4px;
  82. overflow: auto;
  83. margin-right: 20px;
  84. position: relative;
  85. background: #f1f5f8;
  86. border-radius: 10px;
  87. margin-right: 24px;
  88. box-shadow: -2px 0 10px 0 rgb(32 37 50 / 3%), 0 10px 21px 20px rgb(32 37 50 / 3%);
  89. padding: 10px;
  90. }
  91. .treebox{
  92. /* padding: 10px; */
  93. }
  94. .contentbox{
  95. flex: 1;
  96. background: #f1f5f8;
  97. /* border-radius: 10px; */
  98. border-radius: 4px;
  99. -webkit-box-shadow: 0 2px 12px 0 rgba(0,0,0,.2);
  100. box-shadow: 0 2px 12px 0 rgba(0,0,0,.2);
  101. padding: 0 20px 40px 20px;
  102. height: 100%;
  103. }
  104. .contentbox_head{
  105. width: 100%;
  106. height: 60px;
  107. border-style: none;
  108. border-color: unset;
  109. /* box-shadow: rgb(164 163 163 / 24%) 0px 0px 8px 0px; */
  110. color: rgb(186, 186, 186);
  111. border-radius: 0px;
  112. font-size: 14px;
  113. padding: 0px;
  114. text-align: left;
  115. line-height: 20px;
  116. font-weight: normal;
  117. font-style: normal;
  118. background-color: transparent;
  119. /* background: rgb(254, 254, 254); */
  120. /* border: 1px solid #e9e9e9; */
  121. line-height: 60px;
  122. }
  123. .contentbox_table{
  124. margin-top: 10px;
  125. width: 100%;
  126. height:85%;
  127. display: inline-grid;
  128. border: 1px solid #e9e9e9;
  129. }
  130. .contentbox_table1{
  131. margin-top: 10px;
  132. width: 100%;
  133. /* padding: 10px; */
  134. height: 80%;
  135. display: inline-grid;
  136. border: 1px solid #e9e9e9;
  137. }
  138. .contentbox_head{
  139. display: flex;
  140. justify-content: space-between;
  141. }
  142. .serachbox{
  143. display: flex;
  144. width: 80%;
  145. position: relative;
  146. }
  147. .serachbox_info{
  148. position: absolute;
  149. width: 100%;
  150. /* height: 380px; */
  151. right:0 ;
  152. top:50px;
  153. z-index: 1000;
  154. border-style: none;
  155. border-color: unset;
  156. box-shadow: rgba(203, 201, 201, 0.4) 0px 2px 6px 0px;
  157. font-size: 14px;
  158. padding: 0px;
  159. text-align: center;
  160. line-height: 20px;
  161. background: #f1f5f8;
  162. padding: 10px;
  163. }
  164. .mask{
  165. animation: animate 0.5s ease ;
  166. animation-iteration-count: 1;
  167. overflow: hidden;
  168. }
  169. .mask1{
  170. animation: animate1 0.5s ease ;
  171. animation-iteration-count: 1;
  172. overflow: hidden;
  173. }
  174. @keyframes animate{
  175. from {
  176. height: 0px;
  177. }
  178. to {
  179. height: 380px;
  180. }
  181. }
  182. @keyframes animate1{
  183. from {
  184. height: 0px;
  185. }
  186. to {
  187. height: 450px;
  188. }
  189. }
  190. .form_box{
  191. margin:10px 0px 10px 60px;
  192. }
  193. .mp20{
  194. margin-top: 80px;
  195. }
  196. .form_box_btn{
  197. text-align: right;
  198. }
  199. .page_box{
  200. float: right;
  201. margin-top: 20px;
  202. display: flex;
  203. align-items: center;
  204. }
  205. .page_box1{
  206. /* float: right; */
  207. margin-top: 20px;
  208. text-align: right;
  209. /* align-items: center; */
  210. }
  211. .sizeicon{
  212. font-size: 24px;
  213. cursor: pointer;
  214. }
  215. .coursor{
  216. cursor: pointer;
  217. }
  218. .ManualSorting {
  219. width: 100%;
  220. height: 100%;
  221. }
  222. .flexEnd {
  223. display: flex;
  224. justify-content: flex-end;
  225. }
  226. .flexBetween {
  227. display: flex;
  228. justify-content: space-between;
  229. }
  230. .flexItemsC {
  231. display: flex;
  232. align-items: center;
  233. }
  234. .marleft10 {
  235. margin-left: 10px;
  236. }
  237. .marright20{
  238. margin-right: 20px;
  239. }
  240. .dialog-title_box{
  241. display: flex;
  242. align-items: center;
  243. font-weight: bold;
  244. }
  245. .title-textsmall{
  246. font-size: smaller;
  247. margin-left: 5px;
  248. }
  249. .button-right{
  250. margin-left: 5px;
  251. }
  252. .fontoringe{
  253. color: orange;
  254. }
  255. .bulefont{
  256. color: #409eff;
  257. }
  258. .hc-csc-meta-table-data {
  259. position: relative;
  260. height:480px;
  261. overflow: auto;
  262. }
  263. .hc-csc-meta-table {
  264. border-spacing: 0;
  265. border: 1px solid #E9E9E9;
  266. border-collapse: collapse;
  267. width: 100%;
  268. }
  269. .hc-csc-meta-table-tr {
  270. position: relative;
  271. background: #f1f5f8;
  272. color: #50545e;
  273. transition: background-color .25s ease;
  274. }
  275. .hc-csc-meta-table-tr1 {
  276. position: relative;
  277. background:#dae8f3;
  278. color: #50545e;
  279. transition: background-color .25s ease;
  280. }
  281. .hc-csc-meta-table-tr:hover {
  282. background: #e6f2ff;
  283. }
  284. .hc-csc-meta-table-td {
  285. text-align: left;
  286. padding: 10px 12px;
  287. font-size: 14px;
  288. border: 1px solid #E9E9E9;
  289. }
  290. .hc-csc-meta-table-td .name{
  291. width: 150px;
  292. }
  293. .hc-csc-meta-table-td .title{
  294. color: #1a1a1a;
  295. text-align: center;
  296. background-color: #dae8f3;
  297. }
  298. .pdfbox{
  299. width: 100%;
  300. display: flex;
  301. justify-content: space-between;
  302. padding-left: 20px;
  303. padding-right: 20px;
  304. }
  305. .pdfiframe{
  306. width: 75%;
  307. height:calc(100vh - 100px);
  308. border: 1px solid #E9E9E9;
  309. }
  310. .pdfiframe1{
  311. width: 100%;
  312. height:calc(100vh - 100px);
  313. /* height: 800px; */
  314. border: 1px solid #E9E9E9;
  315. }
  316. .pdftitle{
  317. width: 25%;
  318. height:calc(100vh - 100px);
  319. border: 1px solid #E9E9E9;
  320. }
  321. .pdftitlename{
  322. text-align: center;
  323. font-weight: bold;
  324. font-size: 18px;
  325. align-items: center;
  326. height: 46px;
  327. background-color:lightsteelblue;
  328. }
  329. .mlft{
  330. margin-left: 5px;
  331. }