humanResources.css 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. html,
  2. body {
  3. width: 100% !important;
  4. /* width: 4874px !important; */
  5. /* min-height: 2743px; */
  6. height: 100%;
  7. font-size: 20px;
  8. color: #fff;
  9. font-family: 'Microsoft YaHei';
  10. /* background-image: url("../images/indexBg.png"); */
  11. /* background-image: url("../images/newImage/4ca24a27-c946-4f59-90a5-af00530ddb59.png"); */
  12. background-image: url("../images/humanResources/bg.png");
  13. background-repeat: no-repeat;
  14. background-size: 100% 100%;
  15. overflow-y: hidden;
  16. }
  17. :root {
  18. /* --bg: #dcf0fc0c; */
  19. --bgc: #63b6ff11;
  20. }
  21. /* 强制去掉滚动条 */
  22. /* html {
  23. overflow-x: hidden !important;
  24. } */
  25. * {
  26. -webkit-user-select: none;
  27. -moz-user-select: none;
  28. -ms-user-select: none;
  29. user-select: none;
  30. }
  31. img *,
  32. *,
  33. *:before,
  34. *:after {
  35. padding: 0;
  36. margin: 0;
  37. box-sizing: border-box;
  38. }
  39. a {
  40. text-decoration: none;
  41. cursor: pointer;
  42. }
  43. [v-cloak] {
  44. display: none;
  45. }
  46. .app_box {
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .app_box {
  51. width: 100%;
  52. height: 100%;
  53. padding: 40px 30px 20px;
  54. box-sizing: border-box;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. align-items: center;
  59. }
  60. .page_title {
  61. width: 100%;
  62. height: 6%;
  63. font-size: 90px;
  64. font-family: Source Han Sans CN;
  65. font-weight: bold;
  66. text-align: center;
  67. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  68. -webkit-background-clip: text;
  69. -webkit-text-fill-color: transparent;
  70. }
  71. .page_main {
  72. width: 100%;
  73. height: calc(74% - 100px);
  74. margin-top: 1%;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. }
  79. .page_btm {
  80. width: 100%;
  81. height: 20%;
  82. background-color: var(--bgc);
  83. }
  84. .flex_column {
  85. display: flex;
  86. flex-direction: column;
  87. justify-content: space-around;
  88. align-items: center;
  89. }
  90. .flex_sp {
  91. display: flex;
  92. justify-content: space-between;
  93. align-items: center;
  94. }
  95. .flex {
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. }
  100. .page_main_left,
  101. .page_main_right {
  102. width: 35%;
  103. height: 100%;
  104. }
  105. img {
  106. width: 100%;
  107. height: 100%;
  108. }
  109. .page_main_center {
  110. width: calc(50% - 30px);
  111. height: 100%;
  112. position: relative;
  113. }
  114. .page_main_center .page_main_center_image {
  115. width: 100%;
  116. height: 115%;
  117. transform: scale(1.15) translateY(0.5%);
  118. }
  119. .center_top {
  120. width: 100%;
  121. height: 210px;
  122. padding: 0 15%;
  123. box-sizing: border-box;
  124. /* background-color: #ffffff; */
  125. position: absolute;
  126. top: 0;
  127. }
  128. .center_main {
  129. width: 100%;
  130. height: 55%;
  131. position: absolute;
  132. top: 13.5%;
  133. }
  134. .center_main_item {
  135. width: 405px;
  136. height: 405px;
  137. background-color: azure;
  138. position: absolute;
  139. background: url("../images/humanResources/icon2.png");
  140. font-size: 30px;
  141. font-weight: 500;
  142. text-align: center;
  143. line-height: 500px;
  144. animation: remove 2s steps(60) infinite;
  145. }
  146. .left_top {
  147. width: 100%;
  148. height: calc(65% - 15px);
  149. background-color: var(--bgc);
  150. }
  151. .left_btm {
  152. width: 100%;
  153. height: calc(35% - 15px);
  154. background-color: var(--bgc);
  155. }
  156. .title {
  157. width: 70%;
  158. height: 75px;
  159. background: url("../images/humanResources/title.png") no-repeat;
  160. background-size: 100% 100%;
  161. font-size: 36px;
  162. font-family: Source Han Sans CN;
  163. font-weight: bolder;
  164. color: #FFFFFF;
  165. text-indent: 8%;
  166. line-height: 65px;
  167. }
  168. .main {
  169. width: 100%;
  170. height: calc(100% - 75px);
  171. padding: 40px 40px 10px;
  172. box-sizing: border-box;
  173. }
  174. .main_item {
  175. width: calc(50% - 10px);
  176. height: 100%;
  177. background-color: #69c1ff09;
  178. }
  179. .right_top {
  180. width: 100%;
  181. height: calc(32% - 15px);
  182. background-color: var(--bgc);
  183. }
  184. .right_main {
  185. width: 100%;
  186. height: calc(28% - 15px);
  187. background-color: var(--bgc);
  188. }
  189. .right_btm {
  190. width: 100%;
  191. height: calc(40% - 15px);
  192. background-color: var(--bgc);
  193. }
  194. .main_item_top {
  195. width: 100%;
  196. height: calc(40% - 15px);
  197. background-color: var(--bgc);
  198. }
  199. .main_item_btm {
  200. width: 100%;
  201. height: calc(60% - 15px);
  202. background-color: var(--bgc);
  203. }
  204. .echarts_dom {
  205. width: 100%;
  206. height: 100%;
  207. }
  208. .item_content_6,
  209. .item_content_6_false {
  210. width: 100%;
  211. height: calc(60% - 10px);
  212. }
  213. .item_content_4 {
  214. width: 100%;
  215. height: calc(40% - 10px);
  216. }
  217. .header-item {
  218. font-size: 20px;
  219. color: #69C0FF;
  220. }
  221. .row-item {
  222. font-size: 23px !important;
  223. }
  224. .content_4_top {
  225. width: 100%;
  226. height: 90px;
  227. align-items: flex-end;
  228. }
  229. .content_4_title {
  230. width: 100%;
  231. height: 42px;
  232. }
  233. .content_4_time {
  234. width: 45%;
  235. height: 32px;
  236. }
  237. .btn_on {
  238. width: 186px;
  239. height: 100%;
  240. background: url("../images/humanResources/btn_on.png") no-repeat;
  241. background-size: 100% 100%;
  242. margin: 0 20px;
  243. font-size: 18px;
  244. font-family: Source Han Sans CN;
  245. font-weight: 500;
  246. color: #ECE278;
  247. text-align: center;
  248. line-height: 42px;
  249. }
  250. .btn_off {
  251. width: 186px;
  252. height: 100%;
  253. background: url("../images/humanResources/btn_off.png") no-repeat;
  254. background-size: 100% 100%;
  255. margin: 0 20px;
  256. font-size: 18px;
  257. font-family: Source Han Sans CN;
  258. font-weight: 500;
  259. color: #47C0FF;
  260. text-align: center;
  261. line-height: 42px;
  262. }
  263. .time {
  264. width: 49%;
  265. height: 100%;
  266. background: rgba(75, 172, 255, 0.2);
  267. }
  268. .img_class {
  269. width: 22px;
  270. /* height: 16px; */
  271. margin-left: 10px;
  272. }
  273. img {
  274. width: 100%;
  275. height: 100%;
  276. }
  277. .content_4_btm {
  278. width: 100%;
  279. height: calc(100% - 90px);
  280. margin-top: 5px;
  281. }
  282. .yellow {
  283. color: yellow;
  284. }
  285. .red {
  286. color: red;
  287. }
  288. .green {
  289. color: green;
  290. }
  291. .item_content_6 .rows .row-item:nth-child(2) {
  292. background-color: brown !important;
  293. }
  294. @keyframes remove {
  295. 0% {
  296. transform: translateY(0);
  297. }
  298. 25% {
  299. transform: translateY(-5%);
  300. }
  301. 50% {
  302. transform: translateY(0);
  303. }
  304. 75% {
  305. transform: translateY(5%);
  306. }
  307. 100% {
  308. transform: translateY(0);
  309. }
  310. }
  311. .warp {
  312. width: 100%;
  313. height: 100%;
  314. overflow: hidden;
  315. }
  316. .item {
  317. width: 100%;
  318. height: 100%;
  319. padding: 10px 30px;
  320. box-sizing: border-box;
  321. }
  322. li {
  323. width: 100%;
  324. display: flex;
  325. flex-direction: column;
  326. justify-content: flex-start;
  327. align-items: flex-start;
  328. font-size: 27px;
  329. }
  330. .list_img {
  331. width: 40px;
  332. height: 40px;
  333. border-radius: 50%;
  334. margin-top: 15px;
  335. }
  336. .main_item_title {
  337. width: 270px;
  338. height: 70px;
  339. background: url("../images/humanResources/btn_on.png") no-repeat;
  340. background-size: 100% 100%;
  341. font-size: 24px;
  342. font-family: Source Han Sans CN;
  343. font-weight: 500;
  344. color: #FFFFFF;
  345. text-align: center;
  346. line-height: 70px;
  347. margin-top: -20px;
  348. }
  349. .main_item_main {
  350. width: 100%;
  351. height: calc(100% - 70px);
  352. }
  353. .center_top_item {
  354. width: 38%;
  355. height: 210px;
  356. }
  357. .center_top_image {
  358. width: 350px;
  359. height: 210px;
  360. margin-right: 30px;
  361. }
  362. .center_top_image img {
  363. width: 100% !important;
  364. height: 100% !important;
  365. }
  366. .center_top_info {
  367. justify-content: flex-start;
  368. align-items: flex-start;
  369. }
  370. .num {
  371. font-size: 72px;
  372. font-family: Helvetica Neue Extra Black Cond;
  373. font-weight: bolder;
  374. color: #5BCBFF;
  375. }
  376. .num span {
  377. font-size: 30px;
  378. font-family: Source Han Sans CN;
  379. font-weight: bold;
  380. }
  381. .name {
  382. font-size: 36px;
  383. font-family: Source Han Sans CN;
  384. font-weight: bolder;
  385. color: #FFFFFF;
  386. }