taskPage.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. body {
  2. background-color: #F8F8F8;
  3. }
  4. * {
  5. padding: 0;
  6. margin: 0;
  7. border: 0;
  8. }
  9. ul,
  10. li,
  11. ol {
  12. list-style: none;
  13. }
  14. .hbtn {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. width: 150px;
  19. height: 35px;
  20. margin-left: 15px;
  21. background: #fff;
  22. border: 1px solid #16AE69;
  23. color: #16AE69;
  24. font-size: 16px;
  25. border-radius: 4px;
  26. cursor: pointer;
  27. }
  28. .hbtn.disabled {
  29. border-color: #999;
  30. color: #999;
  31. cursor: default;
  32. }
  33. .hbtn.disabled:hover {
  34. border-color: #999;
  35. color: #999;
  36. cursor: default;
  37. background: #fff;
  38. }
  39. .hbtn:hover {
  40. background: #16AE69;
  41. color: #fff;
  42. }
  43. .hgc_dialog {
  44. position: fixed;
  45. width: 100%;
  46. height: 100%;
  47. background: rgba(0, 0, 0, 0.3);
  48. top: 0;
  49. left: 0;
  50. z-index: 1000;
  51. }
  52. .hgc_dialog .hgc_dialogContent {
  53. position: fixed;
  54. width: 500px;
  55. left: calc((100% - 500px)/2);
  56. top: calc((100% - 300px)/2);
  57. background: #fff;
  58. }
  59. .hgc_dialog .hgc_dialogContent .warning {
  60. color: #FF4D59;
  61. }
  62. .hgc_dialog .hgc_dialogContent h2 {
  63. display: flex;
  64. align-items: center;
  65. justify-content: space-between;
  66. height: 40px;
  67. padding: 0 15px;
  68. background: #16AE69;
  69. color: #fff;
  70. font-size: 16px;
  71. margin: 0;
  72. cursor: move;
  73. }
  74. .hgc_dialog .hgc_dialogContent h2 i {
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. width: 20px;
  79. height: 20px;
  80. font-style: normal;
  81. font-size: 18px;
  82. cursor: pointer;
  83. }
  84. .hgc_dialog .hgc_dialogContent .content {
  85. padding: 20px 10px;
  86. }
  87. .hgc_dialog .hgc_dialogContent .btns {
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. padding: 20px 0;
  92. }
  93. .hgc_dialog .hgc_dialogContent .btns .hbtn {
  94. height: 35px;
  95. width: 88px;
  96. }
  97. .hgc_table {
  98. width: 100%;
  99. border-collapse: collapse;
  100. }
  101. .hgc_table thead {
  102. background: #FAFAFA;
  103. }
  104. .hgc_table tr:nth-child(2n) {
  105. background: #FAFAFA;
  106. }
  107. .hgc_table tr td:nth-child(1),
  108. .hgc_table tr td:nth-child(2),
  109. .hgc_table tr td:nth-child(3),
  110. .hgc_table tr td:nth-child(4),
  111. .hgc_table tr td:nth-child(5),
  112. .hgc_table tr th:nth-child(1),
  113. .hgc_table tr th:nth-child(2),
  114. .hgc_table tr th:nth-child(3),
  115. .hgc_table tr th:nth-child(4),
  116. .hgc_table tr th:nth-child(5) {
  117. text-align: left;
  118. }
  119. .hgc_table tr td:nth-child(1) {
  120. position: relative;
  121. width: 200px;
  122. }
  123. .hgc_table tr td:nth-child(1) .examName {
  124. position: absolute;
  125. width: 180px;
  126. top: 50%;
  127. left: 50%;
  128. transform: translate(-50%, -50%);
  129. overflow: hidden;
  130. height: 20px;
  131. line-height: 20px;
  132. white-space: nowrap;
  133. text-overflow: ellipsis;
  134. margin: 0;
  135. }
  136. .hgc_table tr td:nth-child(2) {
  137. min-width: 50px;
  138. }
  139. .hgc_table tr td:last-child {
  140. min-width: 190px;
  141. }
  142. .hgc_table tr,
  143. .hgc_table td,
  144. .hgc_table th {
  145. border: 1px solid #eee;
  146. padding: 10px;
  147. text-align: center;
  148. font-size: 12px;
  149. }
  150. .hgc_table .update {
  151. display: flex;
  152. align-items: center;
  153. }
  154. .hgc_table .update .msg {
  155. position: relative;
  156. cursor: pointer;
  157. }
  158. .hgc_table .update .msg:hover .reason {
  159. display: block;
  160. }
  161. .hgc_table .update .msg .triangle {
  162. display: block;
  163. width: 8px;
  164. height: 8px;
  165. margin-left: 10px;
  166. border-left: 1px solid #999;
  167. border-bottom: 1px solid #999;
  168. transform: rotate(-45deg);
  169. }
  170. .hgc_table .update .msg .reason {
  171. position: absolute;
  172. padding: 5px;
  173. background: rgba(0, 0, 0, 0.5);
  174. bottom: 20px;
  175. left: 50%;
  176. transform: translateX(-50%);
  177. color: #fff;
  178. border-radius: 3px;
  179. min-width: 250px;
  180. font-style: normal;
  181. display: none;
  182. }
  183. .hgc_table .update .msg .reason:after {
  184. content: '';
  185. position: absolute;
  186. width: 0;
  187. height: 0;
  188. border: 7px solid transparent;
  189. border-top-color: rgba(0, 0, 0, 0.5);
  190. bottom: -14px;
  191. left: 50%;
  192. transform: translateX(-50%);
  193. }
  194. .hgc_table .operator {
  195. display: flex;
  196. justify-content: center;
  197. }
  198. .hgc_table .operator a {
  199. display: flex;
  200. align-items: center;
  201. cursor: pointer;
  202. position: relative;
  203. line-height: 20px;
  204. padding: 0 10px;
  205. }
  206. .hgc_table .operator a:after {
  207. content: '';
  208. position: absolute;
  209. width: 1px;
  210. height: 14px;
  211. left: 0;
  212. top: 50%;
  213. margin-top: -7px;
  214. }
  215. .hgc_table .operator a.artical i {
  216. background: url('/images/assist/icon_hgc_taskArtical.svg') no-repeat center;
  217. background-size: contain;
  218. }
  219. .hgc_table .operator a.opreator i {
  220. background: url('/images/assist/icon_hgc_operator.svg') no-repeat center;
  221. background-size: contain;
  222. }
  223. .hgc_table .operator a.complete i {
  224. background: url('/images/assist/icon_hgc_cmoplete.svg') no-repeat center;
  225. background-size: contain;
  226. }
  227. .hgc_table .operator a i {
  228. width: 14px;
  229. height: 14px;
  230. }
  231. .hgc_taskPage {
  232. font-size: 16px;
  233. color: #333;
  234. background: #fff;
  235. }
  236. .hgc_taskPage .warning {
  237. color: #FF4D59;
  238. }
  239. .hgc_taskPage .notice {
  240. color: #FF943E;
  241. }
  242. .hgc_taskPage .theme {
  243. color: #16AE69;
  244. }
  245. .hgc_taskPage .blue {
  246. color: #448CEE;
  247. }
  248. .hgc_taskPage form {
  249. padding: 0;
  250. }
  251. .hgc_taskPage .hgc_totalHeader {
  252. display: flex;
  253. justify-content: flex-start;
  254. height: 60px;
  255. background: #F3F8F9;
  256. }
  257. .hgc_taskPage .hgc_totalHeader span {
  258. width: 150px;
  259. height: 60px;
  260. text-align: center;
  261. line-height: 60px;
  262. cursor: pointer;
  263. font-size: 16px;
  264. }
  265. .hgc_taskPage .hgc_totalHeader span a {
  266. display: block;
  267. color: #333;
  268. }
  269. .hgc_taskPage .hgc_totalHeader span.active {
  270. font-weight: bold;
  271. }
  272. .hgc_taskPage .searchArea {
  273. display: flex;
  274. align-items: center;
  275. justify-content: space-between;
  276. padding: 20px 15px;
  277. background: #fff;
  278. font-size: 14px;
  279. }
  280. .hgc_taskPage .searchArea .searchLeft {
  281. flex: 1;
  282. display: flex;
  283. align-items: center;
  284. }
  285. .hgc_taskPage .searchArea .searchLeft .hbtn {
  286. width: 80px;
  287. height: 30px;
  288. font-size: 14px;
  289. }
  290. .hgc_taskPage .searchArea .title {
  291. padding-left: 10px;
  292. border-left: 2px solid #16AE69;
  293. }
  294. .hgc_taskPage .searchArea .conditionItem {
  295. display: flex;
  296. align-items: center;
  297. margin-left: 10px;
  298. }
  299. .hgc_taskPage .searchArea .conditionItem .btn {
  300. width: 80px;
  301. font-size: 14px;
  302. }
  303. .hgc_taskPage .searchArea .conditionItem em {
  304. font-style: normal;
  305. }
  306. .hgc_taskPage .searchArea .conditionItem select {
  307. width: 110px;
  308. height: 35px;
  309. background: #F8F8F8;
  310. border: 1px solid #EEEEEE;
  311. border-radius: 4px;
  312. outline: none;
  313. }
  314. .hgc_taskPage .searchArea .conditionItem input {
  315. width: 350px;
  316. height: 35px;
  317. background: #F8F8F8;
  318. border: 1px solid #EEEEEE;
  319. border-radius: 4px;
  320. outline: none;
  321. padding-left: 10px;
  322. }
  323. .hgc_taskPage .tableBox {
  324. padding: 0 15px;
  325. }
  326. .hgc_taskPage .hgc_dialog {
  327. display: none;
  328. }
  329. .hgc_taskPage .hgc_dialog .warning {
  330. font-size: 12px;
  331. }
  332. .hgc_taskPage .hgc_dialog .conditionItem {
  333. display: flex;
  334. align-items: center;
  335. margin-left: 40px;
  336. }
  337. .hgc_taskPage .hgc_dialog .conditionItem em {
  338. font-style: normal;
  339. }
  340. .hgc_taskPage .hgc_dialog .conditionItem .ch {
  341. width: 30%;
  342. padding: 10px 0;
  343. font-size: 14px;
  344. }
  345. .hgc_taskPage .hgc_dialog .conditionItem select {
  346. width: 300px;
  347. background: #F8F8F8;
  348. border: 1px solid #EEEEEE;
  349. border-radius: 4px;
  350. outline: none;
  351. }
  352. .hgc_taskPage .hgc_dialog .conditionItem input[type="text"] {
  353. width: 420px;
  354. height: 35px;
  355. background: #F8F8F8;
  356. border: 1px solid #EEEEEE;
  357. border-radius: 4px;
  358. outline: none;
  359. padding-left: 10px;
  360. }
  361. .hgc_dialog .hgc_table tr td:nth-child(1) {
  362. width: auto;
  363. }
  364. .hgc_dialog .hgc_table tr td:nth-child(2) {
  365. min-width: auto;
  366. }
  367. .hgc_dialog .hgc_table tr td:last-child {
  368. min-width: auto;
  369. }